用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bobmatnyc/claude-mpm --skill writing-plans命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
MCP (Model Context Protocol) - Build AI-native servers with tools, resources, and prompts. TypeScript/Python SDKs for Claude Desktop integration.
Model Context Protocol (MCP) server build and evaluation guide, including local conventions for tool surfaces, config, and testing
Control monitoring server and dashboard
基于 SOC 职业分类
正在显示 SKILL.md
| name | Writing Plans |
| description | Create detailed implementation plans with bite-sized tasks for engineers with zero codebase context |
| when_to_use | when design is complete and you need detailed implementation tasks for engineers with zero codebase context |
| version | 2.2.0 |
| progressive_disclosure | {"level":1,"references":[{"path":"references/plan-structure-templates.md","title":"Plan Structure & Templates","description":"Standard headers, task templates, and structure examples"},{"path":"references/best-practices.md","title":"Best Practices & Guidelines","description":"Writing for zero-context engineers, code completeness, test design patterns"}]} |
| effort | medium |
Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD. Frequent commits.
Assume they are a skilled developer, but know almost nothing about our toolset or problem domain. Assume they don't know good test design very well.
Announce at start: "I'm using the Writing Plans skill to create the implementation plan."
Context: This should be run in a dedicated worktree (created by brainstorming skill).
Save plans to: docs/plans/YYYY-MM-DD-<feature-name>.md
Plan header template: See Plan Structure & Templates
Task template: See Plan Structure & Templates
Granularity guide: Each step = 2-5 minutes. See Best Practices
src/models/user.py"pytest tests/file.py -v" with what you'll see@skills/category/skill-nameFor detailed guidance: Best Practices & Guidelines
After saving the plan, offer execution choice:
"Plan complete and saved to docs/plans/<filename>.md. Two execution options:
1. Subagent-Driven (this session) - I dispatch fresh subagent per task, review between tasks, fast iteration
2. Parallel Session (separate) - Open new session with executing-plans, batch execution with checkpoints
Which approach?"
If Subagent-Driven chosen:
If Parallel Session chosen:
Need examples? See Plan Structure & Templates for complete task examples.
Need patterns? See Best Practices for error handling, logging, test design, and more.