用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bj112233/governor-edr --skill lessons-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Update docs/ARCHITECTURE.md (and conceptual_repo/ARCHITECTURE.md if it references the same facts) after a significant commit, then commit atomically as docs(arch)
Create a git commit following the project's conventional-commit format, then auto-trigger the arch-update skill for the separate atomic docs(arch) commit when the change is significant. Enforces AGENTS.md §4 (atomic docs commit, never bundled into code).
Capture a new lesson in tasks/lessons.md after a user correction or a mistake discovered, following the established entry format
基于 SOC 职业分类
正在显示 SKILL.md
| name | lessons-review |
| description | Read tasks/lessons.md and surface lessons relevant to the current task or recent changes |
| argument-hint | [optional topic/keyword] |
| allowed-tools | ["read","grep","glob"] |
| triggers | ["user","model"] |
Review the project's accumulated lessons and surface the ones relevant to the current work.
Read the lessons file: Read tasks/lessons.md in full. If it does not exist, report that no lessons have been captured yet and stop.
Identify relevance: If an argument ($ARGUMENTS) is given, filter lessons whose title, mistake, root cause, or rule mentions the topic/keyword. If no argument, consider the current git diff (git diff --staged or git diff) to infer what the user is working on, then match lessons to the touched files/concepts.
Surface relevant lessons: For each relevant lesson, output a compact block:
### [date] Title
- Rule: <the rule line>
- Applies because: <one sentence why it's relevant to the current change>
If nothing relevant: State "No lessons in tasks/lessons.md match the current work" and list the lesson titles that exist (date + title only) so the user can see what's available.
tasks/lessons.md — this skill is read-only review.