extensions/role-persona/skills/memory-recall/SKILL.md
Load prior knowledge from role memory before starting any task.
npx skillsauth add dwsy/agent memory-recallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You have access to a role-based persistent memory system with 4 layers:
L2 Structured → memory/consolidated.md (deduplicated, priority-ranked)
PENDING → memory/pending.md (auto-extracted, awaiting verification)
L1 Raw → memory/daily/YYYY-MM-DD.md (session logs)
Knowledge → docs/knowledge/ (reusable patterns, architecture decisions)
| Tool | Purpose |
|------|---------|
| memory({ action: "search", query: "<text>" }) | Search all layers. Auto-reinforces high-score matches (≥0.5). Auto-promotes relevant pending memories. |
| memory({ action: "list" }) | List all consolidated memories, detect issues |
| role_read | Read role file (default: memory/consolidated.md) |
| role_search | Full-text search across role files |
| knowledge({ action: "search", query: "<text>" }) | Search knowledge base |
memory({ action: "search", query: "<user topic or key concept>" })
The search automatically:
used count +1If search returns few results:
memory({ action: "list" })
Focus on High Priority [3x]+ — these are battle-tested.
role_search({ query: "<concept>" }) → find related role filesrole_read({ path: "core/constraints.md" }) → read full fileFor technical tasks:
knowledge({ action: "search", query: "<topic>" })
Summarize findings, then proceed.
# Learnings (High Priority) → used ≥ 3
- [6x] 声明完成前验证铁律
# Learnings (Normal) → used 1-2
- [2x] 软删除优先
# Learnings (New) → used = 0
- [0x] 标签系统闭环是快速win
# Preferences: Communication | Code | Tools | Workflow | General
- 偏好中文沟通
Auto-extracted memories land in memory/pending.md:
[○] pending — awaiting verification[✓] promoted — moved to consolidated[✗] discarded — 7 days without useSearch auto-promotes pending entries with score ≥0.5. Usage is verification.
Each learning has LLM-auto-extracted tags. Search uses them:
memory({ action: "search", query: "..." })[3x]+ are most valuable — read firsttesting
Best practices for writing and maintaining high-quality role memories.
documentation
工作文档枢纽,强制执行 SSOT(Single Source of Truth)原则,管理 `docs/` 目录下的架构决策、设计文档、Issues(任务规划)、PRs(变更记录)。支持 GitHub 协作开发模式。
tools
Allows to interact with web pages by performing actions such as clicking buttons, filling out forms, and navigating links. It works by remote controlling Google Chrome or Chromium browsers using the Chrome DevTools Protocol (CDP). When Claude needs to browse the web, it can use this skill to do so.
development
Vercel 设计指南 - 构建高质量 Web 应用的最佳实践,包含现代 UI/UX 原则、性能优化和无障碍标准。