recall
2
总安装量
1
周安装量
#72503
全站排名
安装命令
npx skills add https://github.com/ag-grid/ag-charts --skill recall
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Recall
Usage â /recall
Load branch-scoped context from .context/ and optionally browse project-scoped memory in .rulesync/.
STEP 1: Load Branch Memory
Determine Context File Path and Load Content
Run the co-located script to resolve paths and load any existing context. Use the skill base directory from the header above:
bash "<skill-base-directory>/context-path.sh" --list-rules
Parse the structured output:
BRANCH=â current branch nameSLUG=â filename slugCONTEXT_FILE=â full path to context fileSTATUS=found|not_foundâ whether context exists- Content after
---CONTENT---â existing context file contents (if found) - Content after
---RULES---â list of project rule files (if present)
Present Branch Context
If found, present its contents:
## Branch Context Loaded: {branch}
**Intent**: {summary of intent section}
**Key Patterns**: {count} patterns documented
**Known Gaps**: {count} gaps tracked
**References**: {count} references available
---
{Full context file contents}
If not found, inform the user:
No saved context found for branch
{branch}.Run
/rememberand choose Branch to create context for this branch.
STEP 2: Project Memory Summary (optional)
After presenting branch context, offer to show project memory:
Project rules and learnings in
.rulesync/rules/load automatically based on file-pattern globs. Want to browse the project memory files?
If the user says yes:
- Present the rules listing from the
---RULES---section of the script output - User can request to read specific memory files for details
- This is informational â project rules auto-load during normal work via globs
Notes
- Context files are stored in the main repo root, shared across all worktrees
- Context persists even when worktrees are deleted
- Branch context files are gitignored â this is personal/local context, not shared
- Project memory (
.rulesync/rules/) is committed and shared with the team