remember
Store a learning, pattern, or decision in the memory system for future recall
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Store a learning, pattern, or decision in the memory system for future recall
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Maestro spec-driven development for Claude Code. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Maestro spec-driven development for Gemini CLI. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Maestro spec-driven development for Amp CLI. Load this skill when invoking Maestro commands so workflows stay aligned with LeIndex and the Rust TUI.
Show users how Maestro works - the opinionated setup with hooks, memory, and coordination
Full 5-layer analysis of a specific function for debugging or deep understanding
Get a token-efficient overview of any project using the TLDR stack
| name | remember |
| description | Store a learning, pattern, or decision in the memory system for future recall |
| user-invocable | true |
Store a learning, pattern, or decision in the memory system for future recall.
/remember <what you learned>
Or with explicit type:
/remember --type WORKING_SOLUTION <what you learned>
/remember TypeScript hooks require npm install before they work
/remember --type ARCHITECTURAL_DECISION Session affinity uses terminal PID
/remember --type FAILED_APPROACH Don't use subshell for store_learning command
| Type | Use For |
|---|---|
WORKING_SOLUTION | Fixes, solutions that worked (default) |
ARCHITECTURAL_DECISION | Design choices, system structure |
CODEBASE_PATTERN | Patterns discovered in code |
FAILED_APPROACH | What didn't work |
ERROR_FIX | Specific error resolutions |
When this skill is invoked:
Determine the memory stack root:
MEMORY_DIR="${MAESTRO_MEMORY_DIR:-$CLAUDE_PROJECT_DIR/opc}"
Check that the store script exists before running:
if [ ! -f "$MEMORY_DIR/scripts/store_learning.py" ]; then
echo "⚠️ Remember unavailable: memory stack not found at $MEMORY_DIR"
echo " Set MAESTRO_MEMORY_DIR to your OPC installation path."
exit 0
fi
cd "$MEMORY_DIR" && PYTHONPATH=. uv run python scripts/store_learning.py \
--session-id "manual-$(date +%Y%m%d-%H%M)" \
--type <TYPE or WORKING_SOLUTION> \
--content "<ARGS>" \
--context "manual entry via /remember" \
--confidence medium
If no --type specified, infer from content: