一键导入
memory-system
Read and write task memories in docs/memories/. Use when planning, starting work, after searches or user feedback, and when completing tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read and write task memories in docs/memories/. Use when planning, starting work, after searches or user feedback, and when completing tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | memory-system |
| description | Read and write task memories in docs/memories/. Use when planning, starting work, after searches or user feedback, and when completing tasks. |
Project task memories live in docs/memories/ as Markdown files. This is separate from any host-level memory you may use; follow this skill when this repo requires task memory.
in_progress.docs/agents/implementation_plan.md per project rules.Survey all memories cheaply (everything through Related Memories, before Task (TCREI) or Status):
for f in docs/memories/*.md; do
echo "=== $f ==="
awk '/^## Task \(TCREI\)|^## Status/{exit} {print}' "$f"
echo
done
Pick the most relevant paths from context (current sprint task, links in Related Memories, descriptions). Read the full file only for those.
YYYY-MM-DD-<short-task-slug>.md (kebab-case slug).in_progress, timestamps).completed / cancelled), Lessons / Learnings, final timestamps.Whether a memory accompanies source changes, and whether its reasoning fields
(Context, Evaluation, Key Challenges & Analysis) are filled, is enforced
by the checker, not by prose: scripts/check-task-compliance.sh (checks C1 and C3)
runs in the git pre-commit hook and in CI. This skill defines how to write a good
memory; the check verifies the artifact. See docs/agents/enforcement_matrix.md.