Memory Data

Memory Data from gabrielmoreira/agent-skills-mirror.

by @gabrielmoreira 23 skills 2 authors

Skills in this plugin

23
  1. Test Before Ship · aiming-lab
    Use this skill when implementing a new feature or fixing a bug. Write or update tests before marking the task done. Never consider code complete without verifying it works through automated tests.
    2 installs
  2. Avoid Scope Creep · aiming-lab
    Common mistake — doing unrequested work (refactoring, adding extra features, cleaning up style) when the user asked for a specific, targeted change. Only change what was explicitly asked.
    2 installs
  3. Source Evaluation · aiming-lab
    Use this skill when presenting information from external sources, citing research, or answering factual questions. Assess source credibility and recency before relying on it.
    2 installs
  4. Agent Task Handoff · gabrielmoreira
    Use this skill when delegating a subtask to a sub-agent, spawning a parallel worker, or handing off work across sessions. Write a self-contained task description so the receiving agent needs no prior context.
    17 repo stars
  5. Secrets Management · gabrielmoreira
    Use this skill when handling API keys, passwords, tokens, private keys, or any sensitive credential. Never hardcode secrets in source code — apply this whenever the word "key", "token", "password", or "secret" appears in the task.
    17 repo stars
  6. SQL Best Practices · gabrielmoreira
    Use this skill when writing SQL queries — selects, joins, aggregations, window functions, or schema modifications. Apply whenever SQL is needed to ensure correctness, safety, and performance.
    17 repo stars
  7. Codebase Navigation · gabrielmoreira
    Use this skill when exploring an unfamiliar codebase, tracing code paths, or answering questions about how the system works. Read before writing, and build a mental model of the architecture before making changes.
    17 repo stars
  8. Debug Systematically · gabrielmoreira
    Use this skill when diagnosing a bug, unexpected behavior, test failure, or any situation where code does not behave as expected. Follow a structured debugging process instead of randomly changing code.
    17 repo stars
  9. Data Validation First · gabrielmoreira
    Use this skill before any data analysis, transformation, or modeling. Always inspect and validate the data before drawing conclusions or writing transformations.
    17 repo stars
  10. Tool Selection Strategy · gabrielmoreira
    Use this skill when deciding which tools to call in an agentic workflow. Always choose the minimal, most direct tool for each step and avoid redundant or speculative tool calls.
    17 repo stars
  11. Idempotent Script Design · gabrielmoreira
    Use this skill when writing scripts, cron jobs, data pipelines, or any automated process that may be run multiple times. Design every operation to be safely re-runnable without side effects.
    17 repo stars
  12. Context Window Management · gabrielmoreira
    Use this skill in long conversations or multi-turn agentic sessions where context may be lost or the conversation is approaching token limits. Summarize, prioritize, and compact context proactively before it becomes a problem.
    17 repo stars
  13. Technical Writing Clarity · gabrielmoreira
    Use this skill when writing documentation, READMEs, technical specs, runbooks, or any text that explains a system or process to other engineers. Apply before writing any developer-facing document.
    17 repo stars
  14. Professional Email Drafting · gabrielmoreira
    Use this skill when drafting emails, Slack messages, announcements, or any external/internal communication. Apply professional structure and appropriate tone before writing any message.
    17 repo stars
  15. Audience Aware Communication · gabrielmoreira
    Use this skill when writing any explanation, documentation, or response that will be read by someone else. Match vocabulary, depth, and format to the audience's expertise level before writing.
    17 repo stars
  16. Structured Research Workflow · gabrielmoreira
    Use this skill when conducting research on a topic from scratch — literature review, competitive analysis, technical due diligence, or fact-finding. Apply before starting any open-ended research task.
    17 repo stars
  17. Async Communication Etiquette · gabrielmoreira
    Use this skill when writing messages in async channels (Slack, GitHub issues, email threads) where the reader may not have context and cannot ask follow-up questions immediately.
    17 repo stars
  18. Avoid Hallucinating Specifics · gabrielmoreira
    Common mistake — stating specific facts (API endpoints, library versions, config options, function signatures) with false confidence when uncertain. Always flag uncertainty rather than guessing specifics.
    17 repo stars
  19. Auth And Authorization Patterns · gabrielmoreira
    Use this skill when implementing authentication (login, token issuance) or authorization (access control, permissions). Apply whenever the task involves login flows, JWT, OAuth2, session management, or RBAC.
    17 repo stars
  20. Plan Before Multi Step Execution · gabrielmoreira
    Use this skill before executing a sequence of 3 or more steps, especially when steps are irreversible or depend on each other. Write out the plan and verify it before starting execution.
    17 repo stars
  21. Input Validation And Sanitization · gabrielmoreira
    Use this skill when implementing any endpoint, form handler, CLI tool, or function that accepts external input. Validate and sanitize all untrusted data before processing — never assume input is safe.
    17 repo stars
  22. Verify Before Irreversible Action · gabrielmoreira
    Use this skill before taking any action that is hard to reverse — deleting files, overwriting data, sending messages, pushing to remote, modifying production systems. Always pause, state what you are about to do, and confirm before executing.
    17 repo stars
  23. Structured Logging And Observability · gabrielmoreira
    Use this skill when building production services, pipelines, or automation that needs to be debugged, monitored, or audited. Add structured logs, metrics, and health checks before shipping any service.
    17 repo stars