Skip to main content
ClaudeWave
Slash Command1.3k repo starsupdated 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.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/codeaholicguy/ai-devkit/HEAD/commands/remember.md -o ~/.claude/commands/remember.md
Then start a new Claude Code session; the slash command loads automatically.

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.