Skip to main content
ClaudeWave
Slash Command1.3k estrellas del repoactualizado today

remember

The `/remember` command stores reusable development guidance in a knowledge memory service within the AI DevKit. Use it to capture and organize project-specific knowledge such as code patterns, implementation guidelines, or testing standards that can be retrieved and referenced across development workflows. The command validates content quality, searches for duplicates before storing, and supports tagging and scope specification for organized knowledge management.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/codeaholicguy/ai-devkit/HEAD/commands/remember.md -o ~/.claude/commands/remember.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

remember.md

Help me store it in the knowledge memory service.

1. **Capture Knowledge** — If not already provided, ask for: a short explicit title (5-12 words), detailed content (markdown, examples encouraged), optional tags (keywords like "api", "testing"), and optional scope (`global`, `project:<name>`, `repo:<name>`). If vague, ask follow-ups to make it specific and actionable.
2. **Search Before Store** — Check for existing similar entries first with `npx ai-devkit@latest memory search --query "<topic>"` to avoid duplicates.
3. **Validate Quality** — Ensure it is specific and reusable (not generic advice). Avoid storing secrets or sensitive data.
4. **Store** — Call `memory_storeKnowledge` with title, content, tags, scope. If MCP tools are unavailable, use `npx ai-devkit@latest memory store` instead.
5. **Confirm** — Summarize what was saved and offer to retrieve related memory entries when helpful.
6. **Next Command Guidance** — Continue with the current lifecycle phase command (`/execute-plan`, `/check-implementation`, `/writing-test`, etc.) as needed.