| name | team-shinchan:bigproject |
| description | Use when you have a large-scale, multi-phase project requiring orchestrated execution. |
| user-invocable | false |
EXECUTE IMMEDIATELY
Output immediately before executing:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🌸 [Himawari] Large-scale project mode engaged! 🚀
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
How this works (read once)
A big project is decomposed into phases, and each phase runs the full start
workflow — Stage 1 Requirements (full Misae interview) → Stage 2 Planning (Nene) →
Stage 3 micro-execute → Stage 4 Completion (RETROSPECTIVE + final AK).
This skill runs on the main thread and drives the phase loop itself. That is required:
each phase's Stage-1 interview uses AskUserQuestion, which only the main thread can call —
a sub-agent cannot. So Himawari is used only to decompose (it returns a phase plan); the
main thread then runs each phase. Expect one full requirements interview per phase — this
is intentional and carries real token/latency cost on large projects.
Layout (flat siblings — parent dir holds only PROJECT.yaml, which the
*/WORKFLOW_STATE.yaml globs ignore):
.shinchan-docs/{PROJECT_ID}/PROJECT.yaml
.shinchan-docs/{PROJECT_ID}-phase-1/WORKFLOW_STATE.yaml (+ REQUESTS/PROGRESS/RETROSPECTIVE…)
.shinchan-docs/{PROJECT_ID}-phase-2/...
Step 1: Validate Input
If args is empty or only whitespace:
Ask user: "What large-scale project would you like to tackle?"
STOP and wait for user response
If args length > 2000 characters:
Truncate to 2000 characters
Warn user: "Request was truncated to 2000 characters"