From kraftwork-intel
Store a learning about the codebase — architecture decisions, patterns, debugging insights, conventions. Use when you discover something worth remembering across sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraftwork-intel:memory-memorizeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Save a codebase learning to the knowledge store for retrieval in future sessions.
Save a codebase learning to the knowledge store for retrieval in future sessions.
bun installed~/.claude/kraftwork-intel/ initializedDetermine:
architecture, pattern, debugging, or conventionapi, frontend)bun run ~/.claude/kraftwork-intel/src/cli.ts store \
--category "<category>" \
--project "<project>" \
--content "<the learning>"
If superseding a previous learning:
bun run ~/.claude/kraftwork-intel/src/cli.ts store \
--category "<category>" \
--project "<project>" \
--supersedes "<previous-learning-id>" \
--content "<the updated learning>"
The CLI outputs the new learning's ID. Confirm to the user what was stored.
npx claudepluginhub filipeestacio/kraftwork --plugin kraftwork-intelSaves key project knowledge explicitly to MEMORY.md via /si:remember for reliable recall. Checks duplicates, warns on size, suggests CLAUDE.md promotion.
Extracts reusable strategic knowledge from session history (architecture, patterns, ops) and updates local CLAUDE.md. Triggers on 'learn', 'save knowledge', or session ends.
Uses the AI DevKit memory CLI as a durable knowledge layer for storing and retrieving reusable project context, conventions, and fixes.