RISE PDE session with multi-agent post-wake execution. Decompose → STC → SLEEP 1500s (enforced bash) → Wake → SPAWN claude-opus-4.6 army → Execute → MINO close. Supports multi-part cascading missions.
Protocol: Assess → Decompose → STC → Commit → SLEEP 1500s → Wake → SPAWN OPUS ARMY → Execute → MINO Close
EVERY SINGLE SUBAGENT you spawn MUST use model: "claude-opus-4.6".
This means:
model: "claude-opus-4.6"model: "claude-opus-4.6"model: "claude-opus-4.6"model: "claude-opus-4.6"model: "claude-opus-4.6"model: "claude-opus-4.6"DO NOT use your own model for subagents. DO NOT use any other model. DO NOT omit the model parameter.
If you spawn an agent without model: "claude-opus-4.6", you have violated this skill.
These rules exist because real sessions failed when they were violated.
| # | Rule | Why |
|---|---|---|
| 1 | Sleep is bash sleep 1500 — you MUST run the actual bash command sleep 1500. Do NOT just tell the human to wait. Do NOT skip it. Do NOT proceed without running it. | Agent skipped sleep, wasted tokens, broke trust |
| 2 | All subagents: model: "claude-opus-4.6" — EVERY SINGLE ONE. See the rule above. | User had to repeat this instruction every single session |
| 3 | Workdir is .pde/<SESSION_UUID>/ — all scratch, deep-search results, summaries go there | Scattered files pollute context |
| 4 | Never git add . — only git add the specific files you or your agents created/modified | Critical safety rule |
| 5 | Create STC Chart from PDE using import_pde_decomposition — not just decompose, also chart it | STC makes tension visible for human review |
| 6 | Session summary at close — write .pde/<SESSION_UUID>/session-summary.md | Gist export handled externally via --share-gist |
Read these references before proceeding:
references/rise-framework.md — RISE methodologyreferences/prompt-decomposition.md — PDE as EAST practicereferences/creative-orientation.md — creative vs reactive distinctionreferences/structural-tension.md — tension charting methodologyreferences/ceremonial-technology.md — when session involves ceremony/sacred workFor sub-agent prompt templates: read agent-templates.md.
For orchestration patterns (incl. cascading parts): read orchestration-patterns.md.
__.md, from the user's message, or generate onemkdir -p .pde/<SESSION_UUID>/orchestration-patterns.md → Cascading Parts Patternpde_decompose(prompt) with the full user inputpde_parse_response(llm_response, original_prompt, workdir) — stores to .pde/For multi-part missions: decompose the ENTIRE input once, then identify part boundaries in the action stack.
import_pde_decomposition(pde_id, workdir) — creates .coaia/pde/<session>.jsonlgit add only the .pde/<UUID>.md and .pde/<UUID>.json and .coaia/pde/<session>.jsonl"[pde] Decompose: <summary> — STC chart_<id>"THEN YOU MUST RUN THIS EXACT COMMAND USING THE BASH TOOL:
sleep 1500
THIS IS NOT OPTIONAL. THIS IS NOT A SUGGESTION. YOU MUST RUN sleep 1500 IN BASH RIGHT NOW.
Do NOT:
Do:
sleep 1500 and timeout 600000The human + pde-review-companion use these 25 minutes to review and edit .pde/*.md files.
If you skip this, you waste the human's tokens and break the review window.
After waking:
git diff .pde/ — see what the human changedgit diff issues/ — check plan edits.pde/*.md files (they are now the authoritative intent)Reminder: ALL agents you spawn MUST use model: "claude-opus-4.6" in the Agent tool call.
For EACH PDE facet, spawn a sub-agent (model: "claude-opus-4.6") that does deep-search.
Results land in .pde/<SESSION_UUID>/deep-search/.
Use templates from agent-templates.md → Agent S1, S2, S3, S4.
Scale to facet complexity:
All SOUTH agents write to .pde/<SESSION_UUID>/deep-search/ only — never source files.
After ALL deep-search agents return (batch — no anchoring):
.pde/<SESSION_UUID>/deep-search/ findings.pde/rispecs-survey.md if it existsReminder: ALL agents you spawn MUST use model: "claude-opus-4.6" in the Agent tool call.
Spawn N executor agents (each with model: "claude-opus-4.6"), each handling a work stream.
Use templates from agent-templates.md → Agent N1, N2, N3, N4, N5.
Spawn 1 validation agent (model: "claude-opus-4.6") alongside NORTH executors.
Use template from agent-templates.md → Agent W1.
git add only files actually created or modified"[pde] Multi-agent execution: <summary>"After committing Part N:
"[pde] Part N: <summary>"orchestration-patterns.md → Cascading Parts PatternPresent:
git diff --statHuman adjusts or approves.
After human approval:
git diff --stat.pde/<SESSION_UUID>/session-summary.md--share-gist and receives the gist_url when the session exits. That gist_url then gets routed to mino-mcp by the orchestrator, not by this session.You do NOT need to export a gist. The --share-gist flag on copilot-cli handles that automatically.
Unchanged from v1 — see agent-templates.md for rispecs workflow.
| File | When |
|---|---|
/a/src/llms/llms-rise-framework.txt | Always |
/a/src/llms/docs/prompt-decomposition.md | Always |
/a/src/llms/docs/creative-orientation.md | When authoring rispecs |
/a/src/llms/docs/structural-tension.md | When framing current→desired states |
/a/src/llms/llms-kinship-hub-system.md | When PDE involves cross-repo kinship |
Target repo rispecs/**/*.spec.md | When creating new rispecs |
Target repo KINSHIP.md | When mapping relationships |
bash sleep 1500 — actual command, non-negotiable, 25 minutes for human reviewmodel: "claude-opus-4.6" — stated here, enforced everywhere.pde/<SESSION_UUID>/ — all scratch, deep-search, summaries go heregit add . or git add -A — only files you or your agents touched.pde/<SESSION_UUID>/deep-search/ during SOUTH, never source filesmcp__mcp-pde__<tool> for PDE, mcp__coaia-pde__<tool> for STC--share-gist at launch, not inside the session