Agent Skills
› MeisnerDan/mission-control
› plan-feature
plan-feature
GitHub将功能需求拆解为5-15个实施任务,结合艾森豪威尔矩阵评估优先级,创建里程碑并生成待办事项。需读取项目上下文与目标文件,明确分配角色及每日行动,最后更新AI上下文以支持后续执行。
Trigger Scenarios
用户要求规划新功能
用户输入包含feature或实现计划相关指令
Install
npx skills add MeisnerDan/mission-control --skill plan-feature -g -y
SKILL.md
Frontmatter
{
"name": "plan-feature",
"description": "Break a feature into implementation tasks with milestone and Eisenhower classification",
"disable-model-invocation": true
}
Plan the following feature: $ARGUMENTS
- Read
mission-control/data/ai-context.mdfor a quick snapshot of current state - Read the relevant project's CLAUDE.md and codebase structure
- Read
mission-control/data/goals.jsonto understand which goal this supports - Break the feature into implementation tasks (5-15 tasks)
- For each task, determine importance and urgency
- Create a new milestone in
goals.jsonlinked to the appropriate goal - Add all tasks to
tasks.jsonwith:- Proper importance/urgency classification
- kanban:
"not-started" - Link to the new milestone and project
- Appropriate
assignedToagent role - 2-4 daily actions per task
- Present the plan as a summary before saving
- After saving, run
pnpm gen:contextinmission-control/to update the AI context
Ask me clarifying questions before starting if the feature description is ambiguous.
Version History
- 2b8c402 Current 2026-07-05 15:42


