| name | Remember |
| description | Store a memory entry for future recall. Use this to persist important context, decisions, or findings. |
| version | 1.0.0 |
| category | memory |
| skillType | claude-skill |
| assignableRoles | ["developer","qa","tpm","designer","frontend-developer","backend-developer","fullstack-dev","qa-engineer","product-manager","architect","generalist","sales","support"] |
| triggers | ["remember","save memory","store context","note this"] |
| tags | ["memory","persistence","context"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":15000}} |
Remember
Store a memory entry for future recall. Use this to persist important context, decisions, architectural findings, or patterns you discover during work.
Parameters
| Flag | JSON Field | Required | Description |
|---|
--agent / -a | agentId | Yes | Your agent ID / session name |
--content / -c | content | Yes | Content to remember (or pipe via stdin) |
--content-file | — | No | Read content from a file path |
--category / -C | category | Yes | See category × scope matrix below |
--scope / -s | scope | Yes | Scope: agent or project |
--project / -p | projectPath | No | Project path (required for project scope) |
Valid category × scope matrix
| Category | scope=agent | scope=project | Notes |
|---|
fact | ✅ | — | Personal best-practice / "always do X". |
pattern | ✅ | ✅ | Reusable workflow or code pattern. |
gotcha | ✅ (F4 fix) | ✅ | Things to avoid; agent-scope = personal, project-scope = team-wide. |
preference |