用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dwsy/agent --skill memory-recall命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | memory-recall |
| description | Load prior knowledge from role memory before starting any task. |
| whenToUse | At the START of every new conversation or task, BEFORE doing any work. This skill loads prior knowledge from the role's persistent memory system. Without it, you have no memory of past sessions. Invoke proactively — do not wait for the user to ask. |
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:
[pending]; score ≥0.5 auto-promotes to learning)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 firstOperate Glimpse-APPs with progressive context — app list in system, domain detail via tools on demand.
Use when user asks to design, choose, explain, or implement UI transitions, motion patterns, easing/timing choices, state-change animations, shared-element effects, drill-down navigation, tab/filter/list/detail switching, or vague requests like "make this feel smoother", "more iOS", "more natural", or "animate this UI" that need concrete motion taxonomy and implementation guidance.
工作文档枢纽,强制执行 SSOT(Single Source of Truth)原则,管理 `docs/` 目录下的架构决策、设计文档、Issues(任务规划)、PRs(变更记录)。支持 GitHub 协作开发模式。