用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dlants/dotfiles --skill plan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plan |
| description | Guide for creating plans for tackling complex work. |
Before writing the plan, ground yourself in the project as it actually is rather than guessing about the shape of things.
When architecting your solution:
Write the plan to plans/YYYY-MM-DD-<planName>.md (using the current date).
# Objective and Context
[The user's request, captured verbatim.]
[The key types, interfaces, and entities involved, and how they relate.]
[The relevant files, each with a one-line description of its role.]
# Design
[A high-level description of the algorithm or system. The main components, how they interact, and the data flow between them. The reasoning behind the approach and any alternatives considered.]
Invariants:
- [Property that must hold, e.g. "the cache must never return stale entries after an invalidation"]
- [Assumption the current code depends on that we must preserve]
- [Edge case the design must handle]
# Stages
## [stage name that summarizes it in a few words like "backend" or "preparing type system"]
- Goal: [what works once this stage is done]
- Tests:
- When we do x, y should happen.
- Unit tests that just restate what the code is doing are insufficient.
- Consider where the complexity of this implementation lives.
- If the hard part is in how the existing code integrates with the surrounding context, then verify the integration directly.
## [stage name]
- Goal: [...]
- Tests: [...]