بنقرة واحدة
recall
Use when you need to retrieve a past decision, preference, or convention that was saved with /remember.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when you need to retrieve a past decision, preference, or convention that was saved with /remember.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when adding API integration to a module - creates types, contracts, adapter, and service layer.
Use when checking if code follows ARCHITECTURE.md patterns - runs automated conformance checks.
Use when code changes need review before merge - validates architecture, types, security, and test coverage.
Use when checking if code follows ARCHITECTURE.md patterns - runs automated conformance checks.
Use when code changes need review before merge - validates architecture, types, security, and test coverage.
Use when checking if code follows ARCHITECTURE.md patterns - runs automated conformance checks.
| name | recall |
| description | Use when you need to retrieve a past decision, preference, or convention that was saved with /remember. |
| user-invocable | true |
| argument-hint | [topic or 'all'] |
| allowed-tools | Read |
Recall decisions, preferences, and lessons from previous sessions.
Query: $ARGUMENTS
const memoryFile = '.claude/session-memory.json';
if (!exists(memoryFile)) {
return "No session memory found. Use /remember to save memories.";
}
const memory = JSON.parse(read(memoryFile));
Show full memory summary.
Search in:
══════════════════════════════════════════════
📝 PROJECT MEMORY
══════════════════════════════════════════════
Project: [name]
Last updated: [date]
──────────────────────────────────────────────
DECISIONS (N)
──────────────────────────────────────────────
• [Topic]: [Decision]
Reason: [Why]
Date: [When]
• [Topic]: [Decision]
Reason: [Why]
Date: [When]
──────────────────────────────────────────────
PREFERENCES
──────────────────────────────────────────────
Code Style:
• Quotes: [value]
• Indent: [value]
• Semicolons: [value]
Naming:
• Components: [convention]
• Files: [convention]
──────────────────────────────────────────────
PATTERNS
──────────────────────────────────────────────
✓ Preferred:
• [pattern]
• [pattern]
✗ Avoided:
• [pattern]
• [pattern]
──────────────────────────────────────────────
LESSONS LEARNED (N)
──────────────────────────────────────────────
• Issue: [what happened]
Solution: [how to fix]
Prevention: [rule]
══════════════════════════════════════════════
──── /recall: state management ────
Found 2 related memories:
📌 Decision: State Management
Use Zustand instead of Redux
Reason: Simpler API, less boilerplate
Decided: 2024-01-15
📌 Pattern (Avoid): Redux
We avoid Redux in this project
Related:
• See also: "React Query" decision
──── /recall: [topic] ────
No memories found for "[topic]".
Suggestions:
• Try /recall all to see all memories
• Use /remember to add new memories
/recall # Show recent memories
/recall all # Show all memories
/recall state management # Search for topic
/recall testing # Search for topic
/recall decisions # Show only decisions
/recall preferences # Show only preferences
/recall patterns # Show patterns
/recall lessons # Show lessons learned