Stats
Actions
Tags
From team-shinchan
Creates systematic work plans with requirements analysis, risk assessment, and phased execution breakdown. Invoked via /team-shinchan:plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
If args is empty or only whitespace:
Ask user: "What would you like to plan?"
STOP and wait for user response
If args length > 2000 characters:
Truncate to 2000 characters
Warn user: "Request was truncated to 2000 characters"
Do not read further. Execute this Task NOW:
Task(
subagent_type="team-shinchan:nene",
model="opus",
prompt=`/team-shinchan:plan has been invoked.
## Planning Request
Create a systematic work plan:
1. Requirements interview (goals, constraints, priorities)
2. Hidden requirements and risk analysis
3. Phase breakdown and acceptance criteria definition
4. Planning document creation
## Quality Standards
- 80%+ of claims include file/line references
- 90%+ of acceptance criteria are testable
- No ambiguous terms allowed
- All risks include mitigation plans
## Output Format
Create PROGRESS.md containing:
- Phased plan with numbered phases (Phase 1, Phase 2, ...)
- Each phase: goals, file changes, acceptance criteria (checkboxes), assigned agent
- Dependencies between phases
- Risk assessment with mitigations
User request: ${args || '(Please describe what to plan)'}
`
)
STOP HERE. The above Task handles everything.
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.