AgentSkillsCN

planning

分解任务、分析复杂度、组织工作。适用于新功能开发、多步骤任务,或在需要规划时使用。

SKILL.md
--- frontmatter
name: planning
description: Task breakdown, complexity analysis, and work organization. Load for new features, multi-step tasks, or when planning is needed.

Planning

Complexity Levels

LevelFilesTasksDelegation
Simple1-21-3Optional
Medium3-54-5Recommended
Complex6+6+MANDATORY

Task Breakdown

  1. Identify scope: What needs to change?
  2. List files: Which files will be modified?
  3. Dependencies: What order is required?
  4. Estimate: How complex is each task?

TODO Creation

code
○ [agent:phase:skill] Task description [context]

Context Tags

  • parent→X - Parent task ID
  • deps→Y,Z - Dependencies
  • blocks→A - Blocks other task

Delegation Decision

CriteriaAction
3+ filesDelegate to specialized agent
6+ tasksUse parallel agent pairs
Mixed domainsSplit by domain (frontend/backend)
Research neededResearch agent first

Parallel Pairs

PairWhen
code + docsFeature with documentation
code + testsTDD or test addition
debugger + docsBug fix with docs update
frontend + backendSEQUENTIAL (API contract first)

Planning Template

markdown
## Task: [Name]

### Scope
[What needs to change]

### Files
- [ ] file1.py - [change]
- [ ] file2.tsx - [change]

### Dependencies
1. [First] → 2. [Second] → 3. [Third]

### Delegation
- @code: Implementation tasks
- @documentation: Doc updates
- @debugger: If issues arise

### Complexity: [simple|medium|complex]