@hanzlaa/rcode 3.6.16 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1493) hide show
  1. package/AGENTS.md +4 -4
  2. package/CLAUDE.md +3 -3
  3. package/CONTRIBUTING.md +86 -68
  4. package/README.md +114 -93
  5. package/cli/agent.js +8 -8
  6. package/cli/config.js +13 -13
  7. package/cli/context.js +23 -23
  8. package/cli/dashboard.js +5 -5
  9. package/cli/digest.js +11 -11
  10. package/cli/doctor.js +39 -22
  11. package/cli/generate-command-skills.cjs +39 -37
  12. package/cli/github-sync.js +35 -28
  13. package/cli/index.js +23 -23
  14. package/cli/install.js +485 -262
  15. package/cli/lib/config.cjs +9 -9
  16. package/cli/lib/fsutil.cjs +3 -3
  17. package/cli/lib/github.cjs +11 -6
  18. package/cli/lib/manifest.cjs +50 -37
  19. package/cli/lib/memory-bank.cjs +23 -18
  20. package/cli/lib/model-profiles.cjs +7 -7
  21. package/cli/lib/prompts.cjs +2 -2
  22. package/cli/lib/schemas.cjs +10 -10
  23. package/cli/nuke.js +42 -42
  24. package/cli/postinstall.js +14 -14
  25. package/cli/set-mode.js +20 -10
  26. package/cli/set-profile.js +15 -5
  27. package/cli/show-model.js +1 -1
  28. package/cli/team.js +5 -5
  29. package/cli/tiers.js +10 -10
  30. package/cli/uninstall.js +229 -168
  31. package/cli/update.js +52 -52
  32. package/dist/rcode.js +343 -21639
  33. package/package.json +4 -6
  34. package/rcode/DOCS-AUDIT.md +14 -0
  35. package/rcode/agents/rcode-advisor-researcher.md +93 -0
  36. package/rcode/agents/rcode-ahmed.md +10 -0
  37. package/rcode/agents/rcode-assumptions-analyzer.md +49 -0
  38. package/rcode/agents/rcode-code-fixer.md +57 -0
  39. package/rcode/agents/rcode-code-reviewer.md +57 -0
  40. package/rcode/agents/rcode-codebase-mapper.md +78 -0
  41. package/rcode/agents/rcode-cross-platform-auditor.md +15 -0
  42. package/rcode/agents/rcode-debugger.md +37 -0
  43. package/rcode/agents/rcode-dep-auditor.md +15 -0
  44. package/rcode/agents/rcode-deviation-analyzer.md +75 -0
  45. package/rcode/agents/rcode-docs-auditor.md +31 -0
  46. package/rcode/agents/rcode-edge-case-hunter.md +95 -0
  47. package/rcode/agents/rcode-executor.md +27 -0
  48. package/rcode/agents/rcode-fatima.md +19 -0
  49. package/rcode/agents/rcode-haitham.md +99 -0
  50. package/rcode/agents/rcode-hanzla.md +18 -0
  51. package/rcode/agents/rcode-hussain-pm.md +19 -0
  52. package/rcode/agents/rcode-i18n-auditor.md +16 -0
  53. package/rcode/agents/rcode-integration-checker.md +61 -0
  54. package/rcode/agents/rcode-khalid.md +99 -0
  55. package/rcode/agents/rcode-layla.md +10 -0
  56. package/rcode/agents/rcode-mariam.md +18 -0
  57. package/rcode/agents/rcode-nasser.md +10 -0
  58. package/rcode/agents/rcode-noor.md +11 -0
  59. package/rcode/agents/rcode-nyquist-auditor.md +24 -0
  60. package/rcode/agents/rcode-observability-auditor.md +16 -0
  61. package/rcode/agents/rcode-omar.md +96 -0
  62. package/rcode/agents/rcode-phase-researcher.md +96 -0
  63. package/rcode/agents/rcode-planner.md +32 -0
  64. package/rcode/agents/rcode-profiler.md +98 -0
  65. package/rcode/agents/rcode-project-researcher.md +94 -0
  66. package/rcode/agents/rcode-remediation-planner.md +56 -0
  67. package/rcode/agents/rcode-research-synthesizer.md +45 -0
  68. package/rcode/agents/rcode-roadmapper.md +48 -0
  69. package/rcode/agents/rcode-sadiq.md +18 -0
  70. package/rcode/agents/rcode-security-adversary.md +98 -0
  71. package/rcode/agents/rcode-security-auditor.md +100 -0
  72. package/rcode/agents/rcode-sprint-checker.md +31 -0
  73. package/rcode/agents/rcode-ui-auditor.md +100 -0
  74. package/rcode/agents/rcode-ux-designer.md +57 -0
  75. package/rcode/agents/rcode-verifier.md +40 -0
  76. package/rcode/agents/rcode-waleed.md +20 -0
  77. package/rcode/agents/rcode-yousef.md +97 -0
  78. package/rcode/agents/rcode-zahra.md +63 -0
  79. package/rcode/agents/rcode-zayd.md +79 -0
  80. package/rcode/agents/rules/codebase-mapper/detailed-guide.md +615 -0
  81. package/rcode/agents/rules/debugger/checkpoint-recovery.md +272 -0
  82. package/rcode/agents/rules/debugger/debug-session-state.md +261 -0
  83. package/rcode/agents/rules/debugger/investigation-protocol.md +298 -0
  84. package/rcode/agents/rules/debugger/scientific-method.md +317 -0
  85. package/rcode/agents/rules/executor/authentication-gates.md +202 -0
  86. package/rcode/agents/rules/executor/deviation-rules.md +191 -0
  87. package/rcode/agents/rules/executor/execution-flow.md +116 -0
  88. package/rcode/agents/rules/executor/self-check.md +241 -0
  89. package/rcode/agents/rules/executor/stub-detection.md +267 -0
  90. package/rcode/agents/rules/executor/summary-creation.md +76 -0
  91. package/rcode/agents/rules/executor/task-commit-protocol.md +309 -0
  92. package/rcode/agents/rules/executor/tdd-flow.md +294 -0
  93. package/rcode/agents/rules/phase-researcher/detailed-guide.md +628 -0
  94. package/rcode/agents/rules/planner/goal-backward-thinking.md +220 -0
  95. package/rcode/agents/rules/planner/task-templates.md +296 -0
  96. package/rcode/agents/rules/project-researcher/detailed-guide.md +589 -0
  97. package/rcode/agents/rules/roadmapper/detailed-guide.md +620 -0
  98. package/rcode/agents/rules/sprint-checker/dimensions.md +414 -0
  99. package/rcode/agents/rules/sprint-checker/process.md +377 -0
  100. package/rcode/agents/rules/verifier/anti-patterns.md +94 -0
  101. package/rcode/agents/rules/verifier/artifact-verification.md +69 -0
  102. package/rcode/agents/rules/verifier/context-loading.md +84 -0
  103. package/rcode/agents/rules/verifier/gap-output.md +51 -0
  104. package/rcode/agents/rules/verifier/key-links.md +56 -0
  105. package/rcode/agents/rules/verifier/requirements-coverage.md +28 -0
  106. package/rcode/agents/rules/verifier/verification-report.md +131 -0
  107. package/rcode/bin/lib/config.cjs +158 -0
  108. package/rcode/bin/lib/council-panel.cjs +663 -0
  109. package/rcode/bin/lib/roadmap.cjs +359 -0
  110. package/rcode/bin/rcode-hooks.cjs +711 -0
  111. package/rcode/bin/rcode-tools.cjs +7366 -0
  112. package/rcode/brain/README.md +38 -0
  113. package/rcode/brain/best-practices/no-autonomous-bypass.md +37 -0
  114. package/rcode/brain/best-practices/no-theoretical-suggestions.md +56 -0
  115. package/rcode/brain/best-practices/research-citation-rule.md +39 -0
  116. package/rcode/brain/best-practices/state-sync-rule.md +43 -0
  117. package/rcode/brain/sources.yaml +62 -0
  118. package/rcode/commands/add-phase.md +18 -0
  119. package/rcode/commands/add-tests.md +18 -0
  120. package/rcode/commands/add-todo.md +8 -0
  121. package/rcode/commands/analyze-dependencies.md +11 -0
  122. package/rcode/commands/audit-fix.md +14 -0
  123. package/rcode/commands/audit-milestone.md +12 -0
  124. package/rcode/commands/audit-uat.md +18 -0
  125. package/rcode/commands/audit.md +8 -0
  126. package/rcode/commands/autonomous.md +19 -0
  127. package/rcode/commands/brainstorm.md +11 -0
  128. package/rcode/commands/capture.md +12 -0
  129. package/rcode/commands/chain.md +8 -0
  130. package/rcode/commands/check-implementation-readiness.md +18 -0
  131. package/rcode/commands/check-todos.md +18 -0
  132. package/rcode/commands/checkpoint-preview.md +13 -0
  133. package/rcode/commands/cleanup.md +18 -0
  134. package/rcode/commands/code-review.md +14 -0
  135. package/rcode/commands/complete-milestone.md +12 -0
  136. package/rcode/commands/config.md +8 -0
  137. package/rcode/commands/correct-course.md +8 -0
  138. package/rcode/commands/council.md +25 -0
  139. package/rcode/commands/create-architecture.md +18 -0
  140. package/rcode/commands/create-epics-and-stories.md +8 -0
  141. package/rcode/commands/create-prd.md +18 -0
  142. package/rcode/commands/create-story.md +8 -0
  143. package/rcode/commands/dashboard.md +10 -0
  144. package/rcode/commands/debug.md +8 -0
  145. package/rcode/commands/decisions.md +10 -0
  146. package/rcode/commands/dev-story.md +8 -0
  147. package/rcode/commands/diagnose-issues.md +18 -0
  148. package/rcode/commands/diff.md +10 -0
  149. package/rcode/commands/discuss-phase-power.md +18 -0
  150. package/rcode/commands/discuss-phase.md +19 -0
  151. package/rcode/commands/discuss.md +23 -0
  152. package/rcode/commands/do.md +22 -0
  153. package/rcode/commands/docs-update.md +14 -0
  154. package/rcode/commands/document-project.md +8 -0
  155. package/rcode/commands/edit-prd.md +18 -0
  156. package/rcode/commands/enable-hooks.md +11 -0
  157. package/rcode/commands/execute-milestone.md +18 -0
  158. package/rcode/commands/execute-sprint.md +13 -0
  159. package/rcode/commands/execute.md +19 -0
  160. package/rcode/commands/explore.md +14 -0
  161. package/rcode/commands/export-to-github.md +11 -0
  162. package/rcode/commands/feature-drift.md +18 -0
  163. package/rcode/commands/forensics.md +11 -0
  164. package/rcode/commands/from-template.md +11 -0
  165. package/rcode/commands/health.md +10 -0
  166. package/rcode/commands/help.md +8 -0
  167. package/rcode/commands/import.md +12 -0
  168. package/rcode/commands/inbox.md +12 -0
  169. package/rcode/commands/init.md +14 -0
  170. package/rcode/commands/insert-phase.md +11 -0
  171. package/rcode/commands/install.md +10 -0
  172. package/rcode/commands/karpathy-audit.md +18 -0
  173. package/rcode/commands/lens-audit.md +70 -0
  174. package/rcode/commands/list-plans.md +11 -0
  175. package/rcode/commands/list-workspaces.md +10 -0
  176. package/rcode/commands/map-codebase.md +14 -0
  177. package/rcode/commands/memory-audit.md +10 -0
  178. package/rcode/commands/memory-distill.md +11 -0
  179. package/rcode/commands/memory-init.md +12 -0
  180. package/rcode/commands/memory-update.md +12 -0
  181. package/rcode/commands/milestone-summary.md +11 -0
  182. package/rcode/commands/new-milestone.md +12 -0
  183. package/rcode/commands/new-project-research.md +18 -0
  184. package/rcode/commands/new-project-roadmap.md +18 -0
  185. package/rcode/commands/new-project.md +13 -0
  186. package/rcode/commands/new-workspace.md +12 -0
  187. package/rcode/commands/next.md +19 -0
  188. package/rcode/commands/note.md +12 -0
  189. package/rcode/commands/notify-test.md +10 -0
  190. package/rcode/commands/pause-work.md +8 -0
  191. package/rcode/commands/phase.md +11 -0
  192. package/rcode/commands/plan-milestone-gaps.md +18 -0
  193. package/rcode/commands/plan-milestone.md +18 -0
  194. package/rcode/commands/plan.md +19 -0
  195. package/rcode/commands/plant-seed.md +18 -0
  196. package/rcode/commands/pr-branch.md +18 -0
  197. package/rcode/commands/prfaq.md +15 -0
  198. package/rcode/commands/profile-user.md +8 -0
  199. package/rcode/commands/progress.md +18 -0
  200. package/rcode/commands/quick.md +14 -0
  201. package/rcode/commands/remove-phase.md +18 -0
  202. package/rcode/commands/remove-workspace.md +11 -0
  203. package/rcode/commands/replay.md +11 -0
  204. package/rcode/commands/rerun.md +11 -0
  205. package/rcode/commands/research-phase.md +18 -0
  206. package/rcode/commands/resume-work.md +8 -0
  207. package/rcode/commands/retrospective.md +18 -0
  208. package/rcode/commands/review-edge-case-hunter.md +18 -0
  209. package/rcode/commands/review-fix.md +14 -0
  210. package/rcode/commands/review.md +18 -0
  211. package/rcode/commands/scaffold-milestone.md +18 -0
  212. package/rcode/commands/scaffold-project.md +18 -0
  213. package/rcode/commands/scaffold-skill.md +18 -0
  214. package/rcode/commands/scan.md +14 -0
  215. package/rcode/commands/secure-phase.md +14 -0
  216. package/rcode/commands/session-report.md +10 -0
  217. package/rcode/commands/settings.md +8 -0
  218. package/rcode/commands/ship.md +30 -0
  219. package/rcode/commands/show.md +10 -0
  220. package/rcode/commands/sprint-planning.md +20 -0
  221. package/rcode/commands/sprint-status.md +21 -0
  222. package/rcode/commands/stats.md +10 -0
  223. package/rcode/commands/status.md +21 -0
  224. package/rcode/commands/ui-phase.md +8 -0
  225. package/rcode/commands/ui-review.md +8 -0
  226. package/rcode/commands/undo.md +14 -0
  227. package/rcode/commands/update.md +11 -0
  228. package/rcode/commands/validate-phase.md +18 -0
  229. package/rcode/commands/validate-prd.md +18 -0
  230. package/rcode/commands/verify-phase.md +18 -0
  231. package/rcode/commands/verify-work.md +19 -0
  232. package/rcode/commands/why.md +10 -0
  233. package/rcode/commands/workstream.md +11 -0
  234. package/rcode/config/model-profiles.json +226 -0
  235. package/rcode/config/model-profiles.schema.json +36 -0
  236. package/rcode/config.yaml +39 -0
  237. package/rcode/digests/README.md +50 -0
  238. package/rcode/digests/fatima.md +24 -0
  239. package/rcode/digests/hussain-pm.md +24 -0
  240. package/rcode/digests/mariam.md +24 -0
  241. package/rcode/digests/sadiq.md +24 -0
  242. package/rcode/digests/waleed.md +24 -0
  243. package/rcode/modules/core.yaml +101 -0
  244. package/rcode/modules/discovery.yaml +50 -0
  245. package/rcode/modules/execution.yaml +66 -0
  246. package/rcode/references/REFERENCES_INDEX.md +109 -0
  247. package/rcode/references/agent-contracts.md +48 -0
  248. package/rcode/references/agent-shared-rules.md +81 -0
  249. package/rcode/references/assumptions-analyzer-playbook.md +82 -0
  250. package/rcode/references/auditor-shared-checklists.md +91 -0
  251. package/rcode/references/auto-init-guard.md +117 -0
  252. package/rcode/references/checkpoints-index.md +53 -0
  253. package/rcode/references/code-fixer-playbook.md +71 -0
  254. package/rcode/references/code-reviewer-playbook.md +71 -0
  255. package/rcode/references/codebase-mapping-process.md +176 -0
  256. package/rcode/references/command-redirect-format.md +62 -0
  257. package/rcode/references/commit-conventions.md +125 -0
  258. package/rcode/references/common-bug-patterns-index.md +44 -0
  259. package/rcode/references/context-budget.md +104 -0
  260. package/rcode/references/continuation-format.md +248 -0
  261. package/rcode/references/council-protocol.md +91 -0
  262. package/rcode/references/debugger-playbook.md +127 -0
  263. package/rcode/references/design-tokens.md +98 -0
  264. package/rcode/references/dispatch-banner.md +157 -0
  265. package/rcode/references/docs-auditor-playbook.md +148 -0
  266. package/rcode/references/execution-protocol.md +155 -0
  267. package/rcode/references/executor-playbook.md +119 -0
  268. package/rcode/references/gate-prompts.md +212 -0
  269. package/rcode/references/gates.md +127 -0
  270. package/rcode/references/git-integration.md +159 -0
  271. package/rcode/references/git-planning-commit.md +185 -0
  272. package/rcode/references/git-preflight.md +117 -0
  273. package/rcode/references/integration-verification-playbook.md +392 -0
  274. package/rcode/references/iterative-retrieval.md +85 -0
  275. package/rcode/references/karpathy-guidelines-full.md +79 -0
  276. package/rcode/references/karpathy-guidelines.md +11 -0
  277. package/rcode/references/model-profile-resolution.md +44 -0
  278. package/rcode/references/model-profiles.md +90 -0
  279. package/rcode/references/no-unauthorized-git-ops.md +73 -0
  280. package/rcode/references/nyquist-auditor-playbook.md +157 -0
  281. package/rcode/references/output-format.md +398 -0
  282. package/rcode/references/output-realism.md +52 -0
  283. package/rcode/references/persona-engineer-shared.md +61 -0
  284. package/rcode/references/phase-argument-parsing.md +35 -0
  285. package/rcode/references/phase-id-conventions.md +101 -0
  286. package/rcode/references/planner-playbook.md +217 -0
  287. package/rcode/references/remediation-planner-playbook.md +75 -0
  288. package/rcode/references/research-synthesis-playbook.md +205 -0
  289. package/rcode/references/researcher-shared.md +87 -0
  290. package/rcode/references/response-style.md +81 -0
  291. package/rcode/references/revision-loop.md +38 -0
  292. package/rcode/references/roadmapper-playbook.md +82 -0
  293. package/rcode/references/sprint-checker-playbook.md +128 -0
  294. package/rcode/references/state-schema.md +366 -0
  295. package/rcode/references/ui-brand.md +254 -0
  296. package/rcode/references/universal-anti-patterns.md +59 -0
  297. package/rcode/references/ux-designer-playbook.md +74 -0
  298. package/rcode/references/verb-dictionary.md +186 -0
  299. package/rcode/references/verification-patterns-index.md +76 -0
  300. package/rcode/references/verification-patterns.md +612 -0
  301. package/rcode/references/verifier-playbook.md +104 -0
  302. package/rcode/references/workstream-flag.md +166 -0
  303. package/rcode/skills/SKILLS_INDEX.md +144 -0
  304. package/rcode/skills/_shared/no-autonomous-bypass.md +37 -0
  305. package/rcode/skills/_shared/research-citation-rule.md +39 -0
  306. package/rcode/skills/_shared/state-sync-rule.md +43 -0
  307. package/rcode/skills/actions/1-analysis/rcode-document-project/SKILL.md +51 -0
  308. package/rcode/skills/actions/1-analysis/rcode-document-project/templates/index-template.md +169 -0
  309. package/rcode/skills/actions/1-analysis/rcode-document-project/templates/project-overview-template.md +103 -0
  310. package/rcode/skills/actions/1-analysis/rcode-document-project/templates/source-tree-template.md +135 -0
  311. package/rcode/skills/actions/1-analysis/rcode-document-project/workflow.md +27 -0
  312. package/rcode/skills/actions/1-analysis/rcode-document-project/workflows/deep-dive-workflow.md +34 -0
  313. package/rcode/skills/actions/1-analysis/rcode-document-project/workflows/full-scan-workflow.md +34 -0
  314. package/rcode/skills/actions/1-analysis/rcode-prfaq/SKILL.md +145 -0
  315. package/rcode/skills/actions/1-analysis/rcode-product-brief/SKILL.md +123 -0
  316. package/rcode/skills/actions/1-analysis/rcode-product-brief/rcode-manifest.json +17 -0
  317. package/rcode/skills/actions/1-analysis/research/rcode-domain-research/SKILL.md +46 -0
  318. package/rcode/skills/actions/1-analysis/research/rcode-domain-research/workflow.md +49 -0
  319. package/rcode/skills/actions/1-analysis/research/rcode-market-research/SKILL.md +45 -0
  320. package/rcode/skills/actions/1-analysis/research/rcode-market-research/workflow.md +49 -0
  321. package/rcode/skills/actions/1-analysis/research/rcode-technical-research/SKILL.md +48 -0
  322. package/rcode/skills/actions/1-analysis/research/rcode-technical-research/workflow.md +50 -0
  323. package/rcode/skills/actions/2-plan/rcode-create-epics-and-stories/SKILL.md +58 -0
  324. package/rcode/skills/actions/2-plan/rcode-create-epics-and-stories/steps/step-02-design-epics.md +212 -0
  325. package/rcode/skills/actions/2-plan/rcode-create-epics-and-stories/steps/step-03-create-stories.md +255 -0
  326. package/rcode/skills/actions/2-plan/rcode-create-epics-and-stories/steps/step-04-final-validation.md +143 -0
  327. package/rcode/skills/actions/2-plan/rcode-create-epics-and-stories/workflow.md +66 -0
  328. package/rcode/skills/actions/2-plan/rcode-create-milestone/SKILL.md +63 -0
  329. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/README.md +30 -0
  330. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-03-sequencing.md +65 -0
  331. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-05-kill-criteria.md +59 -0
  332. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-06-phase-stubs.md +56 -0
  333. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-07-backlog.md +44 -0
  334. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-08-write-roadmap.md +58 -0
  335. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-09-state-sync.md +62 -0
  336. package/rcode/skills/actions/2-plan/rcode-create-milestone/steps/step-10-complete.md +56 -0
  337. package/rcode/skills/actions/2-plan/rcode-create-milestone/workflow.md +93 -0
  338. package/rcode/skills/actions/2-plan/rcode-create-prd/SKILL.md +80 -0
  339. package/rcode/skills/actions/2-plan/rcode-create-prd/data/prd-purpose.md +197 -0
  340. package/rcode/skills/actions/2-plan/rcode-create-prd/data/project-types.csv +11 -0
  341. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-02-discovery.md +208 -0
  342. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-02b-vision.md +142 -0
  343. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-02c-executive-summary.md +158 -0
  344. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-03-success.md +214 -0
  345. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-04-journeys.md +201 -0
  346. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-05-domain.md +194 -0
  347. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-06-innovation.md +211 -0
  348. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-07-project-type.md +222 -0
  349. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-08-scoping.md +216 -0
  350. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-09-functional.md +219 -0
  351. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-10-nonfunctional.md +230 -0
  352. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-11-polish.md +221 -0
  353. package/rcode/skills/actions/2-plan/rcode-create-prd/steps-c/step-12-complete.md +115 -0
  354. package/rcode/skills/actions/2-plan/rcode-create-prd/workflow.md +64 -0
  355. package/rcode/skills/actions/2-plan/rcode-create-story/SKILL.md +59 -0
  356. package/rcode/skills/actions/2-plan/rcode-create-story/workflow.md +380 -0
  357. package/rcode/skills/actions/2-plan/rcode-create-ux-design/SKILL.md +47 -0
  358. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-02-discovery.md +190 -0
  359. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-03-core-experience.md +217 -0
  360. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-04-emotional-response.md +220 -0
  361. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-05-inspiration.md +235 -0
  362. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-06-design-system.md +253 -0
  363. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-07-defining-experience.md +255 -0
  364. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-08-visual-foundation.md +225 -0
  365. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-09-design-directions.md +225 -0
  366. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-10-user-journeys.md +242 -0
  367. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-11-component-strategy.md +249 -0
  368. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-12-ux-patterns.md +238 -0
  369. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-13-responsive-accessibility.md +265 -0
  370. package/rcode/skills/actions/2-plan/rcode-create-ux-design/steps/step-14-complete.md +171 -0
  371. package/rcode/skills/actions/2-plan/rcode-create-ux-design/workflow.md +36 -0
  372. package/rcode/skills/actions/2-plan/rcode-edit-prd/SKILL.md +45 -0
  373. package/rcode/skills/actions/2-plan/rcode-edit-prd/steps-e/step-e-01-discovery.md +242 -0
  374. package/rcode/skills/actions/2-plan/rcode-edit-prd/steps-e/step-e-01b-legacy-conversion.md +204 -0
  375. package/rcode/skills/actions/2-plan/rcode-edit-prd/steps-e/step-e-02-review.md +245 -0
  376. package/rcode/skills/actions/2-plan/rcode-edit-prd/steps-e/step-e-03-edit.md +250 -0
  377. package/rcode/skills/actions/2-plan/rcode-edit-prd/steps-e/step-e-04-complete.md +165 -0
  378. package/rcode/skills/actions/2-plan/rcode-edit-prd/workflow.md +63 -0
  379. package/rcode/skills/actions/2-plan/rcode-frontend-design/SKILL.md +96 -0
  380. package/rcode/skills/actions/2-plan/rcode-frontend-design/references.md +79 -0
  381. package/rcode/skills/actions/2-plan/rcode-validate-prd/SKILL.md +45 -0
  382. package/rcode/skills/actions/2-plan/rcode-validate-prd/data/prd-purpose.md +197 -0
  383. package/rcode/skills/actions/2-plan/rcode-validate-prd/data/project-types.csv +11 -0
  384. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-01-discovery.md +221 -0
  385. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-02-format-detection.md +188 -0
  386. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-02b-parity-check.md +206 -0
  387. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-03-density-validation.md +171 -0
  388. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-11-holistic-quality-validation.md +261 -0
  389. package/rcode/skills/actions/2-plan/rcode-validate-prd/steps-v/step-v-13-report-complete.md +229 -0
  390. package/rcode/skills/actions/2-plan/rcode-validate-prd/workflow.md +62 -0
  391. package/rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness/SKILL.md +52 -0
  392. package/rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness/steps/step-06-final-assessment.md +126 -0
  393. package/rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness/workflow.md +49 -0
  394. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/SKILL.md +50 -0
  395. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-02-context.md +224 -0
  396. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-03-starter.md +329 -0
  397. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-04-decisions.md +318 -0
  398. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-05-patterns.md +359 -0
  399. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-06-structure.md +379 -0
  400. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-07-validation.md +359 -0
  401. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/steps/step-08-complete.md +76 -0
  402. package/rcode/skills/actions/3-solutioning/rcode-create-architecture/workflow.md +38 -0
  403. package/rcode/skills/actions/3-solutioning/rcode-generate-project-context/SKILL.md +47 -0
  404. package/rcode/skills/actions/3-solutioning/rcode-generate-project-context/steps/step-02-generate.md +321 -0
  405. package/rcode/skills/actions/3-solutioning/rcode-generate-project-context/workflow.md +43 -0
  406. package/rcode/skills/actions/4-implementation/rcode-browser-verify/SKILL.md +73 -0
  407. package/rcode/skills/actions/4-implementation/rcode-checkpoint-preview/SKILL.md +75 -0
  408. package/rcode/skills/actions/4-implementation/rcode-ci/SKILL.md +115 -0
  409. package/rcode/skills/actions/4-implementation/rcode-code-review/SKILL.md +59 -0
  410. package/rcode/skills/actions/4-implementation/rcode-code-review/steps/step-02-review.md +38 -0
  411. package/rcode/skills/actions/4-implementation/rcode-code-review/workflow.md +55 -0
  412. package/rcode/skills/actions/4-implementation/rcode-correct-course/SKILL.md +46 -0
  413. package/rcode/skills/actions/4-implementation/rcode-correct-course/workflow.md +267 -0
  414. package/rcode/skills/actions/4-implementation/rcode-debug/SKILL.md +199 -0
  415. package/rcode/skills/actions/4-implementation/rcode-dev-story/SKILL.md +80 -0
  416. package/rcode/skills/actions/4-implementation/rcode-dev-story/workflow.md +537 -0
  417. package/rcode/skills/actions/4-implementation/rcode-git-flow/SKILL.md +93 -0
  418. package/rcode/skills/actions/4-implementation/rcode-harden/SKILL.md +98 -0
  419. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/SKILL.md +162 -0
  420. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/references.md +136 -0
  421. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/backlog-building.md +113 -0
  422. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/composition-with-herdr.md +85 -0
  423. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/integration-branch.md +191 -0
  424. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/merge-strategy.md +113 -0
  425. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/orchestrator-rhythm.md +119 -0
  426. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/rules/wave-design.md +100 -0
  427. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/templates/BACKLOG-template.md +34 -0
  428. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/templates/STATE-template.md +40 -0
  429. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/templates/heartbeat.sh +29 -0
  430. package/rcode/skills/actions/4-implementation/rcode-herdr-orchestration/templates/wave-prompt.md +69 -0
  431. package/rcode/skills/actions/4-implementation/rcode-incremental/SKILL.md +53 -0
  432. package/rcode/skills/actions/4-implementation/rcode-migrate/SKILL.md +93 -0
  433. package/rcode/skills/actions/4-implementation/rcode-perf/SKILL.md +99 -0
  434. package/rcode/skills/actions/4-implementation/rcode-prove-it/SKILL.md +67 -0
  435. package/rcode/skills/actions/4-implementation/rcode-qa-generate-e2e-tests/SKILL.md +47 -0
  436. package/rcode/skills/actions/4-implementation/rcode-qa-generate-e2e-tests/checklist.md +33 -0
  437. package/rcode/skills/actions/4-implementation/rcode-qa-generate-e2e-tests/workflow.md +136 -0
  438. package/rcode/skills/actions/4-implementation/rcode-retrospective/SKILL.md +45 -0
  439. package/rcode/skills/actions/4-implementation/rcode-retrospective/workflow.md +1491 -0
  440. package/rcode/skills/actions/4-implementation/rcode-scaffold-project/SKILL.md +91 -0
  441. package/rcode/skills/actions/4-implementation/rcode-scaffold-project/steps/step-03-clone.md +50 -0
  442. package/rcode/skills/actions/4-implementation/rcode-scaffold-project/steps/step-04-post-setup.md +44 -0
  443. package/rcode/skills/actions/4-implementation/rcode-source-truth/SKILL.md +79 -0
  444. package/rcode/skills/actions/4-implementation/rcode-sprint-planning/SKILL.md +63 -0
  445. package/rcode/skills/actions/4-implementation/rcode-sprint-planning/checklist.md +43 -0
  446. package/rcode/skills/actions/4-implementation/rcode-sprint-planning/workflow.md +296 -0
  447. package/rcode/skills/actions/4-implementation/rcode-sprint-status/SKILL.md +48 -0
  448. package/rcode/skills/actions/4-implementation/rcode-sprint-status/workflow.md +214 -0
  449. package/rcode/skills/actions/4-implementation/rcode-trim/SKILL.md +76 -0
  450. package/rcode/skills/agents/ahmed-hassani-director/SKILL.md +156 -0
  451. package/rcode/skills/agents/dalil-scout/SKILL.md +135 -0
  452. package/rcode/skills/agents/dalil-scout/references.md +67 -0
  453. package/rcode/skills/agents/fatima-qa/SKILL.md +158 -0
  454. package/rcode/skills/agents/fatima-qa/skill-manifest.yaml +11 -0
  455. package/rcode/skills/agents/haitham-frontend/SKILL.md +151 -0
  456. package/rcode/skills/agents/hanzla-engineer/SKILL.md +159 -0
  457. package/rcode/skills/agents/hanzla-engineer/skill-manifest.yaml +11 -0
  458. package/rcode/skills/agents/hussain-pm/SKILL.md +167 -0
  459. package/rcode/skills/agents/hussain-pm/skill-manifest.yaml +11 -0
  460. package/rcode/skills/agents/hussain-sm/SKILL.md +141 -0
  461. package/rcode/skills/agents/hussain-sm/skill-manifest.yaml +11 -0
  462. package/rcode/skills/agents/layla-designer/SKILL.md +125 -0
  463. package/rcode/skills/agents/layla-designer/skill-manifest.yaml +11 -0
  464. package/rcode/skills/agents/majlis-council/SKILL.md +116 -0
  465. package/rcode/skills/agents/majlis-council/references.md +90 -0
  466. package/rcode/skills/agents/mariam-marketing/SKILL.md +188 -0
  467. package/rcode/skills/agents/nasser-eng-manager/SKILL.md +162 -0
  468. package/rcode/skills/agents/noor-writer/SKILL.md +134 -0
  469. package/rcode/skills/agents/noor-writer/skill-manifest.yaml +11 -0
  470. package/rcode/skills/agents/raees-orchestrator/SKILL.md +122 -0
  471. package/rcode/skills/agents/raees-orchestrator/references.md +47 -0
  472. package/rcode/skills/agents/rcode-cross-platform-auditor/SKILL.md +163 -0
  473. package/rcode/skills/agents/rcode-dep-auditor/SKILL.md +152 -0
  474. package/rcode/skills/agents/rcode-deviation-analyzer/SKILL.md +79 -0
  475. package/rcode/skills/agents/rcode-i18n-auditor/SKILL.md +153 -0
  476. package/rcode/skills/agents/rcode-observability-auditor/SKILL.md +157 -0
  477. package/rcode/skills/agents/sadiq-analyst/SKILL.md +163 -0
  478. package/rcode/skills/agents/sadiq-analyst/skill-manifest.yaml +11 -0
  479. package/rcode/skills/agents/waleed-architect/SKILL.md +154 -0
  480. package/rcode/skills/agents/waleed-architect/skill-manifest.yaml +11 -0
  481. package/rcode/skills/agents/yousef-backend/SKILL.md +164 -0
  482. package/rcode/skills/agents/zahra-branding/SKILL.md +179 -0
  483. package/rcode/skills/agents/zayd-ml/SKILL.md +155 -0
  484. package/rcode/skills/core/module-help.csv +11 -0
  485. package/rcode/skills/core/module.yaml +25 -0
  486. package/rcode/skills/core/rcode-advanced-elicitation/SKILL.md +69 -0
  487. package/rcode/skills/core/rcode-auth-audit/SKILL.md +95 -0
  488. package/rcode/skills/core/rcode-brainstorming/SKILL.md +116 -0
  489. package/rcode/skills/core/rcode-brainstorming/steps/step-03-technique-execution.md +401 -0
  490. package/rcode/skills/core/rcode-brainstorming/workflow.md +53 -0
  491. package/rcode/skills/core/rcode-client-gate/SKILL.md +93 -0
  492. package/rcode/skills/core/rcode-clone-website/SKILL.md +87 -0
  493. package/rcode/skills/core/rcode-deploy-unify/SKILL.md +89 -0
  494. package/rcode/skills/core/rcode-distillator/SKILL.md +65 -0
  495. package/rcode/skills/core/rcode-distillator/references.md +118 -0
  496. package/rcode/skills/core/rcode-distillator/resources/distillate-format-reference.md +227 -0
  497. package/rcode/skills/core/rcode-distillator/scripts/analyze_sources.py +300 -0
  498. package/rcode/skills/core/rcode-editorial-review-prose/SKILL.md +127 -0
  499. package/rcode/skills/core/rcode-editorial-review-structure/SKILL.md +75 -0
  500. package/rcode/skills/core/rcode-editorial-review-structure/references.md +110 -0
  501. package/rcode/skills/core/rcode-help/SKILL.md +127 -0
  502. package/rcode/skills/core/rcode-incident-record/SKILL.md +163 -0
  503. package/rcode/skills/core/rcode-index-docs/SKILL.md +105 -0
  504. package/rcode/skills/core/rcode-init/SKILL.md +134 -0
  505. package/rcode/skills/core/rcode-init/resources/core-module.yaml +25 -0
  506. package/rcode/skills/core/rcode-init/scripts/__pycache__/rcode_init.cpython-38.pyc +0 -0
  507. package/rcode/skills/core/rcode-init/scripts/rcode_init.py +593 -0
  508. package/rcode/skills/core/rcode-init/scripts/tests/__pycache__/test_rcode_init.cpython-38.pyc +0 -0
  509. package/rcode/skills/core/rcode-init/scripts/tests/test_rcode_init.py +329 -0
  510. package/rcode/skills/core/rcode-memory-audit/SKILL.md +107 -0
  511. package/rcode/skills/core/rcode-memory-distill/SKILL.md +89 -0
  512. package/rcode/skills/core/rcode-memory-init/SKILL.md +91 -0
  513. package/rcode/skills/core/rcode-memory-update/SKILL.md +87 -0
  514. package/rcode/skills/core/rcode-mvp-graduate/SKILL.md +118 -0
  515. package/rcode/skills/core/rcode-ocr-consistency/SKILL.md +108 -0
  516. package/rcode/skills/core/rcode-party-mode/SKILL.md +98 -0
  517. package/rcode/skills/core/rcode-party-mode/steps/step-01-agent-loading.md +138 -0
  518. package/rcode/skills/core/rcode-party-mode/steps/step-02-discussion-orchestration.md +187 -0
  519. package/rcode/skills/core/rcode-party-mode/steps/step-03-graceful-exit.md +167 -0
  520. package/rcode/skills/core/rcode-party-mode/workflow.md +190 -0
  521. package/rcode/skills/core/rcode-rebrand/SKILL.md +135 -0
  522. package/rcode/skills/core/rcode-review-adversarial-general/SKILL.md +74 -0
  523. package/rcode/skills/core/rcode-review-edge-case-hunter/SKILL.md +122 -0
  524. package/rcode/skills/core/rcode-shard-doc/SKILL.md +157 -0
  525. package/rcode/skills/core/rcode-theme-system/SKILL.md +115 -0
  526. package/rcode/skills/rcode-init/SKILL.md +134 -0
  527. package/rcode/state.json +21 -0
  528. package/rcode/team.yaml +523 -0
  529. package/rcode/templates/RESEARCH.md +84 -0
  530. package/rcode/templates/UAT.md +80 -0
  531. package/rcode/templates/VALIDATION.md +45 -0
  532. package/rcode/templates/github/bug-template.md +53 -0
  533. package/rcode/templates/github/epic-template.md +57 -0
  534. package/rcode/templates/github/feature-template.md +55 -0
  535. package/rcode/templates/github/task-template.md +52 -0
  536. package/rcode/templates/memory/INDEX.md +47 -0
  537. package/rcode/templates/memory/distillates/project.distillate.md +11 -0
  538. package/rcode/templates/memory/distillates/stack.distillate.md +11 -0
  539. package/rcode/templates/memory/project/decisions.md +32 -0
  540. package/rcode/templates/memory/project/design-system.md +128 -0
  541. package/rcode/templates/memory/project/stack.md +46 -0
  542. package/rcode/templates/milestone.md +149 -0
  543. package/rcode/templates/projects/api-backend/PROJECT.md +37 -0
  544. package/rcode/templates/projects/api-backend/template.yaml +17 -0
  545. package/rcode/templates/projects/mobile-app/PROJECT.md +37 -0
  546. package/rcode/templates/projects/mobile-app/template.yaml +17 -0
  547. package/rcode/templates/projects/saas-b2b/PROJECT.md +40 -0
  548. package/rcode/templates/projects/saas-b2b/template.yaml +18 -0
  549. package/rcode/templates/settings-hooks.json +75 -0
  550. package/rcode/templates/sprint.md +69 -0
  551. package/rcode/templates/summary.md +77 -0
  552. package/rcode/templates/verification-report.md +83 -0
  553. package/rcode/workflows/add-phase.md +193 -0
  554. package/rcode/workflows/add-tests.md +362 -0
  555. package/rcode/workflows/add-todo.md +193 -0
  556. package/rcode/workflows/analyze-dependencies.md +149 -0
  557. package/rcode/workflows/audit-fix.md +211 -0
  558. package/rcode/workflows/audit-milestone.md +193 -0
  559. package/rcode/workflows/audit-plans.md +260 -0
  560. package/rcode/workflows/audit-uat.md +114 -0
  561. package/rcode/workflows/audit-worktrees.md +168 -0
  562. package/rcode/workflows/audit.md +207 -0
  563. package/rcode/workflows/autonomous-smart-discuss.md +253 -0
  564. package/rcode/workflows/autonomous.md +936 -0
  565. package/rcode/workflows/brainstorm.md +219 -0
  566. package/rcode/workflows/capture.md +65 -0
  567. package/rcode/workflows/chain.md +199 -0
  568. package/rcode/workflows/check-implementation-readiness.md +204 -0
  569. package/rcode/workflows/check-todos.md +191 -0
  570. package/rcode/workflows/checkpoint-preview.md +12 -0
  571. package/rcode/workflows/cleanup.md +157 -0
  572. package/rcode/workflows/code-review-fix.md +546 -0
  573. package/rcode/workflows/code-review.md +628 -0
  574. package/rcode/workflows/complete-milestone.md +849 -0
  575. package/rcode/workflows/correct-course.md +207 -0
  576. package/rcode/workflows/council.md +587 -0
  577. package/rcode/workflows/create-architecture.md +36 -0
  578. package/rcode/workflows/create-epics-and-stories.md +388 -0
  579. package/rcode/workflows/create-prd.md +30 -0
  580. package/rcode/workflows/create-story.md +303 -0
  581. package/rcode/workflows/dashboard.md +138 -0
  582. package/rcode/workflows/debug.md +278 -0
  583. package/rcode/workflows/decisions.md +112 -0
  584. package/rcode/workflows/dev-story.md +443 -0
  585. package/rcode/workflows/diagnose-issues.md +92 -0
  586. package/rcode/workflows/diff.md +85 -0
  587. package/rcode/workflows/discuss-phase-discuss-areas.md +275 -0
  588. package/rcode/workflows/discuss-phase-power.md +332 -0
  589. package/rcode/workflows/discuss-phase.md +972 -0
  590. package/rcode/workflows/discuss.md +232 -0
  591. package/rcode/workflows/do.md +438 -0
  592. package/rcode/workflows/docs-update.md +271 -0
  593. package/rcode/workflows/document-project.md +197 -0
  594. package/rcode/workflows/edit-prd.md +36 -0
  595. package/rcode/workflows/enable-hooks.md +112 -0
  596. package/rcode/workflows/execute-milestone.md +144 -0
  597. package/rcode/workflows/execute-regression-gates.md +136 -0
  598. package/rcode/workflows/execute-sprint.md +613 -0
  599. package/rcode/workflows/execute-verify-phase-goal.md +168 -0
  600. package/rcode/workflows/execute-waves.md +462 -0
  601. package/rcode/workflows/execute.md +1062 -0
  602. package/rcode/workflows/explore.md +179 -0
  603. package/rcode/workflows/export-to-github.md +179 -0
  604. package/rcode/workflows/feature-drift.md +248 -0
  605. package/rcode/workflows/forensics.md +215 -0
  606. package/rcode/workflows/from-template.md +178 -0
  607. package/rcode/workflows/health.md +265 -0
  608. package/rcode/workflows/help.md +354 -0
  609. package/rcode/workflows/import.md +326 -0
  610. package/rcode/workflows/inbox.md +425 -0
  611. package/rcode/workflows/init.md +356 -0
  612. package/rcode/workflows/insert-phase.md +122 -0
  613. package/rcode/workflows/install.md +82 -0
  614. package/rcode/workflows/karpathy-audit.md +412 -0
  615. package/rcode/workflows/lens-audit.md +705 -0
  616. package/rcode/workflows/list-plans.md +151 -0
  617. package/rcode/workflows/list-workspaces.md +120 -0
  618. package/rcode/workflows/map-codebase.md +466 -0
  619. package/rcode/workflows/memory-audit.md +150 -0
  620. package/rcode/workflows/memory-distill.md +118 -0
  621. package/rcode/workflows/memory-init.md +111 -0
  622. package/rcode/workflows/memory-update.md +92 -0
  623. package/rcode/workflows/milestone-summary.md +211 -0
  624. package/rcode/workflows/new-milestone.md +644 -0
  625. package/rcode/workflows/new-project-create-roadmap.md +210 -0
  626. package/rcode/workflows/new-project-define-requirements.md +167 -0
  627. package/rcode/workflows/new-project-research-decision.md +254 -0
  628. package/rcode/workflows/new-project-research.md +318 -0
  629. package/rcode/workflows/new-project-roadmap.md +451 -0
  630. package/rcode/workflows/new-project.md +994 -0
  631. package/rcode/workflows/new-workspace.md +172 -0
  632. package/rcode/workflows/next.md +167 -0
  633. package/rcode/workflows/note.md +161 -0
  634. package/rcode/workflows/notify-test.md +118 -0
  635. package/rcode/workflows/pause-work.md +253 -0
  636. package/rcode/workflows/phase.md +94 -0
  637. package/rcode/workflows/plan-milestone-gaps.md +278 -0
  638. package/rcode/workflows/plan-milestone.md +110 -0
  639. package/rcode/workflows/plan-prd-express.md +113 -0
  640. package/rcode/workflows/plan-research-validation.md +320 -0
  641. package/rcode/workflows/plan-spawn-planner.md +357 -0
  642. package/rcode/workflows/plan.md +1062 -0
  643. package/rcode/workflows/plant-seed.md +180 -0
  644. package/rcode/workflows/pr-branch.md +134 -0
  645. package/rcode/workflows/prfaq.md +12 -0
  646. package/rcode/workflows/profile-user.md +173 -0
  647. package/rcode/workflows/progress.md +51 -0
  648. package/rcode/workflows/quick.md +213 -0
  649. package/rcode/workflows/remove-phase.md +165 -0
  650. package/rcode/workflows/remove-workspace.md +169 -0
  651. package/rcode/workflows/replay.md +165 -0
  652. package/rcode/workflows/rerun.md +82 -0
  653. package/rcode/workflows/research-phase.md +113 -0
  654. package/rcode/workflows/resume-work.md +336 -0
  655. package/rcode/workflows/retrospective.md +36 -0
  656. package/rcode/workflows/review-adversarial.md +205 -0
  657. package/rcode/workflows/review-edge-case-hunter.md +225 -0
  658. package/rcode/workflows/review.md +297 -0
  659. package/rcode/workflows/scaffold-milestone.md +65 -0
  660. package/rcode/workflows/scaffold-project.md +36 -0
  661. package/rcode/workflows/scaffold-skill.md +142 -0
  662. package/rcode/workflows/scan.md +388 -0
  663. package/rcode/workflows/secure-phase.md +216 -0
  664. package/rcode/workflows/session-report.md +257 -0
  665. package/rcode/workflows/settings.md +189 -0
  666. package/rcode/workflows/ship.md +284 -0
  667. package/rcode/workflows/show.md +74 -0
  668. package/rcode/workflows/sprint-planning.md +208 -0
  669. package/rcode/workflows/sprint-status.md +129 -0
  670. package/rcode/workflows/stats.md +147 -0
  671. package/rcode/workflows/status.md +164 -0
  672. package/rcode/workflows/ui-phase.md +159 -0
  673. package/rcode/workflows/ui-review.md +145 -0
  674. package/rcode/workflows/undo.md +432 -0
  675. package/rcode/workflows/update.md +249 -0
  676. package/rcode/workflows/validate-phase.md +191 -0
  677. package/rcode/workflows/validate-prd.md +36 -0
  678. package/rcode/workflows/verify-phase.md +420 -0
  679. package/rcode/workflows/verify-work.md +733 -0
  680. package/rcode/workflows/why.md +135 -0
  681. package/rcode/workflows/workstream.md +215 -0
  682. package/server/dashboard.js +24 -19
  683. package/server/lib/api.js +26 -7
  684. package/server/lib/html/client/components/Sidebar.js +2 -2
  685. package/server/lib/html/client/components/shared.js +9 -9
  686. package/server/lib/html/client/orchestrator.js +17 -17
  687. package/server/lib/html/client/util.js +26 -26
  688. package/server/lib/html/client/views/DecisionsView.js +4 -4
  689. package/server/lib/html/client/views/FilesView.js +18 -3
  690. package/server/lib/html/client/views/KanbanView.js +1 -1
  691. package/server/lib/html/client/views/MemoryView.js +7 -7
  692. package/server/lib/html/client/views/OrchestrationView.js +2 -2
  693. package/server/lib/html/client/views/OverviewView.js +5 -5
  694. package/server/lib/html/client/views/PhasesView.js +9 -9
  695. package/server/lib/html/client/views/RoadmapView.js +11 -11
  696. package/server/lib/html/client/views/SprintsView.js +7 -7
  697. package/server/lib/html/client/views/TasksView.js +7 -7
  698. package/server/lib/html/css.js +2 -2
  699. package/server/lib/html/shell.js +27 -4
  700. package/server/lib/scanner.js +19 -19
  701. package/server/orchestrator.js +48 -23
  702. package/rihal/DOCS-AUDIT.md +0 -14
  703. package/rihal/agents/rihal-advisor-researcher.md +0 -93
  704. package/rihal/agents/rihal-ahmed.md +0 -10
  705. package/rihal/agents/rihal-assumptions-analyzer.md +0 -49
  706. package/rihal/agents/rihal-code-fixer.md +0 -57
  707. package/rihal/agents/rihal-code-reviewer.md +0 -57
  708. package/rihal/agents/rihal-codebase-mapper.md +0 -78
  709. package/rihal/agents/rihal-cross-platform-auditor.md +0 -15
  710. package/rihal/agents/rihal-debugger.md +0 -37
  711. package/rihal/agents/rihal-dep-auditor.md +0 -15
  712. package/rihal/agents/rihal-deviation-analyzer.md +0 -75
  713. package/rihal/agents/rihal-docs-auditor.md +0 -31
  714. package/rihal/agents/rihal-edge-case-hunter.md +0 -95
  715. package/rihal/agents/rihal-executor.md +0 -27
  716. package/rihal/agents/rihal-fatima.md +0 -19
  717. package/rihal/agents/rihal-haitham.md +0 -99
  718. package/rihal/agents/rihal-hanzla.md +0 -18
  719. package/rihal/agents/rihal-hussain-pm.md +0 -19
  720. package/rihal/agents/rihal-i18n-auditor.md +0 -16
  721. package/rihal/agents/rihal-integration-checker.md +0 -61
  722. package/rihal/agents/rihal-khalid.md +0 -99
  723. package/rihal/agents/rihal-layla.md +0 -10
  724. package/rihal/agents/rihal-mariam.md +0 -18
  725. package/rihal/agents/rihal-nasser.md +0 -10
  726. package/rihal/agents/rihal-noor.md +0 -11
  727. package/rihal/agents/rihal-nyquist-auditor.md +0 -24
  728. package/rihal/agents/rihal-observability-auditor.md +0 -16
  729. package/rihal/agents/rihal-omar.md +0 -96
  730. package/rihal/agents/rihal-phase-researcher.md +0 -96
  731. package/rihal/agents/rihal-planner.md +0 -32
  732. package/rihal/agents/rihal-profiler.md +0 -98
  733. package/rihal/agents/rihal-project-researcher.md +0 -94
  734. package/rihal/agents/rihal-remediation-planner.md +0 -56
  735. package/rihal/agents/rihal-research-synthesizer.md +0 -45
  736. package/rihal/agents/rihal-roadmapper.md +0 -48
  737. package/rihal/agents/rihal-sadiq.md +0 -18
  738. package/rihal/agents/rihal-security-adversary.md +0 -98
  739. package/rihal/agents/rihal-security-auditor.md +0 -100
  740. package/rihal/agents/rihal-sprint-checker.md +0 -31
  741. package/rihal/agents/rihal-ui-auditor.md +0 -100
  742. package/rihal/agents/rihal-ux-designer.md +0 -57
  743. package/rihal/agents/rihal-verifier.md +0 -40
  744. package/rihal/agents/rihal-waleed.md +0 -20
  745. package/rihal/agents/rihal-yousef.md +0 -97
  746. package/rihal/agents/rihal-zahra.md +0 -63
  747. package/rihal/agents/rihal-zayd.md +0 -79
  748. package/rihal/agents/rules/codebase-mapper/detailed-guide.md +0 -615
  749. package/rihal/agents/rules/debugger/checkpoint-recovery.md +0 -272
  750. package/rihal/agents/rules/debugger/debug-session-state.md +0 -261
  751. package/rihal/agents/rules/debugger/investigation-protocol.md +0 -298
  752. package/rihal/agents/rules/debugger/scientific-method.md +0 -317
  753. package/rihal/agents/rules/executor/authentication-gates.md +0 -202
  754. package/rihal/agents/rules/executor/deviation-rules.md +0 -191
  755. package/rihal/agents/rules/executor/execution-flow.md +0 -116
  756. package/rihal/agents/rules/executor/self-check.md +0 -241
  757. package/rihal/agents/rules/executor/stub-detection.md +0 -267
  758. package/rihal/agents/rules/executor/summary-creation.md +0 -76
  759. package/rihal/agents/rules/executor/task-commit-protocol.md +0 -309
  760. package/rihal/agents/rules/executor/tdd-flow.md +0 -294
  761. package/rihal/agents/rules/phase-researcher/detailed-guide.md +0 -628
  762. package/rihal/agents/rules/planner/goal-backward-thinking.md +0 -220
  763. package/rihal/agents/rules/planner/task-templates.md +0 -296
  764. package/rihal/agents/rules/project-researcher/detailed-guide.md +0 -589
  765. package/rihal/agents/rules/roadmapper/detailed-guide.md +0 -620
  766. package/rihal/agents/rules/sprint-checker/dimensions.md +0 -414
  767. package/rihal/agents/rules/sprint-checker/process.md +0 -377
  768. package/rihal/agents/rules/verifier/anti-patterns.md +0 -94
  769. package/rihal/agents/rules/verifier/artifact-verification.md +0 -69
  770. package/rihal/agents/rules/verifier/context-loading.md +0 -84
  771. package/rihal/agents/rules/verifier/gap-output.md +0 -51
  772. package/rihal/agents/rules/verifier/key-links.md +0 -56
  773. package/rihal/agents/rules/verifier/requirements-coverage.md +0 -28
  774. package/rihal/agents/rules/verifier/verification-report.md +0 -131
  775. package/rihal/bin/lib/config.cjs +0 -158
  776. package/rihal/bin/lib/council-panel.cjs +0 -663
  777. package/rihal/bin/lib/roadmap.cjs +0 -280
  778. package/rihal/bin/rihal-hooks.cjs +0 -709
  779. package/rihal/bin/rihal-tools.cjs +0 -7150
  780. package/rihal/brain/README.md +0 -38
  781. package/rihal/brain/best-practices/no-autonomous-bypass.md +0 -37
  782. package/rihal/brain/best-practices/no-theoretical-suggestions.md +0 -56
  783. package/rihal/brain/best-practices/research-citation-rule.md +0 -39
  784. package/rihal/brain/best-practices/state-sync-rule.md +0 -43
  785. package/rihal/brain/sources.yaml +0 -62
  786. package/rihal/commands/add-phase.md +0 -18
  787. package/rihal/commands/add-tests.md +0 -18
  788. package/rihal/commands/add-todo.md +0 -8
  789. package/rihal/commands/analyze-dependencies.md +0 -11
  790. package/rihal/commands/audit-fix.md +0 -14
  791. package/rihal/commands/audit-milestone.md +0 -12
  792. package/rihal/commands/audit-uat.md +0 -18
  793. package/rihal/commands/audit.md +0 -8
  794. package/rihal/commands/autonomous.md +0 -19
  795. package/rihal/commands/brainstorm.md +0 -11
  796. package/rihal/commands/capture.md +0 -12
  797. package/rihal/commands/chain.md +0 -8
  798. package/rihal/commands/check-implementation-readiness.md +0 -18
  799. package/rihal/commands/check-todos.md +0 -18
  800. package/rihal/commands/checkpoint-preview.md +0 -13
  801. package/rihal/commands/cleanup.md +0 -18
  802. package/rihal/commands/code-review-fix.md +0 -14
  803. package/rihal/commands/code-review.md +0 -14
  804. package/rihal/commands/complete-milestone.md +0 -12
  805. package/rihal/commands/config.md +0 -8
  806. package/rihal/commands/correct-course.md +0 -8
  807. package/rihal/commands/council.md +0 -25
  808. package/rihal/commands/create-architecture.md +0 -18
  809. package/rihal/commands/create-epics-and-stories.md +0 -8
  810. package/rihal/commands/create-prd.md +0 -18
  811. package/rihal/commands/create-story.md +0 -8
  812. package/rihal/commands/dashboard.md +0 -10
  813. package/rihal/commands/debug.md +0 -8
  814. package/rihal/commands/decisions.md +0 -10
  815. package/rihal/commands/dev-story.md +0 -8
  816. package/rihal/commands/diagnose-issues.md +0 -18
  817. package/rihal/commands/diff.md +0 -10
  818. package/rihal/commands/discuss-phase-power.md +0 -18
  819. package/rihal/commands/discuss-phase.md +0 -19
  820. package/rihal/commands/discuss.md +0 -23
  821. package/rihal/commands/do.md +0 -22
  822. package/rihal/commands/docs-update.md +0 -14
  823. package/rihal/commands/document-project.md +0 -8
  824. package/rihal/commands/edit-prd.md +0 -18
  825. package/rihal/commands/enable-hooks.md +0 -11
  826. package/rihal/commands/execute-milestone.md +0 -18
  827. package/rihal/commands/execute-sprint.md +0 -13
  828. package/rihal/commands/execute.md +0 -19
  829. package/rihal/commands/explore.md +0 -14
  830. package/rihal/commands/export-to-github.md +0 -11
  831. package/rihal/commands/feature-drift.md +0 -18
  832. package/rihal/commands/forensics.md +0 -11
  833. package/rihal/commands/from-template.md +0 -11
  834. package/rihal/commands/health.md +0 -10
  835. package/rihal/commands/help.md +0 -8
  836. package/rihal/commands/import.md +0 -12
  837. package/rihal/commands/inbox.md +0 -12
  838. package/rihal/commands/init.md +0 -14
  839. package/rihal/commands/insert-phase.md +0 -11
  840. package/rihal/commands/install.md +0 -10
  841. package/rihal/commands/karpathy-audit.md +0 -18
  842. package/rihal/commands/lens-audit.md +0 -70
  843. package/rihal/commands/list-plans.md +0 -11
  844. package/rihal/commands/list-workspaces.md +0 -10
  845. package/rihal/commands/map-codebase.md +0 -14
  846. package/rihal/commands/memory-audit.md +0 -10
  847. package/rihal/commands/memory-distill.md +0 -11
  848. package/rihal/commands/memory-init.md +0 -12
  849. package/rihal/commands/memory-update.md +0 -12
  850. package/rihal/commands/milestone-summary.md +0 -11
  851. package/rihal/commands/new-milestone.md +0 -12
  852. package/rihal/commands/new-project-research.md +0 -18
  853. package/rihal/commands/new-project-roadmap.md +0 -18
  854. package/rihal/commands/new-project.md +0 -13
  855. package/rihal/commands/new-workspace.md +0 -12
  856. package/rihal/commands/next.md +0 -19
  857. package/rihal/commands/note.md +0 -12
  858. package/rihal/commands/notify-test.md +0 -10
  859. package/rihal/commands/pause-work.md +0 -8
  860. package/rihal/commands/phase.md +0 -11
  861. package/rihal/commands/plan-milestone-gaps.md +0 -18
  862. package/rihal/commands/plan-milestone.md +0 -18
  863. package/rihal/commands/plan.md +0 -19
  864. package/rihal/commands/plant-seed.md +0 -18
  865. package/rihal/commands/pr-branch.md +0 -18
  866. package/rihal/commands/prfaq.md +0 -15
  867. package/rihal/commands/profile-user.md +0 -8
  868. package/rihal/commands/progress.md +0 -18
  869. package/rihal/commands/quick.md +0 -14
  870. package/rihal/commands/remove-phase.md +0 -18
  871. package/rihal/commands/remove-workspace.md +0 -11
  872. package/rihal/commands/replay.md +0 -11
  873. package/rihal/commands/rerun.md +0 -11
  874. package/rihal/commands/research-phase.md +0 -18
  875. package/rihal/commands/resume-work.md +0 -8
  876. package/rihal/commands/retrospective.md +0 -18
  877. package/rihal/commands/review-edge-case-hunter.md +0 -18
  878. package/rihal/commands/review.md +0 -18
  879. package/rihal/commands/scaffold-milestone.md +0 -18
  880. package/rihal/commands/scaffold-project.md +0 -18
  881. package/rihal/commands/scaffold-skill.md +0 -18
  882. package/rihal/commands/scan.md +0 -14
  883. package/rihal/commands/secure-phase.md +0 -14
  884. package/rihal/commands/session-report.md +0 -10
  885. package/rihal/commands/settings.md +0 -8
  886. package/rihal/commands/ship.md +0 -30
  887. package/rihal/commands/show.md +0 -10
  888. package/rihal/commands/sprint-planning.md +0 -20
  889. package/rihal/commands/sprint-status.md +0 -21
  890. package/rihal/commands/stats.md +0 -10
  891. package/rihal/commands/status.md +0 -21
  892. package/rihal/commands/ui-phase.md +0 -8
  893. package/rihal/commands/ui-review.md +0 -8
  894. package/rihal/commands/undo.md +0 -14
  895. package/rihal/commands/update.md +0 -11
  896. package/rihal/commands/validate-phase.md +0 -18
  897. package/rihal/commands/validate-prd.md +0 -18
  898. package/rihal/commands/verify-phase.md +0 -18
  899. package/rihal/commands/verify-work.md +0 -19
  900. package/rihal/commands/why.md +0 -10
  901. package/rihal/commands/workstream.md +0 -11
  902. package/rihal/config/model-profiles.json +0 -226
  903. package/rihal/config/model-profiles.schema.json +0 -36
  904. package/rihal/config.yaml +0 -39
  905. package/rihal/digests/README.md +0 -50
  906. package/rihal/digests/fatima.md +0 -24
  907. package/rihal/digests/hussain-pm.md +0 -24
  908. package/rihal/digests/mariam.md +0 -24
  909. package/rihal/digests/sadiq.md +0 -24
  910. package/rihal/digests/waleed.md +0 -24
  911. package/rihal/modules/core.yaml +0 -101
  912. package/rihal/modules/discovery.yaml +0 -50
  913. package/rihal/modules/execution.yaml +0 -66
  914. package/rihal/references/REFERENCES_INDEX.md +0 -109
  915. package/rihal/references/agent-contracts.md +0 -48
  916. package/rihal/references/agent-shared-rules.md +0 -81
  917. package/rihal/references/assumptions-analyzer-playbook.md +0 -82
  918. package/rihal/references/auditor-shared-checklists.md +0 -91
  919. package/rihal/references/auto-init-guard.md +0 -117
  920. package/rihal/references/checkpoints-index.md +0 -53
  921. package/rihal/references/code-fixer-playbook.md +0 -71
  922. package/rihal/references/code-reviewer-playbook.md +0 -71
  923. package/rihal/references/codebase-mapping-process.md +0 -176
  924. package/rihal/references/command-redirect-format.md +0 -62
  925. package/rihal/references/commit-conventions.md +0 -125
  926. package/rihal/references/common-bug-patterns-index.md +0 -44
  927. package/rihal/references/context-budget.md +0 -104
  928. package/rihal/references/continuation-format.md +0 -248
  929. package/rihal/references/council-protocol.md +0 -91
  930. package/rihal/references/debugger-playbook.md +0 -127
  931. package/rihal/references/design-tokens.md +0 -98
  932. package/rihal/references/dispatch-banner.md +0 -157
  933. package/rihal/references/docs-auditor-playbook.md +0 -148
  934. package/rihal/references/execution-protocol.md +0 -155
  935. package/rihal/references/executor-playbook.md +0 -119
  936. package/rihal/references/gate-prompts.md +0 -212
  937. package/rihal/references/gates.md +0 -127
  938. package/rihal/references/git-integration.md +0 -159
  939. package/rihal/references/git-planning-commit.md +0 -185
  940. package/rihal/references/git-preflight.md +0 -117
  941. package/rihal/references/integration-verification-playbook.md +0 -392
  942. package/rihal/references/iterative-retrieval.md +0 -85
  943. package/rihal/references/karpathy-guidelines-full.md +0 -79
  944. package/rihal/references/karpathy-guidelines.md +0 -11
  945. package/rihal/references/model-profile-resolution.md +0 -44
  946. package/rihal/references/model-profiles.md +0 -90
  947. package/rihal/references/no-unauthorized-git-ops.md +0 -73
  948. package/rihal/references/nyquist-auditor-playbook.md +0 -157
  949. package/rihal/references/output-format.md +0 -398
  950. package/rihal/references/output-realism.md +0 -52
  951. package/rihal/references/persona-engineer-shared.md +0 -61
  952. package/rihal/references/phase-argument-parsing.md +0 -35
  953. package/rihal/references/phase-id-conventions.md +0 -101
  954. package/rihal/references/planner-playbook.md +0 -217
  955. package/rihal/references/remediation-planner-playbook.md +0 -75
  956. package/rihal/references/research-synthesis-playbook.md +0 -205
  957. package/rihal/references/researcher-shared.md +0 -87
  958. package/rihal/references/response-style.md +0 -81
  959. package/rihal/references/revision-loop.md +0 -38
  960. package/rihal/references/roadmapper-playbook.md +0 -82
  961. package/rihal/references/sprint-checker-playbook.md +0 -128
  962. package/rihal/references/state-schema.md +0 -366
  963. package/rihal/references/ui-brand.md +0 -254
  964. package/rihal/references/universal-anti-patterns.md +0 -59
  965. package/rihal/references/ux-designer-playbook.md +0 -74
  966. package/rihal/references/verb-dictionary.md +0 -186
  967. package/rihal/references/verification-patterns-index.md +0 -76
  968. package/rihal/references/verification-patterns.md +0 -612
  969. package/rihal/references/verifier-playbook.md +0 -104
  970. package/rihal/references/workstream-flag.md +0 -166
  971. package/rihal/skills/SKILLS_INDEX.md +0 -143
  972. package/rihal/skills/_shared/no-autonomous-bypass.md +0 -37
  973. package/rihal/skills/_shared/research-citation-rule.md +0 -39
  974. package/rihal/skills/_shared/state-sync-rule.md +0 -43
  975. package/rihal/skills/actions/1-analysis/research/rihal-domain-research/SKILL.md +0 -46
  976. package/rihal/skills/actions/1-analysis/research/rihal-domain-research/workflow.md +0 -49
  977. package/rihal/skills/actions/1-analysis/research/rihal-market-research/SKILL.md +0 -45
  978. package/rihal/skills/actions/1-analysis/research/rihal-market-research/workflow.md +0 -49
  979. package/rihal/skills/actions/1-analysis/research/rihal-technical-research/SKILL.md +0 -48
  980. package/rihal/skills/actions/1-analysis/research/rihal-technical-research/workflow.md +0 -50
  981. package/rihal/skills/actions/1-analysis/rihal-document-project/SKILL.md +0 -45
  982. package/rihal/skills/actions/1-analysis/rihal-document-project/templates/index-template.md +0 -169
  983. package/rihal/skills/actions/1-analysis/rihal-document-project/templates/project-overview-template.md +0 -103
  984. package/rihal/skills/actions/1-analysis/rihal-document-project/templates/source-tree-template.md +0 -135
  985. package/rihal/skills/actions/1-analysis/rihal-document-project/workflow.md +0 -27
  986. package/rihal/skills/actions/1-analysis/rihal-document-project/workflows/deep-dive-workflow.md +0 -34
  987. package/rihal/skills/actions/1-analysis/rihal-document-project/workflows/full-scan-workflow.md +0 -34
  988. package/rihal/skills/actions/1-analysis/rihal-prfaq/SKILL.md +0 -145
  989. package/rihal/skills/actions/1-analysis/rihal-product-brief/SKILL.md +0 -123
  990. package/rihal/skills/actions/1-analysis/rihal-product-brief/rihal-manifest.json +0 -17
  991. package/rihal/skills/actions/2-plan/rihal-create-epics-and-stories/SKILL.md +0 -58
  992. package/rihal/skills/actions/2-plan/rihal-create-epics-and-stories/steps/step-02-design-epics.md +0 -212
  993. package/rihal/skills/actions/2-plan/rihal-create-epics-and-stories/steps/step-03-create-stories.md +0 -255
  994. package/rihal/skills/actions/2-plan/rihal-create-epics-and-stories/steps/step-04-final-validation.md +0 -143
  995. package/rihal/skills/actions/2-plan/rihal-create-epics-and-stories/workflow.md +0 -66
  996. package/rihal/skills/actions/2-plan/rihal-create-milestone/SKILL.md +0 -63
  997. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/README.md +0 -30
  998. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-03-sequencing.md +0 -65
  999. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-05-kill-criteria.md +0 -59
  1000. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-06-phase-stubs.md +0 -56
  1001. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-07-backlog.md +0 -44
  1002. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-08-write-roadmap.md +0 -58
  1003. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-09-state-sync.md +0 -62
  1004. package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-10-complete.md +0 -56
  1005. package/rihal/skills/actions/2-plan/rihal-create-milestone/workflow.md +0 -93
  1006. package/rihal/skills/actions/2-plan/rihal-create-prd/SKILL.md +0 -80
  1007. package/rihal/skills/actions/2-plan/rihal-create-prd/data/prd-purpose.md +0 -197
  1008. package/rihal/skills/actions/2-plan/rihal-create-prd/data/project-types.csv +0 -11
  1009. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-02-discovery.md +0 -208
  1010. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-02b-vision.md +0 -142
  1011. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-02c-executive-summary.md +0 -158
  1012. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-03-success.md +0 -214
  1013. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-04-journeys.md +0 -201
  1014. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-05-domain.md +0 -194
  1015. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-06-innovation.md +0 -211
  1016. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-07-project-type.md +0 -222
  1017. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-08-scoping.md +0 -216
  1018. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-09-functional.md +0 -219
  1019. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-10-nonfunctional.md +0 -230
  1020. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-11-polish.md +0 -221
  1021. package/rihal/skills/actions/2-plan/rihal-create-prd/steps-c/step-12-complete.md +0 -115
  1022. package/rihal/skills/actions/2-plan/rihal-create-prd/workflow.md +0 -64
  1023. package/rihal/skills/actions/2-plan/rihal-create-story/SKILL.md +0 -59
  1024. package/rihal/skills/actions/2-plan/rihal-create-story/workflow.md +0 -380
  1025. package/rihal/skills/actions/2-plan/rihal-create-ux-design/SKILL.md +0 -47
  1026. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-02-discovery.md +0 -190
  1027. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-03-core-experience.md +0 -217
  1028. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-04-emotional-response.md +0 -220
  1029. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-05-inspiration.md +0 -235
  1030. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-06-design-system.md +0 -253
  1031. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-07-defining-experience.md +0 -255
  1032. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-08-visual-foundation.md +0 -225
  1033. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-09-design-directions.md +0 -225
  1034. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-10-user-journeys.md +0 -242
  1035. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-11-component-strategy.md +0 -249
  1036. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-12-ux-patterns.md +0 -238
  1037. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-13-responsive-accessibility.md +0 -265
  1038. package/rihal/skills/actions/2-plan/rihal-create-ux-design/steps/step-14-complete.md +0 -171
  1039. package/rihal/skills/actions/2-plan/rihal-create-ux-design/workflow.md +0 -36
  1040. package/rihal/skills/actions/2-plan/rihal-edit-prd/SKILL.md +0 -45
  1041. package/rihal/skills/actions/2-plan/rihal-edit-prd/steps-e/step-e-01-discovery.md +0 -242
  1042. package/rihal/skills/actions/2-plan/rihal-edit-prd/steps-e/step-e-01b-legacy-conversion.md +0 -204
  1043. package/rihal/skills/actions/2-plan/rihal-edit-prd/steps-e/step-e-02-review.md +0 -245
  1044. package/rihal/skills/actions/2-plan/rihal-edit-prd/steps-e/step-e-03-edit.md +0 -250
  1045. package/rihal/skills/actions/2-plan/rihal-edit-prd/steps-e/step-e-04-complete.md +0 -165
  1046. package/rihal/skills/actions/2-plan/rihal-edit-prd/workflow.md +0 -63
  1047. package/rihal/skills/actions/2-plan/rihal-frontend-design/SKILL.md +0 -96
  1048. package/rihal/skills/actions/2-plan/rihal-frontend-design/references.md +0 -79
  1049. package/rihal/skills/actions/2-plan/rihal-validate-prd/SKILL.md +0 -45
  1050. package/rihal/skills/actions/2-plan/rihal-validate-prd/data/prd-purpose.md +0 -197
  1051. package/rihal/skills/actions/2-plan/rihal-validate-prd/data/project-types.csv +0 -11
  1052. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-01-discovery.md +0 -221
  1053. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-02-format-detection.md +0 -188
  1054. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-02b-parity-check.md +0 -206
  1055. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-03-density-validation.md +0 -171
  1056. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-11-holistic-quality-validation.md +0 -261
  1057. package/rihal/skills/actions/2-plan/rihal-validate-prd/steps-v/step-v-13-report-complete.md +0 -229
  1058. package/rihal/skills/actions/2-plan/rihal-validate-prd/workflow.md +0 -62
  1059. package/rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness/SKILL.md +0 -46
  1060. package/rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness/steps/step-06-final-assessment.md +0 -126
  1061. package/rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness/workflow.md +0 -49
  1062. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/SKILL.md +0 -50
  1063. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-02-context.md +0 -224
  1064. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-03-starter.md +0 -329
  1065. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-04-decisions.md +0 -318
  1066. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-05-patterns.md +0 -359
  1067. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-06-structure.md +0 -379
  1068. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-07-validation.md +0 -359
  1069. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/steps/step-08-complete.md +0 -76
  1070. package/rihal/skills/actions/3-solutioning/rihal-create-architecture/workflow.md +0 -38
  1071. package/rihal/skills/actions/3-solutioning/rihal-generate-project-context/SKILL.md +0 -47
  1072. package/rihal/skills/actions/3-solutioning/rihal-generate-project-context/steps/step-02-generate.md +0 -321
  1073. package/rihal/skills/actions/3-solutioning/rihal-generate-project-context/workflow.md +0 -43
  1074. package/rihal/skills/actions/4-implementation/rihal-browser-verify/SKILL.md +0 -73
  1075. package/rihal/skills/actions/4-implementation/rihal-checkpoint-preview/SKILL.md +0 -75
  1076. package/rihal/skills/actions/4-implementation/rihal-ci/SKILL.md +0 -115
  1077. package/rihal/skills/actions/4-implementation/rihal-code-review/SKILL.md +0 -59
  1078. package/rihal/skills/actions/4-implementation/rihal-code-review/steps/step-02-review.md +0 -38
  1079. package/rihal/skills/actions/4-implementation/rihal-code-review/workflow.md +0 -55
  1080. package/rihal/skills/actions/4-implementation/rihal-correct-course/SKILL.md +0 -46
  1081. package/rihal/skills/actions/4-implementation/rihal-correct-course/workflow.md +0 -267
  1082. package/rihal/skills/actions/4-implementation/rihal-debug/SKILL.md +0 -199
  1083. package/rihal/skills/actions/4-implementation/rihal-dev-story/SKILL.md +0 -80
  1084. package/rihal/skills/actions/4-implementation/rihal-dev-story/workflow.md +0 -537
  1085. package/rihal/skills/actions/4-implementation/rihal-git-flow/SKILL.md +0 -93
  1086. package/rihal/skills/actions/4-implementation/rihal-harden/SKILL.md +0 -98
  1087. package/rihal/skills/actions/4-implementation/rihal-incremental/SKILL.md +0 -53
  1088. package/rihal/skills/actions/4-implementation/rihal-migrate/SKILL.md +0 -93
  1089. package/rihal/skills/actions/4-implementation/rihal-perf/SKILL.md +0 -99
  1090. package/rihal/skills/actions/4-implementation/rihal-prove-it/SKILL.md +0 -67
  1091. package/rihal/skills/actions/4-implementation/rihal-qa-generate-e2e-tests/SKILL.md +0 -47
  1092. package/rihal/skills/actions/4-implementation/rihal-qa-generate-e2e-tests/checklist.md +0 -33
  1093. package/rihal/skills/actions/4-implementation/rihal-qa-generate-e2e-tests/workflow.md +0 -136
  1094. package/rihal/skills/actions/4-implementation/rihal-retrospective/SKILL.md +0 -45
  1095. package/rihal/skills/actions/4-implementation/rihal-retrospective/workflow.md +0 -1491
  1096. package/rihal/skills/actions/4-implementation/rihal-scaffold-project/SKILL.md +0 -91
  1097. package/rihal/skills/actions/4-implementation/rihal-scaffold-project/steps/step-03-clone.md +0 -50
  1098. package/rihal/skills/actions/4-implementation/rihal-scaffold-project/steps/step-04-post-setup.md +0 -44
  1099. package/rihal/skills/actions/4-implementation/rihal-source-truth/SKILL.md +0 -79
  1100. package/rihal/skills/actions/4-implementation/rihal-sprint-planning/SKILL.md +0 -63
  1101. package/rihal/skills/actions/4-implementation/rihal-sprint-planning/checklist.md +0 -43
  1102. package/rihal/skills/actions/4-implementation/rihal-sprint-planning/workflow.md +0 -296
  1103. package/rihal/skills/actions/4-implementation/rihal-sprint-status/SKILL.md +0 -44
  1104. package/rihal/skills/actions/4-implementation/rihal-sprint-status/workflow.md +0 -261
  1105. package/rihal/skills/actions/4-implementation/rihal-trim/SKILL.md +0 -76
  1106. package/rihal/skills/agents/ahmed-hassani-director/SKILL.md +0 -150
  1107. package/rihal/skills/agents/dalil-scout/SKILL.md +0 -135
  1108. package/rihal/skills/agents/dalil-scout/references.md +0 -67
  1109. package/rihal/skills/agents/fatima-qa/SKILL.md +0 -158
  1110. package/rihal/skills/agents/fatima-qa/skill-manifest.yaml +0 -11
  1111. package/rihal/skills/agents/haitham-frontend/SKILL.md +0 -151
  1112. package/rihal/skills/agents/hanzla-engineer/SKILL.md +0 -159
  1113. package/rihal/skills/agents/hanzla-engineer/skill-manifest.yaml +0 -11
  1114. package/rihal/skills/agents/hussain-pm/SKILL.md +0 -167
  1115. package/rihal/skills/agents/hussain-pm/skill-manifest.yaml +0 -11
  1116. package/rihal/skills/agents/hussain-sm/SKILL.md +0 -141
  1117. package/rihal/skills/agents/hussain-sm/skill-manifest.yaml +0 -11
  1118. package/rihal/skills/agents/layla-designer/SKILL.md +0 -125
  1119. package/rihal/skills/agents/layla-designer/skill-manifest.yaml +0 -11
  1120. package/rihal/skills/agents/majlis-council/SKILL.md +0 -116
  1121. package/rihal/skills/agents/majlis-council/references.md +0 -90
  1122. package/rihal/skills/agents/mariam-marketing/SKILL.md +0 -182
  1123. package/rihal/skills/agents/nasser-eng-manager/SKILL.md +0 -156
  1124. package/rihal/skills/agents/noor-writer/SKILL.md +0 -134
  1125. package/rihal/skills/agents/noor-writer/skill-manifest.yaml +0 -11
  1126. package/rihal/skills/agents/raees-orchestrator/SKILL.md +0 -122
  1127. package/rihal/skills/agents/raees-orchestrator/references.md +0 -47
  1128. package/rihal/skills/agents/rihal-cross-platform-auditor/SKILL.md +0 -163
  1129. package/rihal/skills/agents/rihal-dep-auditor/SKILL.md +0 -152
  1130. package/rihal/skills/agents/rihal-deviation-analyzer/SKILL.md +0 -79
  1131. package/rihal/skills/agents/rihal-i18n-auditor/SKILL.md +0 -153
  1132. package/rihal/skills/agents/rihal-observability-auditor/SKILL.md +0 -157
  1133. package/rihal/skills/agents/sadiq-analyst/SKILL.md +0 -163
  1134. package/rihal/skills/agents/sadiq-analyst/skill-manifest.yaml +0 -11
  1135. package/rihal/skills/agents/waleed-architect/SKILL.md +0 -154
  1136. package/rihal/skills/agents/waleed-architect/skill-manifest.yaml +0 -11
  1137. package/rihal/skills/agents/yousef-backend/SKILL.md +0 -164
  1138. package/rihal/skills/agents/zahra-branding/SKILL.md +0 -172
  1139. package/rihal/skills/agents/zayd-ml/SKILL.md +0 -155
  1140. package/rihal/skills/core/module-help.csv +0 -11
  1141. package/rihal/skills/core/module.yaml +0 -25
  1142. package/rihal/skills/core/rihal-advanced-elicitation/SKILL.md +0 -69
  1143. package/rihal/skills/core/rihal-auth-audit/SKILL.md +0 -95
  1144. package/rihal/skills/core/rihal-brainstorming/SKILL.md +0 -116
  1145. package/rihal/skills/core/rihal-brainstorming/steps/step-03-technique-execution.md +0 -401
  1146. package/rihal/skills/core/rihal-brainstorming/workflow.md +0 -53
  1147. package/rihal/skills/core/rihal-client-gate/SKILL.md +0 -93
  1148. package/rihal/skills/core/rihal-clone-website/SKILL.md +0 -87
  1149. package/rihal/skills/core/rihal-deploy-unify/SKILL.md +0 -89
  1150. package/rihal/skills/core/rihal-distillator/SKILL.md +0 -65
  1151. package/rihal/skills/core/rihal-distillator/references.md +0 -118
  1152. package/rihal/skills/core/rihal-distillator/resources/distillate-format-reference.md +0 -227
  1153. package/rihal/skills/core/rihal-distillator/scripts/analyze_sources.py +0 -300
  1154. package/rihal/skills/core/rihal-editorial-review-prose/SKILL.md +0 -127
  1155. package/rihal/skills/core/rihal-editorial-review-structure/SKILL.md +0 -75
  1156. package/rihal/skills/core/rihal-editorial-review-structure/references.md +0 -110
  1157. package/rihal/skills/core/rihal-help/SKILL.md +0 -127
  1158. package/rihal/skills/core/rihal-incident-record/SKILL.md +0 -163
  1159. package/rihal/skills/core/rihal-index-docs/SKILL.md +0 -105
  1160. package/rihal/skills/core/rihal-init/SKILL.md +0 -134
  1161. package/rihal/skills/core/rihal-init/resources/core-module.yaml +0 -25
  1162. package/rihal/skills/core/rihal-init/scripts/rihal_init.py +0 -593
  1163. package/rihal/skills/core/rihal-init/scripts/tests/test_rihal_init.py +0 -329
  1164. package/rihal/skills/core/rihal-memory-audit/SKILL.md +0 -107
  1165. package/rihal/skills/core/rihal-memory-distill/SKILL.md +0 -89
  1166. package/rihal/skills/core/rihal-memory-init/SKILL.md +0 -91
  1167. package/rihal/skills/core/rihal-memory-update/SKILL.md +0 -87
  1168. package/rihal/skills/core/rihal-mvp-graduate/SKILL.md +0 -118
  1169. package/rihal/skills/core/rihal-ocr-consistency/SKILL.md +0 -108
  1170. package/rihal/skills/core/rihal-party-mode/SKILL.md +0 -98
  1171. package/rihal/skills/core/rihal-party-mode/steps/step-01-agent-loading.md +0 -138
  1172. package/rihal/skills/core/rihal-party-mode/steps/step-02-discussion-orchestration.md +0 -187
  1173. package/rihal/skills/core/rihal-party-mode/steps/step-03-graceful-exit.md +0 -167
  1174. package/rihal/skills/core/rihal-party-mode/workflow.md +0 -190
  1175. package/rihal/skills/core/rihal-rebrand/SKILL.md +0 -135
  1176. package/rihal/skills/core/rihal-review-adversarial-general/SKILL.md +0 -74
  1177. package/rihal/skills/core/rihal-review-edge-case-hunter/SKILL.md +0 -122
  1178. package/rihal/skills/core/rihal-shard-doc/SKILL.md +0 -144
  1179. package/rihal/skills/core/rihal-theme-system/SKILL.md +0 -115
  1180. package/rihal/state.json +0 -21
  1181. package/rihal/team.yaml +0 -610
  1182. package/rihal/templates/RESEARCH.md +0 -84
  1183. package/rihal/templates/UAT.md +0 -80
  1184. package/rihal/templates/VALIDATION.md +0 -45
  1185. package/rihal/templates/github/bug-template.md +0 -53
  1186. package/rihal/templates/github/epic-template.md +0 -57
  1187. package/rihal/templates/github/feature-template.md +0 -55
  1188. package/rihal/templates/github/task-template.md +0 -52
  1189. package/rihal/templates/memory/INDEX.md +0 -47
  1190. package/rihal/templates/memory/distillates/project.distillate.md +0 -11
  1191. package/rihal/templates/memory/distillates/stack.distillate.md +0 -11
  1192. package/rihal/templates/memory/project/decisions.md +0 -32
  1193. package/rihal/templates/memory/project/design-system.md +0 -128
  1194. package/rihal/templates/memory/project/stack.md +0 -46
  1195. package/rihal/templates/milestone.md +0 -149
  1196. package/rihal/templates/projects/api-backend/PROJECT.md +0 -37
  1197. package/rihal/templates/projects/api-backend/template.yaml +0 -17
  1198. package/rihal/templates/projects/mobile-app/PROJECT.md +0 -37
  1199. package/rihal/templates/projects/mobile-app/template.yaml +0 -17
  1200. package/rihal/templates/projects/saas-b2b/PROJECT.md +0 -40
  1201. package/rihal/templates/projects/saas-b2b/template.yaml +0 -18
  1202. package/rihal/templates/settings-hooks.json +0 -75
  1203. package/rihal/templates/sprint.md +0 -53
  1204. package/rihal/templates/summary.md +0 -77
  1205. package/rihal/templates/verification-report.md +0 -83
  1206. package/rihal/workflows/add-phase.md +0 -183
  1207. package/rihal/workflows/add-tests.md +0 -352
  1208. package/rihal/workflows/add-todo.md +0 -187
  1209. package/rihal/workflows/analyze-dependencies.md +0 -144
  1210. package/rihal/workflows/audit-fix.md +0 -204
  1211. package/rihal/workflows/audit-milestone.md +0 -188
  1212. package/rihal/workflows/audit-plans.md +0 -255
  1213. package/rihal/workflows/audit-uat.md +0 -109
  1214. package/rihal/workflows/audit-worktrees.md +0 -163
  1215. package/rihal/workflows/audit.md +0 -202
  1216. package/rihal/workflows/autonomous-smart-discuss.md +0 -248
  1217. package/rihal/workflows/autonomous.md +0 -931
  1218. package/rihal/workflows/brainstorm.md +0 -203
  1219. package/rihal/workflows/capture.md +0 -60
  1220. package/rihal/workflows/chain.md +0 -188
  1221. package/rihal/workflows/check-implementation-readiness.md +0 -193
  1222. package/rihal/workflows/check-todos.md +0 -181
  1223. package/rihal/workflows/checkpoint-preview.md +0 -7
  1224. package/rihal/workflows/cleanup.md +0 -152
  1225. package/rihal/workflows/code-review-fix.md +0 -534
  1226. package/rihal/workflows/code-review.md +0 -621
  1227. package/rihal/workflows/complete-milestone.md +0 -845
  1228. package/rihal/workflows/correct-course.md +0 -196
  1229. package/rihal/workflows/council.md +0 -582
  1230. package/rihal/workflows/create-architecture.md +0 -31
  1231. package/rihal/workflows/create-epics-and-stories.md +0 -379
  1232. package/rihal/workflows/create-prd.md +0 -25
  1233. package/rihal/workflows/create-story.md +0 -297
  1234. package/rihal/workflows/dashboard.md +0 -133
  1235. package/rihal/workflows/debug.md +0 -272
  1236. package/rihal/workflows/decisions.md +0 -107
  1237. package/rihal/workflows/dev-story.md +0 -437
  1238. package/rihal/workflows/diagnose-issues.md +0 -87
  1239. package/rihal/workflows/diff.md +0 -80
  1240. package/rihal/workflows/discuss-phase-discuss-areas.md +0 -271
  1241. package/rihal/workflows/discuss-phase-power.md +0 -325
  1242. package/rihal/workflows/discuss-phase.md +0 -962
  1243. package/rihal/workflows/discuss.md +0 -227
  1244. package/rihal/workflows/do.md +0 -434
  1245. package/rihal/workflows/docs-update.md +0 -264
  1246. package/rihal/workflows/document-project.md +0 -186
  1247. package/rihal/workflows/edit-prd.md +0 -31
  1248. package/rihal/workflows/enable-hooks.md +0 -107
  1249. package/rihal/workflows/execute-milestone.md +0 -139
  1250. package/rihal/workflows/execute-regression-gates.md +0 -131
  1251. package/rihal/workflows/execute-sprint.md +0 -603
  1252. package/rihal/workflows/execute-verify-phase-goal.md +0 -163
  1253. package/rihal/workflows/execute-waves.md +0 -457
  1254. package/rihal/workflows/execute.md +0 -1051
  1255. package/rihal/workflows/explore.md +0 -171
  1256. package/rihal/workflows/export-to-github.md +0 -174
  1257. package/rihal/workflows/feature-drift.md +0 -243
  1258. package/rihal/workflows/forensics.md +0 -209
  1259. package/rihal/workflows/from-template.md +0 -173
  1260. package/rihal/workflows/health.md +0 -258
  1261. package/rihal/workflows/help.md +0 -343
  1262. package/rihal/workflows/import.md +0 -320
  1263. package/rihal/workflows/inbox.md +0 -418
  1264. package/rihal/workflows/init.md +0 -350
  1265. package/rihal/workflows/insert-phase.md +0 -116
  1266. package/rihal/workflows/install.md +0 -77
  1267. package/rihal/workflows/karpathy-audit.md +0 -402
  1268. package/rihal/workflows/lens-audit.md +0 -705
  1269. package/rihal/workflows/list-plans.md +0 -146
  1270. package/rihal/workflows/list-workspaces.md +0 -115
  1271. package/rihal/workflows/map-codebase.md +0 -455
  1272. package/rihal/workflows/memory-audit.md +0 -145
  1273. package/rihal/workflows/memory-distill.md +0 -113
  1274. package/rihal/workflows/memory-init.md +0 -106
  1275. package/rihal/workflows/memory-update.md +0 -87
  1276. package/rihal/workflows/milestone-summary.md +0 -206
  1277. package/rihal/workflows/new-milestone.md +0 -639
  1278. package/rihal/workflows/new-project-create-roadmap.md +0 -176
  1279. package/rihal/workflows/new-project-define-requirements.md +0 -160
  1280. package/rihal/workflows/new-project-research-decision.md +0 -247
  1281. package/rihal/workflows/new-project-research.md +0 -314
  1282. package/rihal/workflows/new-project-roadmap.md +0 -446
  1283. package/rihal/workflows/new-project.md +0 -992
  1284. package/rihal/workflows/new-workspace.md +0 -167
  1285. package/rihal/workflows/next.md +0 -162
  1286. package/rihal/workflows/note.md +0 -156
  1287. package/rihal/workflows/notify-test.md +0 -113
  1288. package/rihal/workflows/pause-work.md +0 -249
  1289. package/rihal/workflows/phase.md +0 -89
  1290. package/rihal/workflows/plan-milestone-gaps.md +0 -273
  1291. package/rihal/workflows/plan-milestone.md +0 -105
  1292. package/rihal/workflows/plan-prd-express.md +0 -108
  1293. package/rihal/workflows/plan-research-validation.md +0 -313
  1294. package/rihal/workflows/plan-spawn-planner.md +0 -257
  1295. package/rihal/workflows/plan.md +0 -983
  1296. package/rihal/workflows/plant-seed.md +0 -175
  1297. package/rihal/workflows/pr-branch.md +0 -129
  1298. package/rihal/workflows/prfaq.md +0 -7
  1299. package/rihal/workflows/profile-user.md +0 -162
  1300. package/rihal/workflows/progress.md +0 -46
  1301. package/rihal/workflows/quick.md +0 -208
  1302. package/rihal/workflows/remove-phase.md +0 -160
  1303. package/rihal/workflows/remove-workspace.md +0 -164
  1304. package/rihal/workflows/replay.md +0 -160
  1305. package/rihal/workflows/rerun.md +0 -77
  1306. package/rihal/workflows/research-phase.md +0 -108
  1307. package/rihal/workflows/resume-work.md +0 -331
  1308. package/rihal/workflows/retrospective.md +0 -31
  1309. package/rihal/workflows/review-adversarial.md +0 -194
  1310. package/rihal/workflows/review-edge-case-hunter.md +0 -214
  1311. package/rihal/workflows/review.md +0 -287
  1312. package/rihal/workflows/scaffold-milestone.md +0 -60
  1313. package/rihal/workflows/scaffold-project.md +0 -31
  1314. package/rihal/workflows/scaffold-skill.md +0 -137
  1315. package/rihal/workflows/scan.md +0 -382
  1316. package/rihal/workflows/secure-phase.md +0 -209
  1317. package/rihal/workflows/session-report.md +0 -252
  1318. package/rihal/workflows/settings.md +0 -184
  1319. package/rihal/workflows/ship.md +0 -274
  1320. package/rihal/workflows/show.md +0 -69
  1321. package/rihal/workflows/sprint-planning.md +0 -198
  1322. package/rihal/workflows/sprint-status.md +0 -124
  1323. package/rihal/workflows/stats.md +0 -141
  1324. package/rihal/workflows/status.md +0 -148
  1325. package/rihal/workflows/ui-phase.md +0 -148
  1326. package/rihal/workflows/ui-review.md +0 -134
  1327. package/rihal/workflows/undo.md +0 -425
  1328. package/rihal/workflows/update.md +0 -243
  1329. package/rihal/workflows/validate-phase.md +0 -181
  1330. package/rihal/workflows/validate-prd.md +0 -31
  1331. package/rihal/workflows/verify-phase.md +0 -409
  1332. package/rihal/workflows/verify-work.md +0 -731
  1333. package/rihal/workflows/why.md +0 -130
  1334. package/rihal/workflows/workstream.md +0 -209
  1335. /package/{rihal → rcode}/agents/rules/debugger/hypothesis-templates.md +0 -0
  1336. /package/{rihal → rcode}/agents/rules/planner/common-patterns.md +0 -0
  1337. /package/{rihal → rcode}/agents/rules/planner/dependency-analysis.md +0 -0
  1338. /package/{rihal → rcode}/agents/rules/planner/sprint-verification.md +0 -0
  1339. /package/{rihal → rcode}/agents/rules/verifier/behavioral-spot-checks.md +0 -0
  1340. /package/{rihal → rcode}/agents/rules/verifier/data-flow-trace.md +0 -0
  1341. /package/{rihal → rcode}/bin/lib/code-references.cjs +0 -0
  1342. /package/{rihal → rcode}/bin/lib/verify.cjs +0 -0
  1343. /package/{rihal → rcode}/references/brain-methods.csv +0 -0
  1344. /package/{rihal → rcode}/references/checklist-architect.md +0 -0
  1345. /package/{rihal → rcode}/references/checklist-change.md +0 -0
  1346. /package/{rihal → rcode}/references/checklist-pm.md +0 -0
  1347. /package/{rihal → rcode}/references/checklist-po-master.md +0 -0
  1348. /package/{rihal → rcode}/references/checklist-story-dod.md +0 -0
  1349. /package/{rihal → rcode}/references/checklist-story-draft.md +0 -0
  1350. /package/{rihal → rcode}/references/checkpoints.md +0 -0
  1351. /package/{rihal → rcode}/references/codebase-grounding.md +0 -0
  1352. /package/{rihal → rcode}/references/common-bug-patterns.md +0 -0
  1353. /package/{rihal → rcode}/references/domain-probes.md +0 -0
  1354. /package/{rihal → rcode}/references/elicitation-methods.csv +0 -0
  1355. /package/{rihal → rcode}/references/project-types.yaml +0 -0
  1356. /package/{rihal → rcode}/references/questioning.md +0 -0
  1357. /package/{rihal → rcode}/references/tdd.md +0 -0
  1358. /package/{rihal → rcode}/references/thinking-models-debug.md +0 -0
  1359. /package/{rihal → rcode}/references/thinking-models-planning.md +0 -0
  1360. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/checklist.md +0 -0
  1361. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/documentation-requirements.csv +0 -0
  1362. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/instructions.md +0 -0
  1363. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/templates/deep-dive-template.md +0 -0
  1364. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/templates/project-scan-report-schema.json +0 -0
  1365. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/workflows/deep-dive-instructions.md +0 -0
  1366. /package/{rihal/skills/actions/1-analysis/rihal-document-project → rcode/skills/actions/1-analysis/rcode-document-project}/workflows/full-scan-instructions.md +0 -0
  1367. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/agents/artifact-analyzer.md +0 -0
  1368. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/agents/web-researcher.md +0 -0
  1369. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/assets/prfaq-template.md +0 -0
  1370. /package/{rihal/skills/actions/1-analysis/rihal-prfaq/rihal-manifest.json → rcode/skills/actions/1-analysis/rcode-prfaq/rcode-manifest.json} +0 -0
  1371. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/references/customer-faq.md +0 -0
  1372. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/references/internal-faq.md +0 -0
  1373. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/references/press-release.md +0 -0
  1374. /package/{rihal/skills/actions/1-analysis/rihal-prfaq → rcode/skills/actions/1-analysis/rcode-prfaq}/references/verdict.md +0 -0
  1375. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/agents/artifact-analyzer.md +0 -0
  1376. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/agents/opportunity-reviewer.md +0 -0
  1377. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/agents/skeptic-reviewer.md +0 -0
  1378. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/agents/web-researcher.md +0 -0
  1379. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/prompts/contextual-discovery.md +0 -0
  1380. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/prompts/draft-and-review.md +0 -0
  1381. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/prompts/finalize.md +0 -0
  1382. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/prompts/guided-elicitation.md +0 -0
  1383. /package/{rihal/skills/actions/1-analysis/rihal-product-brief → rcode/skills/actions/1-analysis/rcode-product-brief}/resources/brief-template.md +0 -0
  1384. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-01-init.md +0 -0
  1385. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-02-domain-analysis.md +0 -0
  1386. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-03-competitive-landscape.md +0 -0
  1387. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-04-regulatory-focus.md +0 -0
  1388. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-05-technical-trends.md +0 -0
  1389. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/domain-steps/step-06-research-synthesis.md +0 -0
  1390. /package/{rihal/skills/actions/1-analysis/research/rihal-domain-research → rcode/skills/actions/1-analysis/research/rcode-domain-research}/research.template.md +0 -0
  1391. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/research.template.md +0 -0
  1392. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-01-init.md +0 -0
  1393. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-02-customer-behavior.md +0 -0
  1394. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-03-customer-pain-points.md +0 -0
  1395. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-04-customer-decisions.md +0 -0
  1396. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-05-competitive-analysis.md +0 -0
  1397. /package/{rihal/skills/actions/1-analysis/research/rihal-market-research → rcode/skills/actions/1-analysis/research/rcode-market-research}/steps/step-06-research-completion.md +0 -0
  1398. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/research.template.md +0 -0
  1399. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-01-init.md +0 -0
  1400. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-02-technical-overview.md +0 -0
  1401. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-03-integration-patterns.md +0 -0
  1402. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-04-architectural-patterns.md +0 -0
  1403. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-05-implementation-research.md +0 -0
  1404. /package/{rihal/skills/actions/1-analysis/research/rihal-technical-research → rcode/skills/actions/1-analysis/research/rcode-technical-research}/technical-steps/step-06-research-synthesis.md +0 -0
  1405. /package/{rihal/skills/actions/2-plan/rihal-create-epics-and-stories → rcode/skills/actions/2-plan/rcode-create-epics-and-stories}/steps/step-01-validate-prerequisites.md +0 -0
  1406. /package/{rihal/skills/actions/2-plan/rihal-create-epics-and-stories → rcode/skills/actions/2-plan/rcode-create-epics-and-stories}/templates/epics-template.md +0 -0
  1407. /package/{rihal/skills/actions/2-plan/rihal-create-milestone → rcode/skills/actions/2-plan/rcode-create-milestone}/steps/step-01-init.md +0 -0
  1408. /package/{rihal/skills/actions/2-plan/rihal-create-milestone → rcode/skills/actions/2-plan/rcode-create-milestone}/steps/step-02-outcomes.md +0 -0
  1409. /package/{rihal/skills/actions/2-plan/rihal-create-milestone → rcode/skills/actions/2-plan/rcode-create-milestone}/steps/step-04-windows.md +0 -0
  1410. /package/{rihal/skills/actions/2-plan/rihal-create-prd → rcode/skills/actions/2-plan/rcode-create-prd}/data/domain-complexity.csv +0 -0
  1411. /package/{rihal/skills/actions/2-plan/rihal-create-prd → rcode/skills/actions/2-plan/rcode-create-prd}/steps-c/step-01-init.md +0 -0
  1412. /package/{rihal/skills/actions/2-plan/rihal-create-prd → rcode/skills/actions/2-plan/rcode-create-prd}/steps-c/step-01b-continue.md +0 -0
  1413. /package/{rihal/skills/actions/2-plan/rihal-create-prd → rcode/skills/actions/2-plan/rcode-create-prd}/templates/prd-template.md +0 -0
  1414. /package/{rihal/skills/actions/2-plan/rihal-create-story → rcode/skills/actions/2-plan/rcode-create-story}/checklist.md +0 -0
  1415. /package/{rihal/skills/actions/2-plan/rihal-create-story → rcode/skills/actions/2-plan/rcode-create-story}/discover-inputs.md +0 -0
  1416. /package/{rihal/skills/actions/2-plan/rihal-create-story → rcode/skills/actions/2-plan/rcode-create-story}/template.md +0 -0
  1417. /package/{rihal/skills/actions/2-plan/rihal-create-ux-design → rcode/skills/actions/2-plan/rcode-create-ux-design}/steps/step-01-init.md +0 -0
  1418. /package/{rihal/skills/actions/2-plan/rihal-create-ux-design → rcode/skills/actions/2-plan/rcode-create-ux-design}/steps/step-01b-continue.md +0 -0
  1419. /package/{rihal/skills/actions/2-plan/rihal-create-ux-design → rcode/skills/actions/2-plan/rcode-create-ux-design}/ux-design-template.md +0 -0
  1420. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/data/domain-complexity.csv +0 -0
  1421. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-04-brief-coverage-validation.md +0 -0
  1422. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-05-measurability-validation.md +0 -0
  1423. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-06-traceability-validation.md +0 -0
  1424. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-07-implementation-leakage-validation.md +0 -0
  1425. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-08-domain-compliance-validation.md +0 -0
  1426. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-09-project-type-validation.md +0 -0
  1427. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-10-smart-validation.md +0 -0
  1428. /package/{rihal/skills/actions/2-plan/rihal-validate-prd → rcode/skills/actions/2-plan/rcode-validate-prd}/steps-v/step-v-12-completeness-validation.md +0 -0
  1429. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/steps/step-01-document-discovery.md +0 -0
  1430. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/steps/step-02-prd-analysis.md +0 -0
  1431. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/steps/step-03-epic-coverage-validation.md +0 -0
  1432. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/steps/step-04-ux-alignment.md +0 -0
  1433. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/steps/step-05-epic-quality-review.md +0 -0
  1434. /package/{rihal/skills/actions/3-solutioning/rihal-check-implementation-readiness → rcode/skills/actions/3-solutioning/rcode-check-implementation-readiness}/templates/readiness-report-template.md +0 -0
  1435. /package/{rihal/skills/actions/3-solutioning/rihal-create-architecture → rcode/skills/actions/3-solutioning/rcode-create-architecture}/architecture-decision-template.md +0 -0
  1436. /package/{rihal/skills/actions/3-solutioning/rihal-create-architecture → rcode/skills/actions/3-solutioning/rcode-create-architecture}/data/domain-complexity.csv +0 -0
  1437. /package/{rihal/skills/actions/3-solutioning/rihal-create-architecture → rcode/skills/actions/3-solutioning/rcode-create-architecture}/data/project-types.csv +0 -0
  1438. /package/{rihal/skills/actions/3-solutioning/rihal-create-architecture → rcode/skills/actions/3-solutioning/rcode-create-architecture}/steps/step-01-init.md +0 -0
  1439. /package/{rihal/skills/actions/3-solutioning/rihal-create-architecture → rcode/skills/actions/3-solutioning/rcode-create-architecture}/steps/step-01b-continue.md +0 -0
  1440. /package/{rihal/skills/actions/3-solutioning/rihal-generate-project-context → rcode/skills/actions/3-solutioning/rcode-generate-project-context}/project-context-template.md +0 -0
  1441. /package/{rihal/skills/actions/3-solutioning/rihal-generate-project-context → rcode/skills/actions/3-solutioning/rcode-generate-project-context}/steps/step-01-discover.md +0 -0
  1442. /package/{rihal/skills/actions/3-solutioning/rihal-generate-project-context → rcode/skills/actions/3-solutioning/rcode-generate-project-context}/steps/step-03-complete.md +0 -0
  1443. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/generate-trail.md +0 -0
  1444. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/step-01-orientation.md +0 -0
  1445. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/step-02-walkthrough.md +0 -0
  1446. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/step-03-detail-pass.md +0 -0
  1447. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/step-04-testing.md +0 -0
  1448. /package/{rihal/skills/actions/4-implementation/rihal-checkpoint-preview → rcode/skills/actions/4-implementation/rcode-checkpoint-preview}/step-05-wrapup.md +0 -0
  1449. /package/{rihal/skills/actions/4-implementation/rihal-code-review → rcode/skills/actions/4-implementation/rcode-code-review}/steps/step-01-gather-context.md +0 -0
  1450. /package/{rihal/skills/actions/4-implementation/rihal-code-review → rcode/skills/actions/4-implementation/rcode-code-review}/steps/step-03-triage.md +0 -0
  1451. /package/{rihal/skills/actions/4-implementation/rihal-code-review → rcode/skills/actions/4-implementation/rcode-code-review}/steps/step-04-present.md +0 -0
  1452. /package/{rihal/skills/actions/4-implementation/rihal-correct-course → rcode/skills/actions/4-implementation/rcode-correct-course}/checklist.md +0 -0
  1453. /package/{rihal/skills/actions/4-implementation/rihal-dev-story → rcode/skills/actions/4-implementation/rcode-dev-story}/checklist.md +0 -0
  1454. /package/{rihal/skills/actions/4-implementation/rihal-scaffold-project → rcode/skills/actions/4-implementation/rcode-scaffold-project}/steps/step-01-target.md +0 -0
  1455. /package/{rihal/skills/actions/4-implementation/rihal-scaffold-project → rcode/skills/actions/4-implementation/rcode-scaffold-project}/steps/step-02-safety.md +0 -0
  1456. /package/{rihal/skills/actions/4-implementation/rihal-sprint-planning → rcode/skills/actions/4-implementation/rcode-sprint-planning}/sprint-status-template.yaml +0 -0
  1457. /package/{rihal → rcode}/skills/agents/noor-writer/explain-concept.md +0 -0
  1458. /package/{rihal → rcode}/skills/agents/noor-writer/mermaid-gen.md +0 -0
  1459. /package/{rihal → rcode}/skills/agents/noor-writer/validate-doc.md +0 -0
  1460. /package/{rihal → rcode}/skills/agents/noor-writer/write-document.md +0 -0
  1461. /package/{rihal/skills/core/rihal-advanced-elicitation → rcode/skills/core/rcode-advanced-elicitation}/methods.csv +0 -0
  1462. /package/{rihal/skills/core/rihal-advanced-elicitation → rcode/skills/core/rcode-advanced-elicitation}/references.md +0 -0
  1463. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/brain-methods.csv +0 -0
  1464. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-01-session-setup.md +0 -0
  1465. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-01b-continue.md +0 -0
  1466. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-02a-user-selected.md +0 -0
  1467. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-02b-ai-recommended.md +0 -0
  1468. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-02c-random-selection.md +0 -0
  1469. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-02d-progressive-flow.md +0 -0
  1470. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/steps/step-04-idea-organization.md +0 -0
  1471. /package/{rihal/skills/core/rihal-brainstorming → rcode/skills/core/rcode-brainstorming}/template.md +0 -0
  1472. /package/{rihal/skills/core/rihal-clone-website → rcode/skills/core/rcode-clone-website}/references.md +0 -0
  1473. /package/{rihal/skills/core/rihal-distillator → rcode/skills/core/rcode-distillator}/agents/distillate-compressor.md +0 -0
  1474. /package/{rihal/skills/core/rihal-distillator → rcode/skills/core/rcode-distillator}/agents/round-trip-reconstructor.md +0 -0
  1475. /package/{rihal/skills/core/rihal-distillator → rcode/skills/core/rcode-distillator}/resources/compression-rules.md +0 -0
  1476. /package/{rihal/skills/core/rihal-distillator → rcode/skills/core/rcode-distillator}/resources/splitting-strategy.md +0 -0
  1477. /package/{rihal/skills/core/rihal-distillator → rcode/skills/core/rcode-distillator}/scripts/tests/test_analyze_sources.py +0 -0
  1478. /package/{rihal → rcode}/templates/UI-SPEC.md +0 -0
  1479. /package/{rihal → rcode}/templates/documentation-requirements.csv +0 -0
  1480. /package/{rihal → rcode}/templates/memory/change-records/.gitkeep +0 -0
  1481. /package/{rihal → rcode}/templates/memory/incidents/known-issues.md +0 -0
  1482. /package/{rihal → rcode}/templates/memory/incidents/post-mortems/.gitkeep +0 -0
  1483. /package/{rihal → rcode}/templates/memory/milestones/archive/.gitkeep +0 -0
  1484. /package/{rihal → rcode}/templates/memory/milestones/current.md +0 -0
  1485. /package/{rihal → rcode}/templates/memory/people/stakeholders.md +0 -0
  1486. /package/{rihal → rcode}/templates/memory/people/team.md +0 -0
  1487. /package/{rihal → rcode}/templates/memory/project/glossary.md +0 -0
  1488. /package/{rihal → rcode}/templates/projects/api-backend/REQUIREMENTS.md +0 -0
  1489. /package/{rihal → rcode}/templates/projects/api-backend/ROADMAP.md +0 -0
  1490. /package/{rihal → rcode}/templates/projects/mobile-app/REQUIREMENTS.md +0 -0
  1491. /package/{rihal → rcode}/templates/projects/mobile-app/ROADMAP.md +0 -0
  1492. /package/{rihal → rcode}/templates/projects/saas-b2b/REQUIREMENTS.md +0 -0
  1493. /package/{rihal → rcode}/templates/projects/saas-b2b/ROADMAP.md +0 -0
@@ -0,0 +1,1491 @@
1
+ # Retrospective Workflow
2
+
3
+ **Goal:** Post-epic review to extract lessons and assess success.
4
+
5
+ **Your Role:** Scrum Master facilitating retrospective.
6
+
7
+ ## State-sync rule (NO EXCEPTIONS)
8
+
9
+ After this workflow writes any `.planning/` artifact (ROADMAP.md, epics.md, sprint-*.md, SUMMARY.md, etc.) or updates phase/story status:
10
+
11
+ ```bash
12
+ node .rcode/bin/rcode-tools.cjs state sync --from-disk
13
+ ```
14
+
15
+ This keeps `.rcode/state.json` in sync with disk — `/rcode-progress`, `/rcode-status`, and `/rcode-execute` all read state.json. Skipping the sync silently drifts them. See `../../_shared/state-sync-rule.md`.
16
+
17
+ ---
18
+ - No time estimates — NEVER mention hours, days, weeks, months, or ANY time-based predictions. AI has fundamentally changed development speed.
19
+ - Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}
20
+ - Generate all documents in {document_output_language}
21
+ - Document output: Retrospective analysis. Concise insights, lessons learned, action items. User skill level ({user_skill_level}) affects conversation style ONLY, not retrospective content.
22
+ - Facilitation notes:
23
+ - Psychological safety is paramount - NO BLAME
24
+ - Focus on systems, processes, and learning
25
+ - Everyone contributes with specific examples preferred
26
+ - Action items must be achievable with clear ownership
27
+ - Two-part format: (1) Epic Review + (2) Next Epic Preparation
28
+ - Party mode protocol:
29
+ - ALL agent dialogue MUST use format: "Name (Role): dialogue"
30
+ - Example: Bob (Scrum Master): "Let's begin..."
31
+ - Example: {user_name} (Project Lead): [User responds]
32
+ - Create natural back-and-forth with user actively participating
33
+ - Show disagreements, diverse perspectives, authentic team dynamics
34
+
35
+ ---
36
+
37
+ ## INITIALIZATION
38
+
39
+ ### Configuration Loading
40
+
41
+ Load config from `{project-root}/.rcode/config.json` and resolve:
42
+
43
+ - `project_name`, `user_name`
44
+ - `communication_language`, `document_output_language`
45
+ - `user_skill_level`
46
+ - `planning_artifacts`, `implementation_artifacts`
47
+ - `date` as system-generated current datetime
48
+ - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
49
+
50
+ ### Paths
51
+
52
+ - `sprint_status_file` = `{implementation_artifacts}/sprint-status.yaml`
53
+
54
+ ### Input Files
55
+
56
+ | Input | Description | Path Pattern(s) | Load Strategy |
57
+ |-------|-------------|------------------|---------------|
58
+ | epics | The completed epic for retrospective | whole: `{planning_artifacts}/*epic*.md`, sharded_index: `{planning_artifacts}/*epic*/index.md`, sharded_single: `{planning_artifacts}/*epic*/epic-{{epic_num}}.md` | SELECTIVE_LOAD |
59
+ | previous_retrospective | Previous epic's retrospective (optional) | `{implementation_artifacts}/**/epic-{{prev_epic_num}}-retro-*.md` | SELECTIVE_LOAD |
60
+ | architecture | System architecture for context | whole: `{planning_artifacts}/*architecture*.md`, sharded: `{planning_artifacts}/*architecture*/*.md` | FULL_LOAD |
61
+ | prd | Product requirements for context | whole: `{planning_artifacts}/*prd*.md`, sharded: `{planning_artifacts}/*prd*/*.md` | FULL_LOAD |
62
+ | document_project | Brownfield project documentation (optional) | sharded: `{planning_artifacts}/*.md` | INDEX_GUIDED |
63
+
64
+ ### Required Inputs
65
+
66
+ - `agent_manifest` = `{project-root}/.rcode/team.yaml`
67
+
68
+ ### Context
69
+
70
+ - `project_context` = `**/project-context.md` (load if exists)
71
+
72
+ ---
73
+
74
+ ## EXECUTION
75
+
76
+ <workflow>
77
+
78
+ <step n="1" goal="Epic Discovery - Find Completed Epic with Priority Logic">
79
+
80
+ <action>Load {project_context} for project-wide patterns and conventions (if exists)</action>
81
+ <action>Explain to {user_name} the epic discovery process using natural dialogue</action>
82
+
83
+ <output>
84
+ Bob (Scrum Master): "Welcome to the retrospective, {user_name}. Let me help you identify which epic we just completed. I'll check sprint-status first, but you're the ultimate authority on what we're reviewing today."
85
+ </output>
86
+
87
+ <action>PRIORITY 1: Check {sprint_status_file} first</action>
88
+
89
+ <action>Load the FULL file: {sprint_status_file}</action>
90
+ <action>Read ALL development_status entries</action>
91
+ <action>Find the highest epic number with at least one story marked "done"</action>
92
+ <action>Extract epic number from keys like "epic-X-retrospective" or story keys like "X-Y-story-name"</action>
93
+ <action>Set {{detected_epic}} = highest epic number found with completed stories</action>
94
+
95
+ <check if="{{detected_epic}} found">
96
+ <action>Present finding to user with context</action>
97
+
98
+ <output>
99
+ Bob (Scrum Master): "Based on {sprint_status_file}, it looks like Epic {{detected_epic}} was recently completed. Is that the epic you want to review today, {user_name}?"
100
+ </output>
101
+
102
+ <action>WAIT for {user_name} to confirm or correct</action>
103
+
104
+ <check if="{user_name} confirms">
105
+ <action>Set {{epic_number}} = {{detected_epic}}</action>
106
+ </check>
107
+
108
+ <check if="{user_name} provides different epic number">
109
+ <action>Set {{epic_number}} = user-provided number</action>
110
+ <output>
111
+ Bob (Scrum Master): "Got it, we're reviewing Epic {{epic_number}}. Let me gather that information."
112
+ </output>
113
+ </check>
114
+ </check>
115
+
116
+ <check if="{{detected_epic}} NOT found in sprint-status">
117
+ <action>PRIORITY 2: Ask user directly</action>
118
+
119
+ <output>
120
+ Bob (Scrum Master): "I'm having trouble detecting the completed epic from {sprint_status_file}. {user_name}, which epic number did you just complete?"
121
+ </output>
122
+
123
+ <action>WAIT for {user_name} to provide epic number</action>
124
+ <action>Set {{epic_number}} = user-provided number</action>
125
+ </check>
126
+
127
+ <check if="{{epic_number}} still not determined">
128
+ <action>PRIORITY 3: Fallback to stories folder</action>
129
+
130
+ <action>Scan {implementation_artifacts} for highest numbered story files</action>
131
+ <action>Extract epic numbers from story filenames (pattern: epic-X-Y-story-name.md)</action>
132
+ <action>Set {{detected_epic}} = highest epic number found</action>
133
+
134
+ <output>
135
+ Bob (Scrum Master): "I found stories for Epic {{detected_epic}} in the stories folder. Is that the epic we're reviewing, {user_name}?"
136
+ </output>
137
+
138
+ <action>WAIT for {user_name} to confirm or correct</action>
139
+ <action>Set {{epic_number}} = confirmed number</action>
140
+ </check>
141
+
142
+ <action>Once {{epic_number}} is determined, verify epic completion status</action>
143
+
144
+ <action>Find all stories for epic {{epic_number}} in {sprint_status_file}:
145
+
146
+ - Look for keys starting with "{{epic_number}}-" (e.g., "1-1-", "1-2-", etc.)
147
+ - Exclude epic key itself ("epic-{{epic_number}}")
148
+ - Exclude retrospective key ("epic-{{epic_number}}-retrospective")
149
+ </action>
150
+
151
+ <action>Count total stories found for this epic</action>
152
+ <action>Count stories with status = "done"</action>
153
+ <action>Collect list of pending story keys (status != "done")</action>
154
+ <action>Determine if complete: true if all stories are done, false otherwise</action>
155
+
156
+ <check if="epic is not complete">
157
+ <output>
158
+ Alice (Product Owner): "Wait, Bob - I'm seeing that Epic {{epic_number}} isn't actually complete yet."
159
+
160
+ Bob (Scrum Master): "Let me check... you're right, Alice."
161
+
162
+ **Epic Status:**
163
+
164
+ - Total Stories: {{total_stories}}
165
+ - Completed (Done): {{done_stories}}
166
+ - Pending: {{pending_count}}
167
+
168
+ **Pending Stories:**
169
+ {{pending_story_list}}
170
+
171
+ Bob (Scrum Master): "{user_name}, we typically run retrospectives after all stories are done. What would you like to do?"
172
+
173
+ **Options:**
174
+
175
+ 1. Complete remaining stories before running retrospective (recommended)
176
+ 2. Continue with partial retrospective (not ideal, but possible)
177
+ 3. Run sprint-planning to refresh story tracking
178
+ </output>
179
+
180
+ <ask if="{{non_interactive}} == false">Continue with incomplete epic? (yes/no)</ask>
181
+
182
+ <check if="user says no">
183
+ <output>
184
+ Bob (Scrum Master): "Smart call, {user_name}. Let's finish those stories first and then have a proper retrospective."
185
+ </output>
186
+ <action>HALT</action>
187
+ </check>
188
+
189
+ <action if="user says yes">Set {{partial_retrospective}} = true</action>
190
+ <output>
191
+ Charlie (Senior Dev): "Just so everyone knows, this partial retro might miss some important lessons from those pending stories."
192
+
193
+ Bob (Scrum Master): "Good point, Charlie. {user_name}, we'll document what we can now, but we may want to revisit after everything's done."
194
+ </output>
195
+ </check>
196
+
197
+ <check if="epic is complete">
198
+ <output>
199
+ Alice (Product Owner): "Excellent! All {{done_stories}} stories are marked done."
200
+
201
+ Bob (Scrum Master): "Perfect. Epic {{epic_number}} is complete and ready for retrospective, {user_name}."
202
+ </output>
203
+ </check>
204
+
205
+ </step>
206
+
207
+ <step n="0.5" goal="Discover and load project documents">
208
+ <action>Load input files according to the Input Files table in INITIALIZATION. For SELECTIVE_LOAD inputs, load only the epic matching {{epic_number}}. For FULL_LOAD inputs, load the complete document. For INDEX_GUIDED inputs, check the index first and load relevant sections. After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</action>
209
+ <note>After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</note>
210
+ </step>
211
+
212
+ <step n="2" goal="Deep Story Analysis - Extract Lessons from Implementation">
213
+
214
+ <output>
215
+ Bob (Scrum Master): "Before we start the team discussion, let me review all the story records to surface key themes. This'll help us have a richer conversation."
216
+
217
+ Charlie (Senior Dev): "Good idea - those dev notes always have gold in them."
218
+ </output>
219
+
220
+ <action>For each story in epic {{epic_number}}, read the complete story file from {implementation_artifacts}/{{epic_number}}-{{story_num}}-*.md</action>
221
+
222
+ <action>Extract and analyze from each story:</action>
223
+
224
+ **Dev Notes and Struggles:**
225
+
226
+ - Look for sections like "## Dev Notes", "## Implementation Notes", "## Challenges", "## Development Log"
227
+ - Identify where developers struggled or made mistakes
228
+ - Note unexpected complexity or gotchas discovered
229
+ - Record technical decisions that didn't work out as planned
230
+ - Track where estimates were way off (too high or too low)
231
+
232
+ **Review Feedback Patterns:**
233
+
234
+ - Look for "## Review", "## Code Review", "## SM Review", "## Scrum Master Review" sections
235
+ - Identify recurring feedback themes across stories
236
+ - Note which types of issues came up repeatedly
237
+ - Track quality concerns or architectural misalignments
238
+ - Document praise or exemplary work called out in reviews
239
+
240
+ **Lessons Learned:**
241
+
242
+ - Look for "## Lessons Learned", "## Retrospective Notes", "## Takeaways" sections within stories
243
+ - Extract explicit lessons documented during development
244
+ - Identify "aha moments" or breakthroughs
245
+ - Note what would be done differently
246
+ - Track successful experiments or approaches
247
+
248
+ **Technical Debt Incurred:**
249
+
250
+ - Look for "## Technical Debt", "## TODO", "## Known Issues", "## Future Work" sections
251
+ - Document shortcuts taken and why
252
+ - Track debt items that affect next epic
253
+ - Note severity and priority of debt items
254
+
255
+ **Testing and Quality Insights:**
256
+
257
+ - Look for "## Testing", "## QA Notes", "## Test Results" sections
258
+ - Note testing challenges or surprises
259
+ - Track bug patterns or regression issues
260
+ - Document test coverage gaps
261
+
262
+ <action>Synthesize patterns across all stories:</action>
263
+
264
+ **Common Struggles:**
265
+
266
+ - Identify issues that appeared in 2+ stories (e.g., "3 out of 5 stories had API authentication issues")
267
+ - Note areas where team consistently struggled
268
+ - Track where complexity was underestimated
269
+
270
+ **Recurring Review Feedback:**
271
+
272
+ - Identify feedback themes (e.g., "Error handling was flagged in every review")
273
+ - Note quality patterns (positive and negative)
274
+ - Track areas where team improved over the course of epic
275
+
276
+ **Breakthrough Moments:**
277
+
278
+ - Document key discoveries (e.g., "Story 3 discovered the caching pattern we used for rest of epic")
279
+ - Note when team velocity improved dramatically
280
+ - Track innovative solutions worth repeating
281
+
282
+ **Velocity Patterns:**
283
+
284
+ - Calculate average completion time per story
285
+ - Note velocity trends (e.g., "First 2 stories took 3x longer than estimated")
286
+ - Identify which types of stories went faster/slower
287
+
288
+ **Team Collaboration Highlights:**
289
+
290
+ - Note moments of excellent collaboration mentioned in stories
291
+ - Track where pair programming or mob programming was effective
292
+ - Document effective problem-solving sessions
293
+
294
+ <action>Store this synthesis - these patterns will drive the retrospective discussion</action>
295
+
296
+ <output>
297
+ Bob (Scrum Master): "Okay, I've reviewed all {{total_stories}} story records. I found some really interesting patterns we should discuss."
298
+
299
+ Dana (QA Engineer): "I'm curious what you found, Bob. I noticed some things in my testing too."
300
+
301
+ Bob (Scrum Master): "We'll get to all of it. But first, let me load the previous epic's retro to see if we learned from last time."
302
+ </output>
303
+
304
+ </step>
305
+
306
+ <step n="3" goal="Load and Integrate Previous Epic Retrospective">
307
+
308
+ <action>Calculate previous epic number: {{prev_epic_num}} = {{epic_number}} - 1</action>
309
+
310
+ <check if="{{prev_epic_num}} >= 1">
311
+ <action>Search for previous retrospectives using pattern: {implementation_artifacts}/epic-{{prev_epic_num}}-retro-*.md</action>
312
+
313
+ <check if="previous retrospectives found">
314
+ <output>
315
+ Bob (Scrum Master): "I found our retrospectives from Epic {{prev_epic_num}}. Let me see what we committed to back then..."
316
+ </output>
317
+
318
+ <action>Read the previous retrospectives</action>
319
+
320
+ <action>Extract key elements:</action>
321
+ - **Action items committed**: What did the team agree to improve?
322
+ - **Lessons learned**: What insights were captured?
323
+ - **Process improvements**: What changes were agreed upon?
324
+ - **Technical debt flagged**: What debt was documented?
325
+ - **Team agreements**: What commitments were made?
326
+ - **Preparation tasks**: What was needed for this epic?
327
+
328
+ <action>Cross-reference with current epic execution:</action>
329
+
330
+ **Action Item Follow-Through:**
331
+ - For each action item from Epic {{prev_epic_num}} retro, check if it was completed
332
+ - Look for evidence in current epic's story records
333
+ - Mark each action item: ✅ Completed, ⏳ In Progress, ❌ Not Addressed
334
+
335
+ **Lessons Applied:**
336
+ - For each lesson from Epic {{prev_epic_num}}, check if team applied it in Epic {{epic_number}}
337
+ - Look for evidence in dev notes, review feedback, or outcomes
338
+ - Document successes and missed opportunities
339
+
340
+ **Process Improvements Effectiveness:**
341
+ - For each process change agreed to in Epic {{prev_epic_num}}, assess if it helped
342
+ - Did the change improve velocity, quality, or team satisfaction?
343
+ - Should we keep, modify, or abandon the change?
344
+
345
+ **Technical Debt Status:**
346
+ - For each debt item from Epic {{prev_epic_num}}, check if it was addressed
347
+ - Did unaddressed debt cause problems in Epic {{epic_number}}?
348
+ - Did the debt grow or shrink?
349
+
350
+ <action>Prepare "continuity insights" for the retrospective discussion</action>
351
+
352
+ <action>Identify wins where previous lessons were applied successfully:</action>
353
+ - Document specific examples of applied learnings
354
+ - Note positive impact on Epic {{epic_number}} outcomes
355
+ - Celebrate team growth and improvement
356
+
357
+ <action>Identify missed opportunities where previous lessons were ignored:</action>
358
+ - Document where team repeated previous mistakes
359
+ - Note impact of not applying lessons (without blame)
360
+ - Explore barriers that prevented application
361
+
362
+ <output>
363
+
364
+ Bob (Scrum Master): "Interesting... in Epic {{prev_epic_num}}'s retro, we committed to {{action_count}} action items."
365
+
366
+ Alice (Product Owner): "How'd we do on those, Bob?"
367
+
368
+ Bob (Scrum Master): "We completed {{completed_count}}, made progress on {{in_progress_count}}, but didn't address {{not_addressed_count}}."
369
+
370
+ Charlie (Senior Dev): _looking concerned_ "Which ones didn't we address?"
371
+
372
+ Bob (Scrum Master): "We'll discuss that in the retro. Some of them might explain challenges we had this epic."
373
+
374
+ Elena (Junior Dev): "That's... actually pretty insightful."
375
+
376
+ Bob (Scrum Master): "That's why we track this stuff. Pattern recognition helps us improve."
377
+ </output>
378
+
379
+ </check>
380
+
381
+ <check if="no previous retro found">
382
+ <output>
383
+ Bob (Scrum Master): "I don't see a retrospective for Epic {{prev_epic_num}}. Either we skipped it, or this is your first retro."
384
+
385
+ Alice (Product Owner): "Probably our first one. Good time to start the habit!"
386
+ </output>
387
+ <action>Set {{first_retrospective}} = true</action>
388
+ </check>
389
+ </check>
390
+
391
+ <check if="{{prev_epic_num}} < 1">
392
+ <output>
393
+ Bob (Scrum Master): "This is Epic 1, so naturally there's no previous retro to reference. We're starting fresh!"
394
+
395
+ Charlie (Senior Dev): "First epic, first retro. Let's make it count."
396
+ </output>
397
+ <action>Set {{first_retrospective}} = true</action>
398
+ </check>
399
+
400
+ </step>
401
+
402
+ <step n="4" goal="Preview Next Epic with Change Detection">
403
+
404
+ <action>Calculate next epic number: {{next_epic_num}} = {{epic_number}} + 1</action>
405
+
406
+ <output>
407
+ Bob (Scrum Master): "Before we dive into the discussion, let me take a quick look at Epic {{next_epic_num}} to understand what's coming."
408
+
409
+ Alice (Product Owner): "Good thinking - helps us connect what we learned to what we're about to do."
410
+ </output>
411
+
412
+ <action>Attempt to load next epic using selective loading strategy:</action>
413
+
414
+ **Try sharded first (more specific):**
415
+ <action>Check if file exists: {planning_artifacts}/epic*/epic-{{next_epic_num}}.md</action>
416
+
417
+ <check if="sharded epic file found">
418
+ <action>Load {planning_artifacts}/*epic*/epic-{{next_epic_num}}.md</action>
419
+ <action>Set {{next_epic_source}} = "sharded"</action>
420
+ </check>
421
+
422
+ **Fallback to whole document:**
423
+ <check if="sharded epic not found">
424
+ <action>Check if file exists: {planning_artifacts}/epic*.md</action>
425
+
426
+ <check if="whole epic file found">
427
+ <action>Load entire epics document</action>
428
+ <action>Extract Epic {{next_epic_num}} section</action>
429
+ <action>Set {{next_epic_source}} = "whole"</action>
430
+ </check>
431
+ </check>
432
+
433
+ <check if="next epic found">
434
+ <action>Analyze next epic for:</action>
435
+ - Epic title and objectives
436
+ - Planned stories and complexity estimates
437
+ - Dependencies on Epic {{epic_number}} work
438
+ - New technical requirements or capabilities needed
439
+ - Potential risks or unknowns
440
+ - Business goals and success criteria
441
+
442
+ <action>Identify dependencies on completed work:</action>
443
+
444
+ - What components from Epic {{epic_number}} does Epic {{next_epic_num}} rely on?
445
+ - Are all prerequisites complete and stable?
446
+ - Any incomplete work that creates blocking dependencies?
447
+
448
+ <action>Note potential gaps or preparation needed:</action>
449
+
450
+ - Technical setup required (infrastructure, tools, libraries)
451
+ - Knowledge gaps to fill (research, training, spikes)
452
+ - Refactoring needed before starting next epic
453
+ - Documentation or specifications to create
454
+
455
+ <action>Check for technical prerequisites:</action>
456
+
457
+ - APIs or integrations that must be ready
458
+ - Data migrations or schema changes needed
459
+ - Testing infrastructure requirements
460
+ - Deployment or environment setup
461
+
462
+ <output>
463
+ Bob (Scrum Master): "Alright, I've reviewed Epic {{next_epic_num}}: '{{next_epic_title}}'"
464
+
465
+ Alice (Product Owner): "What are we looking at?"
466
+
467
+ Bob (Scrum Master): "{{next_epic_num}} stories planned, building on the {{dependency_description}} from Epic {{epic_number}}."
468
+
469
+ Charlie (Senior Dev): "Dependencies concern me. Did we finish everything we need for that?"
470
+
471
+ Bob (Scrum Master): "Good question - that's exactly what we need to explore in this retro."
472
+ </output>
473
+
474
+ <action>Set {{next_epic_exists}} = true</action>
475
+ </check>
476
+
477
+ <check if="next epic NOT found">
478
+ <output>
479
+ Bob (Scrum Master): "Hmm, I don't see Epic {{next_epic_num}} defined yet."
480
+
481
+ Alice (Product Owner): "We might be at the end of the roadmap, or we haven't planned that far ahead yet."
482
+
483
+ Bob (Scrum Master): "No problem. We'll still do a thorough retro on Epic {{epic_number}}. The lessons will be valuable whenever we plan the next work."
484
+ </output>
485
+
486
+ <action>Set {{next_epic_exists}} = false</action>
487
+ </check>
488
+
489
+ </step>
490
+
491
+ <step n="5" goal="Initialize Retrospective with Rich Context">
492
+
493
+ <action>Load agent configurations from {agent_manifest}</action>
494
+ <action>Identify which agents participated in Epic {{epic_number}} based on story records</action>
495
+ <action>Ensure key roles present: Product Owner, Scrum Master (facilitating), Devs, Testing/QA, Architect</action>
496
+
497
+ <output>
498
+ Bob (Scrum Master): "Alright team, everyone's here. Let me set the stage for our retrospective."
499
+
500
+ ═══════════════════════════════════════════════════════════
501
+ 🔄 TEAM RETROSPECTIVE - Epic {{epic_number}}: {{epic_title}}
502
+ ═══════════════════════════════════════════════════════════
503
+
504
+ Bob (Scrum Master): "Here's what we accomplished together."
505
+
506
+ **EPIC {{epic_number}} SUMMARY:**
507
+
508
+ Delivery Metrics:
509
+
510
+ - Completed: {{completed_stories}}/{{total_stories}} stories ({{completion_percentage}}%)
511
+ - Velocity: {{actual_points}} story points{{#if planned_points}} (planned: {{planned_points}}){{/if}}
512
+ - Duration: {{actual_sprints}} sprints{{#if planned_sprints}} (planned: {{planned_sprints}}){{/if}}
513
+ - Average velocity: {{points_per_sprint}} points/sprint
514
+
515
+ Quality and Technical:
516
+
517
+ - Blockers encountered: {{blocker_count}}
518
+ - Technical debt items: {{debt_count}}
519
+ - Test coverage: {{coverage_info}}
520
+ - Production incidents: {{incident_count}}
521
+
522
+ Business Outcomes:
523
+
524
+ - Goals achieved: {{goals_met}}/{{total_goals}}
525
+ - Success criteria: {{criteria_status}}
526
+ - Stakeholder feedback: {{feedback_summary}}
527
+
528
+ Alice (Product Owner): "Those numbers tell a good story. {{completion_percentage}}% completion is {{#if completion_percentage >= 90}}excellent{{else}}something we should discuss{{/if}}."
529
+
530
+ Charlie (Senior Dev): "I'm more interested in that technical debt number - {{debt_count}} items is {{#if debt_count > 10}}concerning{{else}}manageable{{/if}}."
531
+
532
+ Dana (QA Engineer): "{{incident_count}} production incidents - {{#if incident_count == 0}}clean epic!{{else}}we should talk about those{{/if}}."
533
+
534
+ {{#if next_epic_exists}}
535
+ ═══════════════════════════════════════════════════════════
536
+ **NEXT EPIC PREVIEW:** Epic {{next_epic_num}}: {{next_epic_title}}
537
+ ═══════════════════════════════════════════════════════════
538
+
539
+ Dependencies on Epic {{epic_number}}:
540
+ {{list_dependencies}}
541
+
542
+ Preparation Needed:
543
+ {{list_preparation_gaps}}
544
+
545
+ Technical Prerequisites:
546
+ {{list_technical_prereqs}}
547
+
548
+ Bob (Scrum Master): "And here's what's coming next. Epic {{next_epic_num}} builds on what we just finished."
549
+
550
+ Elena (Junior Dev): "Wow, that's a lot of dependencies on our work."
551
+
552
+ Charlie (Senior Dev): "Which means we better make sure Epic {{epic_number}} is actually solid before moving on."
553
+ {{/if}}
554
+
555
+ ═══════════════════════════════════════════════════════════
556
+
557
+ Bob (Scrum Master): "Team assembled for this retrospective:"
558
+
559
+ {{list_participating_agents}}
560
+
561
+ Bob (Scrum Master): "{user_name}, you're joining us as Project Lead. Your perspective is crucial here."
562
+
563
+ {user_name} (Project Lead): [Participating in the retrospective]
564
+
565
+ Bob (Scrum Master): "Our focus today:"
566
+
567
+ 1. Learning from Epic {{epic_number}} execution
568
+ {{#if next_epic_exists}}2. Preparing for Epic {{next_epic_num}} success{{/if}}
569
+
570
+ Bob (Scrum Master): "Ground rules: psychological safety first. No blame, no judgment. We focus on systems and processes, not individuals. Everyone's voice matters. Specific examples are better than generalizations."
571
+
572
+ Alice (Product Owner): "And everything shared here stays in this room - unless we decide together to escalate something."
573
+
574
+ Bob (Scrum Master): "Exactly. {user_name}, any questions before we dive in?"
575
+ </output>
576
+
577
+ <action>WAIT for {user_name} to respond or indicate readiness</action>
578
+
579
+ </step>
580
+
581
+ <step n="6" goal="Epic Review Discussion - What Went Well, What Didn't">
582
+
583
+ <output>
584
+ Bob (Scrum Master): "Let's start with the good stuff. What went well in Epic {{epic_number}}?"
585
+
586
+ Bob (Scrum Master): _pauses, creating space_
587
+
588
+ Alice (Product Owner): "I'll start. The user authentication flow we delivered exceeded my expectations. The UX is smooth, and early user feedback has been really positive."
589
+
590
+ Charlie (Senior Dev): "I'll add to that - the caching strategy we implemented in Story {{breakthrough_story_num}} was a game-changer. We cut API calls by 60% and it set the pattern for the rest of the epic."
591
+
592
+ Dana (QA Engineer): "From my side, testing went smoother than usual. The dev team's documentation was way better this epic - actually usable test plans!"
593
+
594
+ Elena (Junior Dev): _smiling_ "That's because Charlie made me document everything after Story 1's code review!"
595
+
596
+ Charlie (Senior Dev): _laughing_ "Tough love pays off."
597
+ </output>
598
+
599
+ <action>Bob (Scrum Master) naturally turns to {user_name} to engage them in the discussion</action>
600
+
601
+ <output>
602
+ Bob (Scrum Master): "{user_name}, what stood out to you as going well in this epic?"
603
+ </output>
604
+
605
+ <action>WAIT for {user_name} to respond - this is a KEY USER INTERACTION moment</action>
606
+
607
+ <action>After {user_name} responds, have 1-2 team members react to or build on what {user_name} shared</action>
608
+
609
+ <output>
610
+ Alice (Product Owner): [Responds naturally to what {user_name} said, either agreeing, adding context, or offering a different perspective]
611
+
612
+ Charlie (Senior Dev): [Builds on the discussion, perhaps adding technical details or connecting to specific stories]
613
+ </output>
614
+
615
+ <action>Continue facilitating natural dialogue, periodically bringing {user_name} back into the conversation</action>
616
+
617
+ <action>After covering successes, guide the transition to challenges with care</action>
618
+
619
+ <output>
620
+ Bob (Scrum Master): "Okay, we've celebrated some real wins. Now let's talk about challenges - where did we struggle? What slowed us down?"
621
+
622
+ Bob (Scrum Master): _creates safe space with tone and pacing_
623
+
624
+ Elena (Junior Dev): _hesitates_ "Well... I really struggled with the database migrations in Story {{difficult_story_num}}. The documentation wasn't clear, and I had to redo it three times. Lost almost a full sprint on that story alone."
625
+
626
+ Charlie (Senior Dev): _defensive_ "Hold on - I wrote those migration docs, and they were perfectly clear. The issue was that the requirements kept changing mid-story!"
627
+
628
+ Alice (Product Owner): _frustrated_ "That's not fair, Charlie. We only clarified requirements once, and that was because the technical team didn't ask the right questions during planning!"
629
+
630
+ Charlie (Senior Dev): _heat rising_ "We asked plenty of questions! You said the schema was finalized, then two days into development you wanted to add three new fields!"
631
+
632
+ Bob (Scrum Master): _intervening calmly_ "Let's take a breath here. This is exactly the kind of thing we need to unpack."
633
+
634
+ Bob (Scrum Master): "Elena, you spent almost a full sprint on Story {{difficult_story_num}}. Charlie, you're saying requirements changed. Alice, you feel the right questions weren't asked up front."
635
+
636
+ Bob (Scrum Master): "{user_name}, you have visibility across the whole project. What's your take on this situation?"
637
+ </output>
638
+
639
+ <action>WAIT for {user_name} to respond and help facilitate the conflict resolution</action>
640
+
641
+ <action>Use {user_name}'s response to guide the discussion toward systemic understanding rather than blame</action>
642
+
643
+ <output>
644
+ Bob (Scrum Master): [Synthesizes {user_name}'s input with what the team shared] "So it sounds like the core issue was {{root_cause_based_on_discussion}}, not any individual person's fault."
645
+
646
+ Elena (Junior Dev): "That makes sense. If we'd had {{preventive_measure}}, I probably could have avoided those redos."
647
+
648
+ Charlie (Senior Dev): _softening_ "Yeah, and I could have been clearer about assumptions in the docs. Sorry for getting defensive, Alice."
649
+
650
+ Alice (Product Owner): "I appreciate that. I could've been more proactive about flagging the schema additions earlier, too."
651
+
652
+ Bob (Scrum Master): "This is good. We're identifying systemic improvements, not assigning blame."
653
+ </output>
654
+
655
+ <action>Continue the discussion, weaving in patterns discovered from the deep story analysis (Step 2)</action>
656
+
657
+ <output>
658
+ Bob (Scrum Master): "Speaking of patterns, I noticed something when reviewing all the story records..."
659
+
660
+ Bob (Scrum Master): "{{pattern_1_description}} - this showed up in {{pattern_1_count}} out of {{total_stories}} stories."
661
+
662
+ Dana (QA Engineer): "Oh wow, I didn't realize it was that widespread."
663
+
664
+ Bob (Scrum Master): "Yeah. And there's more - {{pattern_2_description}} came up in almost every code review."
665
+
666
+ Charlie (Senior Dev): "That's... actually embarrassing. We should've caught that pattern earlier."
667
+
668
+ Bob (Scrum Master): "No shame, Charlie. Now we know, and we can improve. {user_name}, did you notice these patterns during the epic?"
669
+ </output>
670
+
671
+ <action>WAIT for {user_name} to share their observations</action>
672
+
673
+ <action>Continue the retrospective discussion, creating moments where:</action>
674
+
675
+ - Team members ask {user_name} questions directly
676
+ - {user_name}'s input shifts the discussion direction
677
+ - Disagreements arise naturally and get resolved
678
+ - Quieter team members are invited to contribute
679
+ - Specific stories are referenced with real examples
680
+ - Emotions are authentic (frustration, pride, concern, hope)
681
+
682
+ <check if="previous retrospective exists">
683
+ <output>
684
+ Bob (Scrum Master): "Before we move on, I want to circle back to Epic {{prev_epic_num}}'s retrospective."
685
+
686
+ Bob (Scrum Master): "We made some commitments in that retro. Let's see how we did."
687
+
688
+ Bob (Scrum Master): "Action item 1: {{prev_action_1}}. Status: {{prev_action_1_status}}"
689
+
690
+ Alice (Product Owner): {{#if prev_action_1_status == "completed"}}"We nailed that one!"{{else}}"We... didn't do that one."{{/if}}
691
+
692
+ Charlie (Senior Dev): {{#if prev_action_1_status == "completed"}}"And it helped! I noticed {{evidence_of_impact}}"{{else}}"Yeah, and I think that's why we had {{consequence_of_not_doing_it}} this epic."{{/if}}
693
+
694
+ Bob (Scrum Master): "Action item 2: {{prev_action_2}}. Status: {{prev_action_2_status}}"
695
+
696
+ Dana (QA Engineer): {{#if prev_action_2_status == "completed"}}"This one made testing so much easier this time."{{else}}"If we'd done this, I think testing would've gone faster."{{/if}}
697
+
698
+ Bob (Scrum Master): "{user_name}, looking at what we committed to last time and what we actually did - what's your reaction?"
699
+ </output>
700
+
701
+ <action>WAIT for {user_name} to respond</action>
702
+
703
+ <action>Use the previous retro follow-through as a learning moment about commitment and accountability</action>
704
+ </check>
705
+
706
+ <output>
707
+ Bob (Scrum Master): "Alright, we've covered a lot of ground. Let me summarize what I'm hearing..."
708
+
709
+ Bob (Scrum Master): "**Successes:**"
710
+ {{list_success_themes}}
711
+
712
+ Bob (Scrum Master): "**Challenges:**"
713
+ {{list_challenge_themes}}
714
+
715
+ Bob (Scrum Master): "**Key Insights:**"
716
+ {{list_insight_themes}}
717
+
718
+ Bob (Scrum Master): "Does that capture it? Anyone have something important we missed?"
719
+ </output>
720
+
721
+ <action>Allow team members to add any final thoughts on the epic review</action>
722
+ <action>Ensure {user_name} has opportunity to add their perspective</action>
723
+
724
+ </step>
725
+
726
+ <step n="7" goal="Next Epic Preparation Discussion - Interactive and Collaborative">
727
+
728
+ <check if="{{next_epic_exists}} == false">
729
+ <output>
730
+ Bob (Scrum Master): "Normally we'd discuss preparing for the next epic, but since Epic {{next_epic_num}} isn't defined yet, let's skip to action items."
731
+ </output>
732
+ <action>Skip to Step 8</action>
733
+ </check>
734
+
735
+ <output>
736
+ Bob (Scrum Master): "Now let's shift gears. Epic {{next_epic_num}} is coming up: '{{next_epic_title}}'"
737
+
738
+ Bob (Scrum Master): "The question is: are we ready? What do we need to prepare?"
739
+
740
+ Alice (Product Owner): "From my perspective, we need to make sure {{dependency_concern_1}} from Epic {{epic_number}} is solid before we start building on it."
741
+
742
+ Charlie (Senior Dev): _concerned_ "I'm worried about {{technical_concern_1}}. We have {{technical_debt_item}} from this epic that'll blow up if we don't address it before Epic {{next_epic_num}}."
743
+
744
+ Dana (QA Engineer): "And I need {{testing_infrastructure_need}} in place, or we're going to have the same testing bottleneck we had in Story {{bottleneck_story_num}}."
745
+
746
+ Elena (Junior Dev): "I'm less worried about infrastructure and more about knowledge. I don't understand {{knowledge_gap}} well enough to work on Epic {{next_epic_num}}'s stories."
747
+
748
+ Bob (Scrum Master): "{user_name}, the team is surfacing some real concerns here. What's your sense of our readiness?"
749
+ </output>
750
+
751
+ <action>WAIT for {user_name} to share their assessment</action>
752
+
753
+ <action>Use {user_name}'s input to guide deeper exploration of preparation needs</action>
754
+
755
+ <output>
756
+ Alice (Product Owner): [Reacts to what {user_name} said] "I agree with {user_name} about {{point_of_agreement}}, but I'm still worried about {{lingering_concern}}."
757
+
758
+ Charlie (Senior Dev): "Here's what I think we need technically before Epic {{next_epic_num}} can start..."
759
+
760
+ Charlie (Senior Dev): "1. {{tech_prep_item_1}} - estimated {{hours_1}} hours"
761
+ Charlie (Senior Dev): "2. {{tech_prep_item_2}} - estimated {{hours_2}} hours"
762
+ Charlie (Senior Dev): "3. {{tech_prep_item_3}} - estimated {{hours_3}} hours"
763
+
764
+ Elena (Junior Dev): "That's like {{total_hours}} hours! That's a full sprint of prep work!"
765
+
766
+ Charlie (Senior Dev): "Exactly. We can't just jump into Epic {{next_epic_num}} on Monday."
767
+
768
+ Alice (Product Owner): _frustrated_ "But we have stakeholder pressure to keep shipping features. They're not going to be happy about a 'prep sprint.'"
769
+
770
+ Bob (Scrum Master): "Let's think about this differently. What happens if we DON'T do this prep work?"
771
+
772
+ Dana (QA Engineer): "We'll hit blockers in the middle of Epic {{next_epic_num}}, velocity will tank, and we'll ship late anyway."
773
+
774
+ Charlie (Senior Dev): "Worse - we'll ship something built on top of {{technical_concern_1}}, and it'll be fragile."
775
+
776
+ Bob (Scrum Master): "{user_name}, you're balancing stakeholder pressure against technical reality. How do you want to handle this?"
777
+ </output>
778
+
779
+ <action>WAIT for {user_name} to provide direction on preparation approach</action>
780
+
781
+ <action>Create space for debate and disagreement about priorities</action>
782
+
783
+ <output>
784
+ Alice (Product Owner): [Potentially disagrees with {user_name}'s approach] "I hear what you're saying, {user_name}, but from a business perspective, {{business_concern}}."
785
+
786
+ Charlie (Senior Dev): [Potentially supports or challenges Alice's point] "The business perspective is valid, but {{technical_counter_argument}}."
787
+
788
+ Bob (Scrum Master): "We have healthy tension here between business needs and technical reality. That's good - it means we're being honest."
789
+
790
+ Bob (Scrum Master): "Let's explore a middle ground. Charlie, which of your prep items are absolutely critical vs. nice-to-have?"
791
+
792
+ Charlie (Senior Dev): "{{critical_prep_item_1}} and {{critical_prep_item_2}} are non-negotiable. {{nice_to_have_prep_item}} can wait."
793
+
794
+ Alice (Product Owner): "And can any of the critical prep happen in parallel with starting Epic {{next_epic_num}}?"
795
+
796
+ Charlie (Senior Dev): _thinking_ "Maybe. If we tackle {{first_critical_item}} before the epic starts, we could do {{second_critical_item}} during the first sprint."
797
+
798
+ Dana (QA Engineer): "But that means Story 1 of Epic {{next_epic_num}} can't depend on {{second_critical_item}}."
799
+
800
+ Alice (Product Owner): _looking at epic plan_ "Actually, Stories 1 and 2 are about {{independent_work}}, so they don't depend on it. We could make that work."
801
+
802
+ Bob (Scrum Master): "{user_name}, the team is finding a workable compromise here. Does this approach make sense to you?"
803
+ </output>
804
+
805
+ <action>WAIT for {user_name} to validate or adjust the preparation strategy</action>
806
+
807
+ <action>Continue working through preparation needs across all dimensions:</action>
808
+
809
+ - Dependencies on Epic {{epic_number}} work
810
+ - Technical setup and infrastructure
811
+ - Knowledge gaps and research needs
812
+ - Documentation or specification work
813
+ - Testing infrastructure
814
+ - Refactoring or debt reduction
815
+ - External dependencies (APIs, integrations, etc.)
816
+
817
+ <action>For each preparation area, facilitate team discussion that:</action>
818
+
819
+ - Identifies specific needs with concrete examples
820
+ - Estimates effort realistically based on Epic {{epic_number}} experience
821
+ - Assigns ownership to specific agents
822
+ - Determines criticality and timing
823
+ - Surfaces risks of NOT doing the preparation
824
+ - Explores parallel work opportunities
825
+ - Brings {user_name} in for key decisions
826
+
827
+ <output>
828
+ Bob (Scrum Master): "I'm hearing a clear picture of what we need before Epic {{next_epic_num}}. Let me summarize..."
829
+
830
+ **CRITICAL PREPARATION (Must complete before epic starts):**
831
+ {{list_critical_prep_items_with_owners_and_estimates}}
832
+
833
+ **PARALLEL PREPARATION (Can happen during early stories):**
834
+ {{list_parallel_prep_items_with_owners_and_estimates}}
835
+
836
+ **NICE-TO-HAVE PREPARATION (Would help but not blocking):**
837
+ {{list_nice_to_have_prep_items}}
838
+
839
+ Bob (Scrum Master): "Total critical prep effort: {{critical_hours}} hours ({{critical_days}} days)"
840
+
841
+ Alice (Product Owner): "That's manageable. We can communicate that to stakeholders."
842
+
843
+ Bob (Scrum Master): "{user_name}, does this preparation plan work for you?"
844
+ </output>
845
+
846
+ <action>WAIT for {user_name} final validation of preparation plan</action>
847
+
848
+ </step>
849
+
850
+ <step n="8" goal="Synthesize Action Items with Significant Change Detection">
851
+
852
+ <output>
853
+ Bob (Scrum Master): "Let's capture concrete action items from everything we've discussed."
854
+
855
+ Bob (Scrum Master): "I want specific, achievable actions with clear owners. Not vague aspirations."
856
+ </output>
857
+
858
+ <action>Synthesize themes from Epic {{epic_number}} review discussion into actionable improvements</action>
859
+
860
+ <action>Create specific action items with:</action>
861
+
862
+ - Clear description of the action
863
+ - Assigned owner (specific agent or role)
864
+ - Timeline or deadline
865
+ - Success criteria (how we'll know it's done)
866
+ - Category (process, technical, documentation, team, etc.)
867
+
868
+ <action>Ensure action items are SMART:</action>
869
+
870
+ - Specific: Clear and unambiguous
871
+ - Measurable: Can verify completion
872
+ - Achievable: Realistic given constraints
873
+ - Relevant: Addresses real issues from retro
874
+ - Time-bound: Has clear deadline
875
+
876
+ <output>
877
+ Bob (Scrum Master): "Based on our discussion, here are the action items I'm proposing..."
878
+
879
+ ═══════════════════════════════════════════════════════════
880
+ 📝 EPIC {{epic_number}} ACTION ITEMS:
881
+ ═══════════════════════════════════════════════════════════
882
+
883
+ **Process Improvements:**
884
+
885
+ 1. {{action_item_1}}
886
+ Owner: {{agent_1}}
887
+ Deadline: {{timeline_1}}
888
+ Success criteria: {{criteria_1}}
889
+
890
+ 2. {{action_item_2}}
891
+ Owner: {{agent_2}}
892
+ Deadline: {{timeline_2}}
893
+ Success criteria: {{criteria_2}}
894
+
895
+ Charlie (Senior Dev): "I can own action item 1, but {{timeline_1}} is tight. Can we push it to {{alternative_timeline}}?"
896
+
897
+ Bob (Scrum Master): "What do others think? Does that timing still work?"
898
+
899
+ Alice (Product Owner): "{{alternative_timeline}} works for me, as long as it's done before Epic {{next_epic_num}} starts."
900
+
901
+ Bob (Scrum Master): "Agreed. Updated to {{alternative_timeline}}."
902
+
903
+ **Technical Debt:**
904
+
905
+ 1. {{debt_item_1}}
906
+ Owner: {{agent_3}}
907
+ Priority: {{priority_1}}
908
+ Estimated effort: {{effort_1}}
909
+
910
+ 2. {{debt_item_2}}
911
+ Owner: {{agent_4}}
912
+ Priority: {{priority_2}}
913
+ Estimated effort: {{effort_2}}
914
+
915
+ Dana (QA Engineer): "For debt item 1, can we prioritize that as high? It caused testing issues in three different stories."
916
+
917
+ Charlie (Senior Dev): "I marked it medium because {{reasoning}}, but I hear your point."
918
+
919
+ Bob (Scrum Master): "{user_name}, this is a priority call. Testing impact vs. {{reasoning}} - how do you want to prioritize it?"
920
+ </output>
921
+
922
+ <action>WAIT for {user_name} to help resolve priority discussions</action>
923
+
924
+ <output>
925
+ **Documentation:**
926
+ 1. {{doc_need_1}}
927
+ Owner: {{agent_5}}
928
+ Deadline: {{timeline_3}}
929
+
930
+ 2. {{doc_need_2}}
931
+ Owner: {{agent_6}}
932
+ Deadline: {{timeline_4}}
933
+
934
+ **Team Agreements:**
935
+
936
+ - {{agreement_1}}
937
+ - {{agreement_2}}
938
+ - {{agreement_3}}
939
+
940
+ Bob (Scrum Master): "These agreements are how we're committing to work differently going forward."
941
+
942
+ Elena (Junior Dev): "I like agreement 2 - that would've saved me on Story {{difficult_story_num}}."
943
+
944
+ ═══════════════════════════════════════════════════════════
945
+ 🚀 EPIC {{next_epic_num}} PREPARATION TASKS:
946
+ ═══════════════════════════════════════════════════════════
947
+
948
+ **Technical Setup:**
949
+ [ ] {{setup_task_1}}
950
+ Owner: {{owner_1}}
951
+ Estimated: {{est_1}}
952
+
953
+ [ ] {{setup_task_2}}
954
+ Owner: {{owner_2}}
955
+ Estimated: {{est_2}}
956
+
957
+ **Knowledge Development:**
958
+ [ ] {{research_task_1}}
959
+ Owner: {{owner_3}}
960
+ Estimated: {{est_3}}
961
+
962
+ **Cleanup/Refactoring:**
963
+ [ ] {{refactor_task_1}}
964
+ Owner: {{owner_4}}
965
+ Estimated: {{est_4}}
966
+
967
+ **Total Estimated Effort:** {{total_hours}} hours ({{total_days}} days)
968
+
969
+ ═══════════════════════════════════════════════════════════
970
+ ⚠️ CRITICAL PATH:
971
+ ═══════════════════════════════════════════════════════════
972
+
973
+ **Blockers to Resolve Before Epic {{next_epic_num}}:**
974
+
975
+ 1. {{critical_item_1}}
976
+ Owner: {{critical_owner_1}}
977
+ Must complete by: {{critical_deadline_1}}
978
+
979
+ 2. {{critical_item_2}}
980
+ Owner: {{critical_owner_2}}
981
+ Must complete by: {{critical_deadline_2}}
982
+ </output>
983
+
984
+ <action>CRITICAL ANALYSIS - Detect if discoveries require epic updates</action>
985
+
986
+ <action>Check if any of the following are true based on retrospective discussion:</action>
987
+
988
+ - Architectural assumptions from planning proven wrong during Epic {{epic_number}}
989
+ - Major scope changes or descoping occurred that affects next epic
990
+ - Technical approach needs fundamental change for Epic {{next_epic_num}}
991
+ - Dependencies discovered that Epic {{next_epic_num}} doesn't account for
992
+ - User needs significantly different than originally understood
993
+ - Performance/scalability concerns that affect Epic {{next_epic_num}} design
994
+ - Security or compliance issues discovered that change approach
995
+ - Integration assumptions proven incorrect
996
+ - Team capacity or skill gaps more severe than planned
997
+ - Technical debt level unsustainable without intervention
998
+
999
+ <check if="significant discoveries detected">
1000
+ <output>
1001
+
1002
+ ═══════════════════════════════════════════════════════════
1003
+ 🚨 SIGNIFICANT DISCOVERY ALERT 🚨
1004
+ ═══════════════════════════════════════════════════════════
1005
+
1006
+ Bob (Scrum Master): "{user_name}, we need to flag something important."
1007
+
1008
+ Bob (Scrum Master): "During Epic {{epic_number}}, the team uncovered findings that may require updating the plan for Epic {{next_epic_num}}."
1009
+
1010
+ **Significant Changes Identified:**
1011
+
1012
+ 1. {{significant_change_1}}
1013
+ Impact: {{impact_description_1}}
1014
+
1015
+ 2. {{significant_change_2}}
1016
+ Impact: {{impact_description_2}}
1017
+
1018
+ {{#if significant_change_3}} 3. {{significant_change_3}}
1019
+ Impact: {{impact_description_3}}
1020
+ {{/if}}
1021
+
1022
+ Charlie (Senior Dev): "Yeah, when we discovered {{technical_discovery}}, it fundamentally changed our understanding of {{affected_area}}."
1023
+
1024
+ Alice (Product Owner): "And from a product perspective, {{product_discovery}} means Epic {{next_epic_num}}'s stories are based on wrong assumptions."
1025
+
1026
+ Dana (QA Engineer): "If we start Epic {{next_epic_num}} as-is, we're going to hit walls fast."
1027
+
1028
+ **Impact on Epic {{next_epic_num}}:**
1029
+
1030
+ The current plan for Epic {{next_epic_num}} assumes:
1031
+
1032
+ - {{wrong_assumption_1}}
1033
+ - {{wrong_assumption_2}}
1034
+
1035
+ But Epic {{epic_number}} revealed:
1036
+
1037
+ - {{actual_reality_1}}
1038
+ - {{actual_reality_2}}
1039
+
1040
+ This means Epic {{next_epic_num}} likely needs:
1041
+ {{list_likely_changes_needed}}
1042
+
1043
+ **RECOMMENDED ACTIONS:**
1044
+
1045
+ 1. Review and update Epic {{next_epic_num}} definition based on new learnings
1046
+ 2. Update affected stories in Epic {{next_epic_num}} to reflect reality
1047
+ 3. Consider updating architecture or technical specifications if applicable
1048
+ 4. Hold alignment session with Product Owner before starting Epic {{next_epic_num}}
1049
+ {{#if prd_update_needed}}5. Update PRD sections affected by new understanding{{/if}}
1050
+
1051
+ Bob (Scrum Master): "**Epic Update Required**: YES - Schedule epic planning review session"
1052
+
1053
+ Bob (Scrum Master): "{user_name}, this is significant. We need to address this before committing to Epic {{next_epic_num}}'s current plan. How do you want to handle it?"
1054
+ </output>
1055
+
1056
+ <action>WAIT for {user_name} to decide on how to handle the significant changes</action>
1057
+
1058
+ <action>Add epic review session to critical path if user agrees</action>
1059
+
1060
+ <output>
1061
+ Alice (Product Owner): "I agree with {user_name}'s approach. Better to adjust the plan now than fail mid-epic."
1062
+
1063
+ Charlie (Senior Dev): "This is why retrospectives matter. We caught this before it became a disaster."
1064
+
1065
+ Bob (Scrum Master): "Adding to critical path: Epic {{next_epic_num}} planning review session before epic kickoff."
1066
+ </output>
1067
+ </check>
1068
+
1069
+ <check if="no significant discoveries">
1070
+ <output>
1071
+ Bob (Scrum Master): "Good news - nothing from Epic {{epic_number}} fundamentally changes our plan for Epic {{next_epic_num}}. The plan is still sound."
1072
+
1073
+ Alice (Product Owner): "We learned a lot, but the direction is right."
1074
+ </output>
1075
+ </check>
1076
+
1077
+ <output>
1078
+ Bob (Scrum Master): "Let me show you the complete action plan..."
1079
+
1080
+ Bob (Scrum Master): "That's {{total_action_count}} action items, {{prep_task_count}} preparation tasks, and {{critical_count}} critical path items."
1081
+
1082
+ Bob (Scrum Master): "Everyone clear on what they own?"
1083
+ </output>
1084
+
1085
+ <action>Give each agent with assignments a moment to acknowledge their ownership</action>
1086
+
1087
+ <action>Ensure {user_name} approves the complete action plan</action>
1088
+
1089
+ </step>
1090
+
1091
+ <step n="9" goal="Critical Readiness Exploration - Interactive Deep Dive">
1092
+
1093
+ <output>
1094
+ Bob (Scrum Master): "Before we close, I want to do a final readiness check."
1095
+
1096
+ Bob (Scrum Master): "Epic {{epic_number}} is marked complete in sprint-status, but is it REALLY done?"
1097
+
1098
+ Alice (Product Owner): "What do you mean, Bob?"
1099
+
1100
+ Bob (Scrum Master): "I mean truly production-ready, stakeholders happy, no loose ends that'll bite us later."
1101
+
1102
+ Bob (Scrum Master): "{user_name}, let's walk through this together."
1103
+ </output>
1104
+
1105
+ <action>Explore testing and quality state through natural conversation</action>
1106
+
1107
+ <output>
1108
+ Bob (Scrum Master): "{user_name}, tell me about the testing for Epic {{epic_number}}. What verification has been done?"
1109
+ </output>
1110
+
1111
+ <action>WAIT for {user_name} to describe testing status</action>
1112
+
1113
+ <output>
1114
+ Dana (QA Engineer): [Responds to what {user_name} shared] "I can add to that - {{additional_testing_context}}."
1115
+
1116
+ Dana (QA Engineer): "But honestly, {{testing_concern_if_any}}."
1117
+
1118
+ Bob (Scrum Master): "{user_name}, are you confident Epic {{epic_number}} is production-ready from a quality perspective?"
1119
+ </output>
1120
+
1121
+ <action>WAIT for {user_name} to assess quality readiness</action>
1122
+
1123
+ <check if="{user_name} expresses concerns">
1124
+ <output>
1125
+ Bob (Scrum Master): "Okay, let's capture that. What specific testing is still needed?"
1126
+
1127
+ Dana (QA Engineer): "I can handle {{testing_work_needed}}, estimated {{testing_hours}} hours."
1128
+
1129
+ Bob (Scrum Master): "Adding to critical path: Complete {{testing_work_needed}} before Epic {{next_epic_num}}."
1130
+ </output>
1131
+ <action>Add testing completion to critical path</action>
1132
+ </check>
1133
+
1134
+ <action>Explore deployment and release status</action>
1135
+
1136
+ <output>
1137
+ Bob (Scrum Master): "{user_name}, what's the deployment status for Epic {{epic_number}}? Is it live in production, scheduled for deployment, or still pending?"
1138
+ </output>
1139
+
1140
+ <action>WAIT for {user_name} to provide deployment status</action>
1141
+
1142
+ <check if="not yet deployed">
1143
+ <output>
1144
+ Charlie (Senior Dev): "If it's not deployed yet, we need to factor that into Epic {{next_epic_num}} timing."
1145
+
1146
+ Bob (Scrum Master): "{user_name}, when is deployment planned? Does that timing work for starting Epic {{next_epic_num}}?"
1147
+ </output>
1148
+
1149
+ <action>WAIT for {user_name} to clarify deployment timeline</action>
1150
+
1151
+ <action>Add deployment milestone to critical path with agreed timeline</action>
1152
+ </check>
1153
+
1154
+ <action>Explore stakeholder acceptance</action>
1155
+
1156
+ <output>
1157
+ Bob (Scrum Master): "{user_name}, have stakeholders seen and accepted the Epic {{epic_number}} deliverables?"
1158
+
1159
+ Alice (Product Owner): "This is important - I've seen 'done' epics get rejected by stakeholders and force rework."
1160
+
1161
+ Bob (Scrum Master): "{user_name}, any feedback from stakeholders still pending?"
1162
+ </output>
1163
+
1164
+ <action>WAIT for {user_name} to describe stakeholder acceptance status</action>
1165
+
1166
+ <check if="acceptance incomplete or feedback pending">
1167
+ <output>
1168
+ Alice (Product Owner): "We should get formal acceptance before moving on. Otherwise Epic {{next_epic_num}} might get interrupted by rework."
1169
+
1170
+ Bob (Scrum Master): "{user_name}, how do you want to handle stakeholder acceptance? Should we make it a critical path item?"
1171
+ </output>
1172
+
1173
+ <action>WAIT for {user_name} decision</action>
1174
+
1175
+ <action>Add stakeholder acceptance to critical path if user agrees</action>
1176
+ </check>
1177
+
1178
+ <action>Explore technical health and stability</action>
1179
+
1180
+ <output>
1181
+ Bob (Scrum Master): "{user_name}, this is a gut-check question: How does the codebase feel after Epic {{epic_number}}?"
1182
+
1183
+ Bob (Scrum Master): "Stable and maintainable? Or are there concerns lurking?"
1184
+
1185
+ Charlie (Senior Dev): "Be honest, {user_name}. We've all shipped epics that felt... fragile."
1186
+ </output>
1187
+
1188
+ <action>WAIT for {user_name} to assess codebase health</action>
1189
+
1190
+ <check if="{user_name} expresses stability concerns">
1191
+ <output>
1192
+ Charlie (Senior Dev): "Okay, let's dig into that. What's causing those concerns?"
1193
+
1194
+ Charlie (Senior Dev): [Helps {user_name} articulate technical concerns]
1195
+
1196
+ Bob (Scrum Master): "What would it take to address these concerns and feel confident about stability?"
1197
+
1198
+ Charlie (Senior Dev): "I'd say we need {{stability_work_needed}}, roughly {{stability_hours}} hours."
1199
+
1200
+ Bob (Scrum Master): "{user_name}, is addressing this stability work worth doing before Epic {{next_epic_num}}?"
1201
+ </output>
1202
+
1203
+ <action>WAIT for {user_name} decision</action>
1204
+
1205
+ <action>Add stability work to preparation sprint if user agrees</action>
1206
+ </check>
1207
+
1208
+ <action>Explore unresolved blockers</action>
1209
+
1210
+ <output>
1211
+ Bob (Scrum Master): "{user_name}, are there any unresolved blockers or technical issues from Epic {{epic_number}} that we're carrying forward?"
1212
+
1213
+ Dana (QA Engineer): "Things that might create problems for Epic {{next_epic_num}} if we don't deal with them?"
1214
+
1215
+ Bob (Scrum Master): "Nothing is off limits here. If there's a problem, we need to know."
1216
+ </output>
1217
+
1218
+ <action>WAIT for {user_name} to surface any blockers</action>
1219
+
1220
+ <check if="blockers identified">
1221
+ <output>
1222
+ Bob (Scrum Master): "Let's capture those blockers and figure out how they affect Epic {{next_epic_num}}."
1223
+
1224
+ Charlie (Senior Dev): "For {{blocker_1}}, if we leave it unresolved, it'll {{impact_description_1}}."
1225
+
1226
+ Alice (Product Owner): "That sounds critical. We need to address that before moving forward."
1227
+
1228
+ Bob (Scrum Master): "Agreed. Adding to critical path: Resolve {{blocker_1}} before Epic {{next_epic_num}} kickoff."
1229
+
1230
+ Bob (Scrum Master): "Who owns that work?"
1231
+ </output>
1232
+
1233
+ <action>Assign blocker resolution to appropriate agent</action>
1234
+ <action>Add to critical path with priority and deadline</action>
1235
+ </check>
1236
+
1237
+ <action>Synthesize the readiness assessment</action>
1238
+
1239
+ <output>
1240
+ Bob (Scrum Master): "Okay {user_name}, let me synthesize what we just uncovered..."
1241
+
1242
+ **EPIC {{epic_number}} READINESS ASSESSMENT:**
1243
+
1244
+ Testing & Quality: {{quality_status}}
1245
+ {{#if quality_concerns}}⚠️ Action needed: {{quality_action_needed}}{{/if}}
1246
+
1247
+ Deployment: {{deployment_status}}
1248
+ {{#if deployment_pending}}⚠️ Scheduled for: {{deployment_date}}{{/if}}
1249
+
1250
+ Stakeholder Acceptance: {{acceptance_status}}
1251
+ {{#if acceptance_incomplete}}⚠️ Action needed: {{acceptance_action_needed}}{{/if}}
1252
+
1253
+ Technical Health: {{stability_status}}
1254
+ {{#if stability_concerns}}⚠️ Action needed: {{stability_action_needed}}{{/if}}
1255
+
1256
+ Unresolved Blockers: {{blocker_status}}
1257
+ {{#if blockers_exist}}⚠️ Must resolve: {{blocker_list}}{{/if}}
1258
+
1259
+ Bob (Scrum Master): "{user_name}, does this assessment match your understanding?"
1260
+ </output>
1261
+
1262
+ <action>WAIT for {user_name} to confirm or correct the assessment</action>
1263
+
1264
+ <output>
1265
+ Bob (Scrum Master): "Based on this assessment, Epic {{epic_number}} is {{#if all_clear}}fully complete and we're clear to proceed{{else}}complete from a story perspective, but we have {{critical_work_count}} critical items before Epic {{next_epic_num}}{{/if}}."
1266
+
1267
+ Alice (Product Owner): "This level of thoroughness is why retrospectives are valuable."
1268
+
1269
+ Charlie (Senior Dev): "Better to catch this now than three stories into the next epic."
1270
+ </output>
1271
+
1272
+ </step>
1273
+
1274
+ <step n="10" goal="Retrospective Closure with Celebration and Commitment">
1275
+
1276
+ <output>
1277
+ Bob (Scrum Master): "We've covered a lot of ground today. Let me bring this retrospective to a close."
1278
+
1279
+ ═══════════════════════════════════════════════════════════
1280
+ ✅ RETROSPECTIVE COMPLETE
1281
+ ═══════════════════════════════════════════════════════════
1282
+
1283
+ Bob (Scrum Master): "Epic {{epic_number}}: {{epic_title}} - REVIEWED"
1284
+
1285
+ **Key Takeaways:**
1286
+
1287
+ 1. {{key_lesson_1}}
1288
+ 2. {{key_lesson_2}}
1289
+ 3. {{key_lesson_3}}
1290
+ {{#if key_lesson_4}}4. {{key_lesson_4}}{{/if}}
1291
+
1292
+ Alice (Product Owner): "That first takeaway is huge - {{impact_of_lesson_1}}."
1293
+
1294
+ Charlie (Senior Dev): "And lesson 2 is something we can apply immediately."
1295
+
1296
+ Bob (Scrum Master): "Commitments made today:"
1297
+
1298
+ - Action Items: {{action_count}}
1299
+ - Preparation Tasks: {{prep_task_count}}
1300
+ - Critical Path Items: {{critical_count}}
1301
+
1302
+ Dana (QA Engineer): "That's a lot of commitments. We need to actually follow through this time."
1303
+
1304
+ Bob (Scrum Master): "Agreed. Which is why we'll review these action items in our next standup."
1305
+
1306
+ ═══════════════════════════════════════════════════════════
1307
+ 🎯 NEXT STEPS:
1308
+ ═══════════════════════════════════════════════════════════
1309
+
1310
+ 1. Execute Preparation Sprint (Est: {{prep_days}} days)
1311
+ 2. Complete Critical Path items before Epic {{next_epic_num}}
1312
+ 3. Review action items in next standup
1313
+ {{#if epic_update_needed}}4. Hold Epic {{next_epic_num}} planning review session{{else}}4. Begin Epic {{next_epic_num}} planning when preparation complete{{/if}}
1314
+
1315
+ Elena (Junior Dev): "{{prep_days}} days of prep work is significant, but necessary."
1316
+
1317
+ Alice (Product Owner): "I'll communicate the timeline to stakeholders. They'll understand if we frame it as 'ensuring Epic {{next_epic_num}} success.'"
1318
+
1319
+ ═══════════════════════════════════════════════════════════
1320
+
1321
+ Bob (Scrum Master): "Before we wrap, I want to take a moment to acknowledge the team."
1322
+
1323
+ Bob (Scrum Master): "Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_description}} velocity. We overcame {{blocker_count}} blockers. We learned a lot. That's real work by real people."
1324
+
1325
+ Charlie (Senior Dev): "Hear, hear."
1326
+
1327
+ Alice (Product Owner): "I'm proud of what we shipped."
1328
+
1329
+ Dana (QA Engineer): "And I'm excited about Epic {{next_epic_num}} - especially now that we're prepared for it."
1330
+
1331
+ Bob (Scrum Master): "{user_name}, any final thoughts before we close?"
1332
+ </output>
1333
+
1334
+ <action>WAIT for {user_name} to share final reflections</action>
1335
+
1336
+ <output>
1337
+ Bob (Scrum Master): [Acknowledges what {user_name} shared] "Thank you for that, {user_name}."
1338
+
1339
+ Bob (Scrum Master): "Alright team - great work today. We learned a lot from Epic {{epic_number}}. Let's use these insights to make Epic {{next_epic_num}} even better."
1340
+
1341
+ Bob (Scrum Master): "See you all when prep work is done. Meeting adjourned!"
1342
+
1343
+ ═══════════════════════════════════════════════════════════
1344
+ </output>
1345
+
1346
+ <action>Prepare to save retrospective summary document</action>
1347
+
1348
+ </step>
1349
+
1350
+ <step n="11" goal="Save Retrospective and Update Sprint Status">
1351
+
1352
+ <action>Ensure retrospectives folder exists: {implementation_artifacts}</action>
1353
+ <action>Create folder if it doesn't exist</action>
1354
+
1355
+ <action>Generate comprehensive retrospective summary document including:</action>
1356
+
1357
+ - Epic summary and metrics
1358
+ - Team participants
1359
+ - Successes and strengths identified
1360
+ - Challenges and growth areas
1361
+ - Key insights and learnings
1362
+ - Previous retro follow-through analysis (if applicable)
1363
+ - Next epic preview and dependencies
1364
+ - Action items with owners and timelines
1365
+ - Preparation tasks for next epic
1366
+ - Critical path items
1367
+ - Significant discoveries and epic update recommendations (if any)
1368
+ - Readiness assessment
1369
+ - Commitments and next steps
1370
+
1371
+ <action>Format retrospective document as readable markdown with clear sections</action>
1372
+ <action>Set filename: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md</action>
1373
+ <action>Save retrospective document</action>
1374
+
1375
+ <output>
1376
+ ✅ Retrospective document saved: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1377
+ </output>
1378
+
1379
+ <action>Update {sprint_status_file} to mark retrospective as completed</action>
1380
+
1381
+ <action>Load the FULL file: {sprint_status_file}</action>
1382
+ <action>Find development_status key "epic-{{epic_number}}-retrospective"</action>
1383
+ <action>Verify current status (typically "optional" or "pending")</action>
1384
+ <action>Update development_status["epic-{{epic_number}}-retrospective"] = "done"</action>
1385
+ <action>Update last_updated field to current date</action>
1386
+ <action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
1387
+
1388
+ <check if="update successful">
1389
+ <output>
1390
+ ✅ Retrospective marked as completed in {sprint_status_file}
1391
+
1392
+ Retrospective key: epic-{{epic_number}}-retrospective
1393
+ Status: {{previous_status}} → done
1394
+ </output>
1395
+ </check>
1396
+
1397
+ <check if="retrospective key not found">
1398
+ <output>
1399
+ ⚠️ Could not update retrospective status: epic-{{epic_number}}-retrospective not found in {sprint_status_file}
1400
+
1401
+ Retrospective document was saved successfully, but {sprint_status_file} may need manual update.
1402
+ </output>
1403
+ </check>
1404
+
1405
+ </step>
1406
+
1407
+ <step n="12" goal="Final Summary and Handoff">
1408
+
1409
+ <output>
1410
+ **✅ Retrospective Complete, {user_name}!**
1411
+
1412
+ **Epic Review:**
1413
+
1414
+ - Epic {{epic_number}}: {{epic_title}} reviewed
1415
+ - Retrospective Status: completed
1416
+ - Retrospective saved: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1417
+
1418
+ **Commitments Made:**
1419
+
1420
+ - Action Items: {{action_count}}
1421
+ - Preparation Tasks: {{prep_task_count}}
1422
+ - Critical Path Items: {{critical_count}}
1423
+
1424
+ **Next Steps:**
1425
+
1426
+ 1. **Review retrospective summary**: {implementation_artifacts}/epic-{{epic_number}}-retro-{date}.md
1427
+
1428
+ 2. **Execute preparation sprint** (Est: {{prep_days}} days)
1429
+ - Complete {{critical_count}} critical path items
1430
+ - Execute {{prep_task_count}} preparation tasks
1431
+ - Verify all action items are in progress
1432
+
1433
+ 3. **Review action items in next standup**
1434
+ - Ensure ownership is clear
1435
+ - Track progress on commitments
1436
+ - Adjust timelines if needed
1437
+
1438
+ {{#if epic_update_needed}} 4. **IMPORTANT: Schedule Epic {{next_epic_num}} planning review session**
1439
+
1440
+ - Significant discoveries from Epic {{epic_number}} require epic updates
1441
+ - Review and update affected stories
1442
+ - Align team on revised approach
1443
+ - Do NOT start Epic {{next_epic_num}} until review is complete
1444
+ {{else}}
1445
+
1446
+ 4. **Begin Epic {{next_epic_num}} when ready**
1447
+ - Start creating stories with SM agent's `create-story`
1448
+ - Epic will be marked as `in-progress` automatically when first story is created
1449
+ - Ensure all critical path items are done first
1450
+ {{/if}}
1451
+
1452
+ **Team Performance:**
1453
+ Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_summary}}. The retrospective surfaced {{insight_count}} key insights and {{significant_discovery_count}} significant discoveries. The team is well-positioned for Epic {{next_epic_num}} success.
1454
+
1455
+ {{#if significant_discovery_count > 0}}
1456
+ ⚠️ **REMINDER**: Epic update required before starting Epic {{next_epic_num}}
1457
+ {{/if}}
1458
+
1459
+ ---
1460
+
1461
+ Bob (Scrum Master): "Great session today, {user_name}. The team did excellent work."
1462
+
1463
+ Alice (Product Owner): "See you at epic planning!"
1464
+
1465
+ Charlie (Senior Dev): "Time to knock out that prep work."
1466
+
1467
+ </output>
1468
+
1469
+ </step>
1470
+
1471
+ </workflow>
1472
+
1473
+ <facilitation-guidelines>
1474
+ <guideline>PARTY MODE REQUIRED: All agent dialogue uses "Name (Role): dialogue" format</guideline>
1475
+ <guideline>Scrum Master maintains psychological safety throughout - no blame or judgment</guideline>
1476
+ <guideline>Focus on systems and processes, not individual performance</guideline>
1477
+ <guideline>Create authentic team dynamics: disagreements, diverse perspectives, emotions</guideline>
1478
+ <guideline>User ({user_name}) is active participant, not passive observer</guideline>
1479
+ <guideline>Encourage specific examples over general statements</guideline>
1480
+ <guideline>Balance celebration of wins with honest assessment of challenges</guideline>
1481
+ <guideline>Ensure every voice is heard - all agents contribute</guideline>
1482
+ <guideline>Action items must be specific, achievable, and owned</guideline>
1483
+ <guideline>Forward-looking mindset - how do we improve for next epic?</guideline>
1484
+ <guideline>Intent-based facilitation, not scripted phrases</guideline>
1485
+ <guideline>Deep story analysis provides rich material for discussion</guideline>
1486
+ <guideline>Previous retro integration creates accountability and continuity</guideline>
1487
+ <guideline>Significant change detection prevents epic misalignment</guideline>
1488
+ <guideline>Critical verification prevents starting next epic prematurely</guideline>
1489
+ <guideline>Document everything - retrospective insights are valuable for future reference</guideline>
1490
+ <guideline>Two-part structure ensures both reflection AND preparation</guideline>
1491
+ </facilitation-guidelines>