@azure-id/orc 0.55.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 (449) hide show
  1. package/CHANGELOG.md +2017 -0
  2. package/README-id.md +521 -0
  3. package/README.md +485 -0
  4. package/bin/build-agents.js +86 -0
  5. package/bin/cli.js +29050 -0
  6. package/bin/mockrun-catalog.js +267 -0
  7. package/bin/onboarding-content.js +172 -0
  8. package/bin/pricing.json +200 -0
  9. package/bin/providers.json +437 -0
  10. package/bin/ui.js +95 -0
  11. package/bin/verify-contracts.js +3277 -0
  12. package/bin/verify-package.js +498 -0
  13. package/bin/webui/api.js +1163 -0
  14. package/bin/webui/app.html +198 -0
  15. package/bin/webui/css/00-tokens.css +92 -0
  16. package/bin/webui/css/01-base.css +42 -0
  17. package/bin/webui/css/02-shell.css +103 -0
  18. package/bin/webui/css/03-components.css +462 -0
  19. package/bin/webui/css/04-motion.css +91 -0
  20. package/bin/webui/css/05-tour.css +100 -0
  21. package/bin/webui/css/06-responsive.css +108 -0
  22. package/bin/webui/css/panels/boundary.css +26 -0
  23. package/bin/webui/css/panels/challenge.css +151 -0
  24. package/bin/webui/css/panels/crosslink.css +194 -0
  25. package/bin/webui/css/panels/docs.css +254 -0
  26. package/bin/webui/css/panels/experiment.css +23 -0
  27. package/bin/webui/css/panels/extra.css +536 -0
  28. package/bin/webui/css/panels/flow.css +177 -0
  29. package/bin/webui/css/panels/handoff.css +67 -0
  30. package/bin/webui/css/panels/knowledge.css +86 -0
  31. package/bin/webui/css/panels/learn.css +154 -0
  32. package/bin/webui/css/panels/maintenance.css +55 -0
  33. package/bin/webui/css/panels/mockrun.css +268 -0
  34. package/bin/webui/css/panels/overview.css +100 -0
  35. package/bin/webui/css/panels/pact.css +43 -0
  36. package/bin/webui/css/panels/runs.css +105 -0
  37. package/bin/webui/css/panels/settings.css +227 -0
  38. package/bin/webui/css/panels/stats.css +87 -0
  39. package/bin/webui/fixtures/boundary.js +92 -0
  40. package/bin/webui/fixtures/challenge.js +825 -0
  41. package/bin/webui/fixtures/crosslink.js +31 -0
  42. package/bin/webui/fixtures/docs.js +982 -0
  43. package/bin/webui/fixtures/extra.js +1934 -0
  44. package/bin/webui/fixtures/flow.js +81 -0
  45. package/bin/webui/fixtures/handoff.js +35 -0
  46. package/bin/webui/fixtures/index.js +486 -0
  47. package/bin/webui/fixtures/knowledge.js +291 -0
  48. package/bin/webui/fixtures/maintenance.js +42 -0
  49. package/bin/webui/fixtures/mockrun.js +36 -0
  50. package/bin/webui/fixtures/pact.js +111 -0
  51. package/bin/webui/fixtures/runs.js +109 -0
  52. package/bin/webui/fixtures/settings.js +78 -0
  53. package/bin/webui/fixtures/shell.js +48 -0
  54. package/bin/webui/fixtures/stats.js +104 -0
  55. package/bin/webui/i18n/TERMS.md +134 -0
  56. package/bin/webui/i18n/en/banner.json +29 -0
  57. package/bin/webui/i18n/en/boundary.json +20 -0
  58. package/bin/webui/i18n/en/challenge.json +106 -0
  59. package/bin/webui/i18n/en/common.json +69 -0
  60. package/bin/webui/i18n/en/crosslink.json +69 -0
  61. package/bin/webui/i18n/en/docs.json +175 -0
  62. package/bin/webui/i18n/en/experiment.json +17 -0
  63. package/bin/webui/i18n/en/extra.json +313 -0
  64. package/bin/webui/i18n/en/flow.json +30 -0
  65. package/bin/webui/i18n/en/handoff.json +37 -0
  66. package/bin/webui/i18n/en/knowledge.json +141 -0
  67. package/bin/webui/i18n/en/learn.json +16 -0
  68. package/bin/webui/i18n/en/maintenance.json +52 -0
  69. package/bin/webui/i18n/en/mockrun.json +19 -0
  70. package/bin/webui/i18n/en/nav.json +19 -0
  71. package/bin/webui/i18n/en/overview.json +89 -0
  72. package/bin/webui/i18n/en/pact.json +36 -0
  73. package/bin/webui/i18n/en/runs.json +51 -0
  74. package/bin/webui/i18n/en/settings.json +49 -0
  75. package/bin/webui/i18n/en/stats.json +69 -0
  76. package/bin/webui/i18n/en/tour.json +33 -0
  77. package/bin/webui/i18n/id/banner.json +29 -0
  78. package/bin/webui/i18n/id/boundary.json +20 -0
  79. package/bin/webui/i18n/id/challenge.json +106 -0
  80. package/bin/webui/i18n/id/common.json +70 -0
  81. package/bin/webui/i18n/id/crosslink.json +69 -0
  82. package/bin/webui/i18n/id/docs.json +175 -0
  83. package/bin/webui/i18n/id/experiment.json +17 -0
  84. package/bin/webui/i18n/id/extra.json +313 -0
  85. package/bin/webui/i18n/id/flow.json +30 -0
  86. package/bin/webui/i18n/id/handoff.json +37 -0
  87. package/bin/webui/i18n/id/knowledge.json +141 -0
  88. package/bin/webui/i18n/id/learn.json +16 -0
  89. package/bin/webui/i18n/id/maintenance.json +52 -0
  90. package/bin/webui/i18n/id/mockrun.json +19 -0
  91. package/bin/webui/i18n/id/nav.json +19 -0
  92. package/bin/webui/i18n/id/overview.json +89 -0
  93. package/bin/webui/i18n/id/pact.json +36 -0
  94. package/bin/webui/i18n/id/runs.json +51 -0
  95. package/bin/webui/i18n/id/settings.json +49 -0
  96. package/bin/webui/i18n/id/stats.json +69 -0
  97. package/bin/webui/i18n/id/tour.json +33 -0
  98. package/bin/webui/js/00-core.js +115 -0
  99. package/bin/webui/js/01-i18n.js +149 -0
  100. package/bin/webui/js/02-ui.js +211 -0
  101. package/bin/webui/js/03-md.js +286 -0
  102. package/bin/webui/js/04-router.js +51 -0
  103. package/bin/webui/js/05-banners.js +172 -0
  104. package/bin/webui/js/06-edit.js +183 -0
  105. package/bin/webui/js/90-tour.js +488 -0
  106. package/bin/webui/js/91-shortcuts.js +126 -0
  107. package/bin/webui/js/99-boot.js +118 -0
  108. package/bin/webui/js/panels/boundary.js +104 -0
  109. package/bin/webui/js/panels/challenge.js +781 -0
  110. package/bin/webui/js/panels/crosslink.js +654 -0
  111. package/bin/webui/js/panels/docs.js +1338 -0
  112. package/bin/webui/js/panels/experiment.js +98 -0
  113. package/bin/webui/js/panels/extra.js +3011 -0
  114. package/bin/webui/js/panels/flow.js +297 -0
  115. package/bin/webui/js/panels/handoff.js +169 -0
  116. package/bin/webui/js/panels/knowledge.js +890 -0
  117. package/bin/webui/js/panels/learn.js +220 -0
  118. package/bin/webui/js/panels/maintenance.js +235 -0
  119. package/bin/webui/js/panels/mockrun.js +227 -0
  120. package/bin/webui/js/panels/overview.js +447 -0
  121. package/bin/webui/js/panels/pact.js +189 -0
  122. package/bin/webui/js/panels/runs.js +416 -0
  123. package/bin/webui/js/panels/settings.js +573 -0
  124. package/bin/webui/js/panels/stats.js +378 -0
  125. package/bin/webui/serve.js +557 -0
  126. package/mock-run/INDEX.md +106 -0
  127. package/mock-run/a-normal-day.md +587 -0
  128. package/mock-run/context-combiner.md +100 -0
  129. package/mock-run/extra-recovery.md +330 -0
  130. package/mock-run/extra-slots.md +177 -0
  131. package/mock-run/media/README.md +43 -0
  132. package/mock-run/orc-aftermath.md +392 -0
  133. package/mock-run/orc-boundary.md +356 -0
  134. package/mock-run/orc-brainstorm.md +177 -0
  135. package/mock-run/orc-budget.md +534 -0
  136. package/mock-run/orc-challenge-council.md +262 -0
  137. package/mock-run/orc-challenge.md +416 -0
  138. package/mock-run/orc-cli.md +200 -0
  139. package/mock-run/orc-diy.md +129 -0
  140. package/mock-run/orc-doc.md +448 -0
  141. package/mock-run/orc-explain.md +86 -0
  142. package/mock-run/orc-export.md +423 -0
  143. package/mock-run/orc-extra.md +392 -0
  144. package/mock-run/orc-fast.md +106 -0
  145. package/mock-run/orc-grill.md +151 -0
  146. package/mock-run/orc-handoff.md +480 -0
  147. package/mock-run/orc-pact.md +421 -0
  148. package/mock-run/orc-pattern.md +112 -0
  149. package/mock-run/orc-plan.md +108 -0
  150. package/mock-run/orc-pr-setup.md +126 -0
  151. package/mock-run/orc-quick.md +113 -0
  152. package/mock-run/orc-route.md +93 -0
  153. package/mock-run/orc-ui.md +125 -0
  154. package/mock-run/orc-ultra.md +103 -0
  155. package/mock-run/orc.md +157 -0
  156. package/mock-run/the-example-project.md +55 -0
  157. package/package.json +39 -0
  158. package/templates/agents/MODEL-MAPPING.md +168 -0
  159. package/templates/agents/orc-advisor-fable-5.md +50 -0
  160. package/templates/agents/orc-advisor-opus-5-xhigh.md +56 -0
  161. package/templates/agents/orc-analyst-fable-5.md +115 -0
  162. package/templates/agents/orc-analyze-mini-opus-5-med.md +60 -0
  163. package/templates/agents/orc-analyze-mini-sonnet-5-high.md +58 -0
  164. package/templates/agents/orc-challenge-advisor-opus-5-med.md +75 -0
  165. package/templates/agents/orc-challenge-contrarian-opus-5-high.md +110 -0
  166. package/templates/agents/orc-challenge-executor-opus-5-med.md +114 -0
  167. package/templates/agents/orc-challenge-expansionist-opus-5-med.md +112 -0
  168. package/templates/agents/orc-challenge-judge-opus-5-high.md +132 -0
  169. package/templates/agents/orc-challenge-outsider-opus-5-low.md +109 -0
  170. package/templates/agents/orc-challenge-principles-opus-5-high.md +109 -0
  171. package/templates/agents/orc-challenge-reader-opus-5-low.md +90 -0
  172. package/templates/agents/orc-claude-writer-opus-4-8-high.md +53 -0
  173. package/templates/agents/orc-claude-writer-opus-5-med.md +55 -0
  174. package/templates/agents/orc-context-combiner-opus-5-high.md +88 -0
  175. package/templates/agents/orc-doc-checker-opus-5-low.md +108 -0
  176. package/templates/agents/orc-doc-writer-opus-5-med.md +134 -0
  177. package/templates/agents/orc-executor-haiku-4-5.md +113 -0
  178. package/templates/agents/orc-executor-opus-4-7-high.md +114 -0
  179. package/templates/agents/orc-executor-opus-4-7-med.md +114 -0
  180. package/templates/agents/orc-executor-opus-4-8-high.md +114 -0
  181. package/templates/agents/orc-executor-opus-5-high.md +114 -0
  182. package/templates/agents/orc-executor-opus-5-low.md +114 -0
  183. package/templates/agents/orc-executor-opus-5-med.md +114 -0
  184. package/templates/agents/orc-executor-sonnet-4-6-high.md +114 -0
  185. package/templates/agents/orc-executor-sonnet-4-6-med.md +114 -0
  186. package/templates/agents/orc-executor-sonnet-5-high.md +114 -0
  187. package/templates/agents/orc-judge-fable-5.md +79 -0
  188. package/templates/agents/orc-judge-opus-5-xhigh.md +85 -0
  189. package/templates/agents/orc-learn-writer-opus-5-low.md +73 -0
  190. package/templates/agents/orc-pattern-codifier-opus-5-med.md +65 -0
  191. package/templates/agents/orc-pattern-codifier-sonnet-5-high.md +63 -0
  192. package/templates/agents/orc-planner-fable-5.md +152 -0
  193. package/templates/agents/orc-planner-mini-opus-5-med.md +69 -0
  194. package/templates/agents/orc-planner-mini-sonnet-5-high.md +67 -0
  195. package/templates/agents/orc-planner-opus-5-med.md +160 -0
  196. package/templates/agents/orc-retro-opus-5-med.md +73 -0
  197. package/templates/agents/orc-retro-sonnet-5-high.md +72 -0
  198. package/templates/agents/orc-reviewer-fable-5.md +57 -0
  199. package/templates/agents/orc-reviewer-opus-5-med.md +60 -0
  200. package/templates/agents/orc-scout-opus-5-low.md +40 -0
  201. package/templates/agents/orc-scout-sonnet-4-6-high.md +39 -0
  202. package/templates/agents/orc-system-analyst-opus-5-high.md +120 -0
  203. package/templates/agents/orc-test-author-opus-5-med.md +71 -0
  204. package/templates/agents/orc-trace-writer-haiku-4-5.md +107 -0
  205. package/templates/agents/orc-verifier-opus-5-med.md +69 -0
  206. package/templates/agents/orc-wiki-scanner-opus-4-8-high.md +79 -0
  207. package/templates/agents/orc-wiki-scanner-opus-5-med.md +81 -0
  208. package/templates/agents/orc-wiki-scanner-sonnet-5-high.md +106 -0
  209. package/templates/commands/orc-aftermath.md +49 -0
  210. package/templates/commands/orc-analyze.md +21 -0
  211. package/templates/commands/orc-boundary.md +46 -0
  212. package/templates/commands/orc-brainstorm.md +51 -0
  213. package/templates/commands/orc-budget.md +54 -0
  214. package/templates/commands/orc-challenge.md +58 -0
  215. package/templates/commands/orc-claude.md +14 -0
  216. package/templates/commands/orc-diy.md +13 -0
  217. package/templates/commands/orc-doc.md +128 -0
  218. package/templates/commands/orc-explain.md +20 -0
  219. package/templates/commands/orc-export.md +46 -0
  220. package/templates/commands/orc-fast.md +15 -0
  221. package/templates/commands/orc-grill.md +40 -0
  222. package/templates/commands/orc-handoff.md +52 -0
  223. package/templates/commands/orc-learn.md +17 -0
  224. package/templates/commands/orc-mini.md +12 -0
  225. package/templates/commands/orc-pact.md +44 -0
  226. package/templates/commands/orc-pattern.md +15 -0
  227. package/templates/commands/orc-plan.md +22 -0
  228. package/templates/commands/orc-poly.md +21 -0
  229. package/templates/commands/orc-pr-driver.md +30 -0
  230. package/templates/commands/orc-pr-setup.md +31 -0
  231. package/templates/commands/orc-quick.md +33 -0
  232. package/templates/commands/orc-retro.md +17 -0
  233. package/templates/commands/orc-route.md +41 -0
  234. package/templates/commands/orc-ultra.md +17 -0
  235. package/templates/commands/orc-verify.md +11 -0
  236. package/templates/commands/orc-wiki.md +42 -0
  237. package/templates/commands/orc.md +16 -0
  238. package/templates/hooks/orc-effort-guard.js +178 -0
  239. package/templates/hooks/orc-statusline.js +305 -0
  240. package/templates/hooks/orc-trace.js +471 -0
  241. package/templates/hooks/orc-update-lib.js +125 -0
  242. package/templates/skills/_shared/README.md +50 -0
  243. package/templates/skills/_shared/detecting-artifacts.md +90 -0
  244. package/templates/skills/_shared/drift-recovery.md +98 -0
  245. package/templates/skills/_shared/extra-dispatch.md +1051 -0
  246. package/templates/skills/_shared/fable5-override.md +56 -0
  247. package/templates/skills/_shared/fallback-handoff.md +42 -0
  248. package/templates/skills/_shared/gh-stack-commands.md +65 -0
  249. package/templates/skills/_shared/gotchas.md +177 -0
  250. package/templates/skills/_shared/interview.md +144 -0
  251. package/templates/skills/_shared/lane-suspend.md +82 -0
  252. package/templates/skills/_shared/opus5-only.md +131 -0
  253. package/templates/skills/_shared/pr-templates.md +106 -0
  254. package/templates/skills/_shared/read-ladder.md +54 -0
  255. package/templates/skills/_shared/return-validation.md +145 -0
  256. package/templates/skills/_shared/smoke-gate.md +28 -0
  257. package/templates/skills/_shared/stack-plan.md +135 -0
  258. package/templates/skills/_shared/untrusted-input.md +63 -0
  259. package/templates/skills/context-combiner/SKILL.md +187 -0
  260. package/templates/skills/context-combiner/schemas/combined-report.md +78 -0
  261. package/templates/skills/context-combiner/schemas/combined-requirement-spec.md +87 -0
  262. package/templates/skills/orc/README.md +150 -0
  263. package/templates/skills/orc/SKILL.md +526 -0
  264. package/templates/skills/orc/config.md +389 -0
  265. package/templates/skills/orc/examples/full-run-mock.md +73 -0
  266. package/templates/skills/orc/references/analyst-gates.md +124 -0
  267. package/templates/skills/orc/references/effort-and-mode.md +224 -0
  268. package/templates/skills/orc/references/house-rules.md +20 -0
  269. package/templates/skills/orc/references/intake.md +120 -0
  270. package/templates/skills/orc/references/log-protocol.md +39 -0
  271. package/templates/skills/orc/references/pattern-gate.md +89 -0
  272. package/templates/skills/orc/references/plan-handoff.md +84 -0
  273. package/templates/skills/orc/references/preflight-report.md +220 -0
  274. package/templates/skills/orc/references/security-checklist.md +39 -0
  275. package/templates/skills/orc/references/stop-and-resume.md +160 -0
  276. package/templates/skills/orc/references/trace-protocol.md +314 -0
  277. package/templates/skills/orc/references/ultra-mode.md +123 -0
  278. package/templates/skills/orc/references/wave-grouping.md +121 -0
  279. package/templates/skills/orc/references/wiki-consult.md +177 -0
  280. package/templates/skills/orc/schemas/checkpoint.md +122 -0
  281. package/templates/skills/orc/schemas/intent-spec.md +42 -0
  282. package/templates/skills/orc/schemas/planning-output.md +279 -0
  283. package/templates/skills/orc/subskills/orc-checkpoint/SKILL.md +55 -0
  284. package/templates/skills/orc/subskills/orc-execution/SKILL.md +72 -0
  285. package/templates/skills/orc/subskills/orc-execution/core.md +151 -0
  286. package/templates/skills/orc/subskills/orc-execution/subagent.md +13 -0
  287. package/templates/skills/orc/subskills/orc-planner/SKILL.md +264 -0
  288. package/templates/skills/orc/subskills/orc-planner-mini/SKILL.md +121 -0
  289. package/templates/skills/orc/subskills/orc-pr/SKILL.md +51 -0
  290. package/templates/skills/orc/subskills/orc-pr/pr.md +22 -0
  291. package/templates/skills/orc/subskills/orc-pr/stack-gate.md +108 -0
  292. package/templates/skills/orc/subskills/orc-review-verify/SKILL.md +76 -0
  293. package/templates/skills/orc/subskills/orc-review-verify/core.md +135 -0
  294. package/templates/skills/orc/subskills/orc-review-verify/subagent.md +7 -0
  295. package/templates/skills/orc/subskills/orc-testgen/SKILL.md +45 -0
  296. package/templates/skills/orc/subskills/orc-testgen/core.md +59 -0
  297. package/templates/skills/orc/subskills/orc-testgen/subagent.md +7 -0
  298. package/templates/skills/orc-advisor/SKILL.md +60 -0
  299. package/templates/skills/orc-aftermath/SKILL.md +136 -0
  300. package/templates/skills/orc-aftermath/references/report.md +95 -0
  301. package/templates/skills/orc-analyze/SKILL.md +220 -0
  302. package/templates/skills/orc-analyze/examples/analyze-mock.md +42 -0
  303. package/templates/skills/orc-analyze/references/branching.md +51 -0
  304. package/templates/skills/orc-analyze/references/deep-mode.md +27 -0
  305. package/templates/skills/orc-analyze/references/thin-input.md +77 -0
  306. package/templates/skills/orc-analyze/schemas/report-audit.md +83 -0
  307. package/templates/skills/orc-analyze/schemas/report-prose.md +63 -0
  308. package/templates/skills/orc-analyze/schemas/report-requirement.md +78 -0
  309. package/templates/skills/orc-analyze/schemas/requirement-spec.md +77 -0
  310. package/templates/skills/orc-analyze-mini/SKILL.md +112 -0
  311. package/templates/skills/orc-analyze-mini/examples/quick-analysis-mock.md +31 -0
  312. package/templates/skills/orc-boundary/SKILL.md +208 -0
  313. package/templates/skills/orc-boundary/references/card.md +78 -0
  314. package/templates/skills/orc-boundary/references/gate.md +113 -0
  315. package/templates/skills/orc-brainstorm/SKILL.md +339 -0
  316. package/templates/skills/orc-brainstorm/references/brainstorm-doc.md +133 -0
  317. package/templates/skills/orc-brainstorm/references/lenses.md +152 -0
  318. package/templates/skills/orc-budget/SKILL.md +225 -0
  319. package/templates/skills/orc-budget/references/corpus.md +87 -0
  320. package/templates/skills/orc-challenge/README.md +142 -0
  321. package/templates/skills/orc-challenge/SKILL.md +255 -0
  322. package/templates/skills/orc-challenge/examples/code-module.md +110 -0
  323. package/templates/skills/orc-challenge/examples/council-full-roster.md +273 -0
  324. package/templates/skills/orc-challenge/examples/tsd-two-iterations.md +213 -0
  325. package/templates/skills/orc-challenge/references/conservation.md +107 -0
  326. package/templates/skills/orc-challenge/references/council.md +315 -0
  327. package/templates/skills/orc-challenge/references/cycle-state.md +185 -0
  328. package/templates/skills/orc-challenge/references/dimensions.md +121 -0
  329. package/templates/skills/orc-challenge/references/fix-brief.md +130 -0
  330. package/templates/skills/orc-challenge/references/intake.md +171 -0
  331. package/templates/skills/orc-challenge/references/kinds.md +44 -0
  332. package/templates/skills/orc-challenge/references/plain-english.md +98 -0
  333. package/templates/skills/orc-challenge/references/rubric.md +109 -0
  334. package/templates/skills/orc-challenge/references/sealed-slice.md +97 -0
  335. package/templates/skills/orc-challenge/references/verdict-doc.md +154 -0
  336. package/templates/skills/orc-claude/SKILL.md +199 -0
  337. package/templates/skills/orc-claude/examples/claude-run-mock.md +65 -0
  338. package/templates/skills/orc-claude/references/refresh.md +76 -0
  339. package/templates/skills/orc-claude/references/template.md +109 -0
  340. package/templates/skills/orc-diy/README.md +142 -0
  341. package/templates/skills/orc-diy/SKILL.md +70 -0
  342. package/templates/skills/orc-diy/references/blocks/analyze.md +24 -0
  343. package/templates/skills/orc-diy/references/blocks/execution.md +42 -0
  344. package/templates/skills/orc-diy/references/blocks/extra.md +55 -0
  345. package/templates/skills/orc-diy/references/blocks/header.md +55 -0
  346. package/templates/skills/orc-diy/references/blocks/mock-example.md +22 -0
  347. package/templates/skills/orc-diy/references/blocks/pattern.md +18 -0
  348. package/templates/skills/orc-diy/references/blocks/planning.md +34 -0
  349. package/templates/skills/orc-diy/references/blocks/review.md +18 -0
  350. package/templates/skills/orc-diy/references/blocks/scoring.md +16 -0
  351. package/templates/skills/orc-diy/references/blocks/security.md +25 -0
  352. package/templates/skills/orc-diy/references/blocks/ship.md +25 -0
  353. package/templates/skills/orc-diy/references/blocks/summary.md +18 -0
  354. package/templates/skills/orc-diy/references/blocks/testgen.md +17 -0
  355. package/templates/skills/orc-diy/references/blocks/trace.md +28 -0
  356. package/templates/skills/orc-diy/references/blocks/verify.md +25 -0
  357. package/templates/skills/orc-diy/references/blocks/wiki.md +26 -0
  358. package/templates/skills/orc-diy/references/compile.md +59 -0
  359. package/templates/skills/orc-diy/references/flow-schema.md +100 -0
  360. package/templates/skills/orc-diy/references/locked-blocks.md +37 -0
  361. package/templates/skills/orc-doc/README.md +229 -0
  362. package/templates/skills/orc-doc/SKILL.md +444 -0
  363. package/templates/skills/orc-doc/examples/orc-doc-prd-run.md +325 -0
  364. package/templates/skills/orc-doc/references/chunking.md +527 -0
  365. package/templates/skills/orc-doc/references/gates.md +311 -0
  366. package/templates/skills/orc-doc/references/generation-rules.md +122 -0
  367. package/templates/skills/orc-doc/references/house-rules.md +170 -0
  368. package/templates/skills/orc-doc/references/import-targets.md +40 -0
  369. package/templates/skills/orc-doc/references/plain-language.md +66 -0
  370. package/templates/skills/orc-doc/references/portable-markdown.md +74 -0
  371. package/templates/skills/orc-doc/references/resume-protocol.md +228 -0
  372. package/templates/skills/orc-doc/references/templates/collaboration.md +118 -0
  373. package/templates/skills/orc-doc/references/templates/prd.md +133 -0
  374. package/templates/skills/orc-doc/references/templates/report.md +102 -0
  375. package/templates/skills/orc-doc/references/templates/tsd.md +122 -0
  376. package/templates/skills/orc-doc/references/templates/workflow.md +112 -0
  377. package/templates/skills/orc-explain/SKILL.md +57 -0
  378. package/templates/skills/orc-export/SKILL.md +154 -0
  379. package/templates/skills/orc-fast/SKILL.md +188 -0
  380. package/templates/skills/orc-grill/SKILL.md +207 -0
  381. package/templates/skills/orc-grill/references/grill-doc.md +105 -0
  382. package/templates/skills/orc-handoff/SKILL.md +204 -0
  383. package/templates/skills/orc-handoff/references/handoff-log.md +67 -0
  384. package/templates/skills/orc-handoff/references/surfaces.md +88 -0
  385. package/templates/skills/orc-judge/SKILL.md +82 -0
  386. package/templates/skills/orc-learn/SKILL.md +156 -0
  387. package/templates/skills/orc-learn/examples/learn-run-mock.md +61 -0
  388. package/templates/skills/orc-learn/references/deepen.md +70 -0
  389. package/templates/skills/orc-learn/references/refresh.md +65 -0
  390. package/templates/skills/orc-learn/references/template-knowledge.md +83 -0
  391. package/templates/skills/orc-learn/references/template-learning.md +67 -0
  392. package/templates/skills/orc-mini/SKILL.md +226 -0
  393. package/templates/skills/orc-mini/examples/mini-run-mock.md +50 -0
  394. package/templates/skills/orc-pact/SKILL.md +218 -0
  395. package/templates/skills/orc-pact/references/gate.md +70 -0
  396. package/templates/skills/orc-pact/references/ledger.md +99 -0
  397. package/templates/skills/orc-pattern/SKILL.md +124 -0
  398. package/templates/skills/orc-pattern/references/INDEX.md +73 -0
  399. package/templates/skills/orc-pattern/references/be-django.md +80 -0
  400. package/templates/skills/orc-pattern/references/be-express.md +82 -0
  401. package/templates/skills/orc-pattern/references/be-fastapi.md +107 -0
  402. package/templates/skills/orc-pattern/references/be-go.md +96 -0
  403. package/templates/skills/orc-pattern/references/be-nestjs.md +86 -0
  404. package/templates/skills/orc-pattern/references/be-postgres.md +98 -0
  405. package/templates/skills/orc-pattern/references/fe-a11y.md +36 -0
  406. package/templates/skills/orc-pattern/references/fe-angular.md +87 -0
  407. package/templates/skills/orc-pattern/references/fe-nextjs.md +65 -0
  408. package/templates/skills/orc-pattern/references/fe-perf.md +39 -0
  409. package/templates/skills/orc-pattern/references/fe-react.md +83 -0
  410. package/templates/skills/orc-pattern/references/fe-vue.md +75 -0
  411. package/templates/skills/orc-pattern/schemas/pattern-doc.md +62 -0
  412. package/templates/skills/orc-poly/SKILL.md +216 -0
  413. package/templates/skills/orc-poly/examples/poly-run-mock.md +51 -0
  414. package/templates/skills/orc-poly/references/gather.md +70 -0
  415. package/templates/skills/orc-poly/references/poly-spec.md +84 -0
  416. package/templates/skills/orc-pr-driver/README.md +349 -0
  417. package/templates/skills/orc-pr-driver/SKILL.md +167 -0
  418. package/templates/skills/orc-pr-driver/references/conflict-playbook.md +78 -0
  419. package/templates/skills/orc-pr-driver/references/green-gate.md +105 -0
  420. package/templates/skills/orc-pr-driver/references/orc-run-split.md +99 -0
  421. package/templates/skills/orc-pr-setup/README.md +436 -0
  422. package/templates/skills/orc-pr-setup/SKILL.md +184 -0
  423. package/templates/skills/orc-pr-setup/references/certainty-gate.md +66 -0
  424. package/templates/skills/orc-pr-setup/references/layer-taxonomy.md +67 -0
  425. package/templates/skills/orc-quick/README.md +423 -0
  426. package/templates/skills/orc-quick/SKILL.md +306 -0
  427. package/templates/skills/orc-quick/references/context-doc.md +114 -0
  428. package/templates/skills/orc-quick/references/dispatch-gate.md +163 -0
  429. package/templates/skills/orc-quick/references/gh-mode.md +127 -0
  430. package/templates/skills/orc-retro/SKILL.md +222 -0
  431. package/templates/skills/orc-retro/examples/retro-mock.md +171 -0
  432. package/templates/skills/orc-route/SKILL.md +165 -0
  433. package/templates/skills/orc-verify/SKILL.md +86 -0
  434. package/templates/skills/orc-verify/examples/verify-mock.md +33 -0
  435. package/templates/skills/orc-wiki/README.md +325 -0
  436. package/templates/skills/orc-wiki/SKILL.md +322 -0
  437. package/templates/skills/orc-wiki/examples/wiki-run-mock.md +37 -0
  438. package/templates/skills/orc-wiki/references/claude-md-injection.md +61 -0
  439. package/templates/skills/orc-wiki/references/crosslink-compile.md +39 -0
  440. package/templates/skills/orc-wiki/references/crosslink-kinds.md +57 -0
  441. package/templates/skills/orc-wiki/references/crosslink.md +284 -0
  442. package/templates/skills/orc-wiki/references/extra.md +79 -0
  443. package/templates/skills/orc-wiki/references/integrity-check.md +86 -0
  444. package/templates/skills/orc-wiki/references/orientation.md +51 -0
  445. package/templates/skills/orc-wiki/references/partial-refresh.md +203 -0
  446. package/templates/skills/orc-wiki/references/pattern-prewarm.md +19 -0
  447. package/templates/skills/orc-wiki/references/staleness.md +288 -0
  448. package/templates/skills/orc-wiki/schemas/crosslink-tag.md +166 -0
  449. package/templates/skills/orc-wiki/schemas/wiki-doc.md +120 -0
@@ -0,0 +1,448 @@
1
+ # Mock run — `/orc-doc`
2
+
3
+ > You want a long document written down. This lane writes it in parts, so
4
+ > nothing ever has to hold the whole thing at once — and you can come back to it
5
+ > months later without explaining anything twice.
6
+
7
+ ---
8
+
9
+ ## 1. What it does
10
+
11
+ You bring a context: what you want said, and about what. You leave with a
12
+ Markdown file that imports cleanly into Notion, Obsidian, Google Docs, Coda,
13
+ Craft and GitHub — plus one line that picks the work up in a brand-new session.
14
+
15
+ The rule the whole lane is built around:
16
+
17
+ > **ORC never reads the document body.**
18
+
19
+ A 900-line design document is about 30,000 tokens. Read it three times and the
20
+ session is over. So nothing that holds context ever holds the document:
21
+
22
+ | Who | What they hold |
23
+ |---|---|
24
+ | **ORC** | a map: heading, line range, fingerprint, state — one line per section |
25
+ | **Each writer** | ONE section file, and nothing else |
26
+ | **Each checker** | ONE section file, read from its first line |
27
+ | **Nobody** | the whole document |
28
+
29
+ And the second rule, which is what makes all of that cheap to come back to:
30
+
31
+ > **The folder is the document. `document.md` is just built from it.**
32
+
33
+ Each section is its own file in `sections/`. You can open one, change one line,
34
+ and see it in a pull request. `document.md` is rebuilt from those files whenever
35
+ you ask, and rebuilding costs **nothing at all**.
36
+
37
+ Five kinds of document: `prd` · `tsd` · `collaboration` · `report` · `workflow`.
38
+
39
+ ---
40
+
41
+ ## 2. What you type
42
+
43
+ ```
44
+ /orc-doc
45
+ ```
46
+
47
+ ---
48
+
49
+ ## 3. It asks four things, in this order
50
+
51
+ The first one blocks. The rest have defaults you can accept.
52
+
53
+ ```
54
+ What do you want this document to say?
55
+
56
+ A paragraph is plenty — the problem, the change, or the decision you want
57
+ written down. If you would rather talk it through first, /orc-brainstorm or
58
+ /orc-grill will get you there and hand back here.
59
+ ```
60
+
61
+ You:
62
+
63
+ ```
64
+ We are adding refunds to checkout. Finance wants a limit on how much a single
65
+ agent can refund per day, and the mobile team needs to know what the API looks
66
+ like before they start. Write the PRD.
67
+ ```
68
+
69
+ Nothing has been created yet. **A folder with no context in it is
70
+ indistinguishable from an abandoned run**, so no folder exists until this
71
+ question is answered.
72
+
73
+ ```
74
+ Any files I should read first?
75
+
76
+ Paste paths, one per line — a spec, an old version, meeting notes, a ticket
77
+ export. Say "none" if there are none.
78
+ ```
79
+
80
+ You paste two paths. ORC checks both exist, then **dispatches one agent per
81
+ file** to read them. It does not read them itself. What comes back is a digest:
82
+ the claims that matter, each anchored to `file:line`, plus an explicit list of
83
+ what the file did *not* cover.
84
+
85
+ ```
86
+ Do you have your own template for this?
87
+
88
+ Give me the path and I will follow its headings exactly. Otherwise I will use
89
+ ORC's base PRD template — and I will show you the section list before writing
90
+ a word.
91
+ ```
92
+
93
+ You say no.
94
+
95
+ ```
96
+ Four more, and every one has a suggested answer you can just accept:
97
+
98
+ 1 What is this document for? → the decision it should unblock
99
+ 2 Who reads it? → suggested: the mobile team and finance
100
+ 3 What must they be able to do? → suggested: build against it without asking
101
+ 4 Language? → en
102
+ 5 Which type? → PRD
103
+ 6 Where will it end up? → Notion
104
+ 7 How long? → standard
105
+ ```
106
+
107
+ "Where will it end up" is a real setting, not a nicety. Notion has **three**
108
+ heading levels, so under `--target notion` an H4 is an **error**, not a style
109
+ note.
110
+
111
+ ---
112
+
113
+ ## 4. The outline, before a word is written
114
+
115
+ ```
116
+ PRD — Checkout refunds 17 sections
117
+
118
+ 1 Document info 20 L
119
+ 2 Summary 30 L
120
+ 3 Problem and context 90 L
121
+ 4 Goals and success metrics 80 L
122
+ 5 Non-goals 40 L
123
+
124
+ 17 Revision history 20 L
125
+
126
+ Look right? Changing this after the writing starts is what costs money.
127
+ ```
128
+
129
+ ---
130
+
131
+ ## 5. The write wave
132
+
133
+ ORC does not decide how to split the work. The CLI does:
134
+
135
+ ```
136
+ $ orc doc plan prd-checkout-refund-130826 --role write
137
+
138
+ wave 1
139
+ orc-doc-writer-opus-5-med 260L 01-document-info + 02-summary + 03-problem-and-context + 04-goals + 05-non-goals
140
+ -> sections/01-document-info.md
141
+ -> sections/02-summary.md
142
+ -> sections/03-problem-and-context.md
143
+ -> sections/04-goals-and-success-metrics.md
144
+ -> sections/05-non-goals.md
145
+ orc-doc-writer-opus-5-med 180L 06-users + 07-scenarios
146
+ -> sections/06-users-and-jobs-to-be-done.md
147
+ -> sections/07-scenarios-and-user-stories.md
148
+
149
+ 2 agents in this wave.
150
+ partial mode: 4 later waves not returned. Read wave 1's files, then ask for the next.
151
+ ```
152
+
153
+ Four rules you can see in that output:
154
+
155
+ - **A section is never split across two agents.** Half a section is half an idea.
156
+ - **One file per section.** A slice with five sections writes five files — never
157
+ one file with five sections in it.
158
+ - **Two agents at a time, and two is a hard cap.** More writers is more chances
159
+ for the outline to drift.
160
+ - **Sections that talk about each other stay together.** Goals and Non-goals are
161
+ in one slice, because keeping them consistent is free and checking it is not.
162
+
163
+ Each writer owns **one file**. No two agents ever share one.
164
+
165
+ ---
166
+
167
+ ## 5b. Every wave is a place you can stop
168
+
169
+ At the end of each wave, this is what you see:
170
+
171
+ ```
172
+ Wave 1 of 5 done — 7 of 17 sections written.
173
+
174
+ orc/orc-doc/prd-checkout-refund-130826/sections/01-document-info.md 22 L
175
+ orc/orc-doc/prd-checkout-refund-130826/sections/02-summary.md 17 L
176
+ orc/orc-doc/prd-checkout-refund-130826/sections/03-problem-and-context.md 77 L
177
+
178
+
179
+ Read them now if you want to redirect — nothing later is bought yet.
180
+ See it as one file (free): orc doc compile prd-checkout-refund-130826 --partial
181
+
182
+ To carry on — new session, or after your usage limit resets:
183
+
184
+ /orc-doc resume prd-checkout-refund-130826
185
+
186
+ Everything needed is on disk. The next session starts at wave 2 and re-reads
187
+ nothing it already wrote.
188
+ ```
189
+
190
+ That is the point of writing one wave at a time. If the first wave went the wrong
191
+ way, you have paid for one wave. And if your usage limit runs out here, nothing
192
+ is lost: the files on disk **are** the progress.
193
+
194
+ ---
195
+
196
+ ## 6. Compile, then the free check, then the paid one
197
+
198
+ Compiling just joins the section files into one document, in the order you
199
+ agreed. It uses no model at all, so you can do it as often as you like.
200
+
201
+ ```
202
+ ✓ compiled 17 sections → orc/orc-doc/prd-checkout-refund-130826/document.md (487 lines)
203
+
204
+ orc doc lint — document.md → Notion
205
+
206
+ 2 errors · 6 warnings · 487 lines
207
+ readability: avg 21.4 words/sentence (bar 20) · longest 47 → L141 · 31 passive
208
+
209
+ D-001 error 128 H4 is deeper than Notion supports (max H3) — it degrades to bold text
210
+ D-002 error 204 a hard-wrapped paragraph — one paragraph must be one line
211
+ D-003 warn 141 a 47-word sentence — one idea per sentence, and the bar is 35
212
+ D-005 warn 141 "SoR" is used without being expanded on first use
213
+
214
+ A readability signal is a SIGNAL, not a verdict. This never blocks anything.
215
+ It is English-specific and heuristic.
216
+ ```
217
+
218
+ That check costs **zero model tokens**, and it always runs first. Its findings
219
+ then ride along in the checkers' slices, so no model is ever paid to count
220
+ sentences — and no checker repeats something the lint already said.
221
+
222
+ Then the checkers, each with one file and nothing else:
223
+
224
+ ```
225
+ $ orc doc plan prd-checkout-refund-130826 --role check
226
+
227
+ wave 1
228
+ orc-doc-checker-opus-5-low 58L 04-goals-and-success-metrics
229
+ reads sections/04-goals-and-success-metrics.md
230
+ orc-doc-checker-opus-5-low 59L 06-users-and-jobs-to-be-done
231
+ reads sections/06-users-and-jobs-to-be-done.md
232
+ ```
233
+
234
+ Because each checker gets its own file, there is no line counting anywhere in
235
+ this step. And no two checkers ever open the same file.
236
+
237
+ ---
238
+
239
+ ## 7. What you get, and what it says at the end
240
+
241
+ ```
242
+ Saved to orc/orc-doc/prd-checkout-refund-130826/sections/ (the real thing)
243
+ orc/orc-doc/prd-checkout-refund-130826/document.md (built from it)
244
+
245
+ Editing it yourself is expected — go ahead. When you want to carry on, even in a
246
+ brand-new chat, paste this line:
247
+
248
+ /orc-doc resume prd-checkout-refund-130826
249
+
250
+ The full picture is in RESUME.md — it remembers the context, the audience and
251
+ what is still open, so you never have to explain it twice.
252
+
253
+ Not staged, not committed. If your team should see it:
254
+ git add orc/orc-doc/prd-checkout-refund-130826/
255
+
256
+ Want it graded before you send it? In a NEW session:
257
+ /orc-challenge orc/orc-doc/prd-checkout-refund-130826/document.md
258
+ ```
259
+
260
+ It offers `/orc-challenge` and never runs it. A session that wrote the document
261
+ cannot honestly grade it — that separation is `/orc-challenge`'s own rule, read
262
+ from this side.
263
+
264
+ ---
265
+
266
+ ## 8. Coming back on Monday
267
+
268
+ ```
269
+ /orc-doc resume prd-checkout
270
+ ```
271
+
272
+ ```
273
+ Picking up: PRD — checkout refunds (started 13-08-2026, cycle 2).
274
+ I have read the context you gave me — you do not need to repeat it.
275
+
276
+ Sections: 17 planned · 14 written · wave 4 of 5
277
+ You edited since last time: §02 Summary, §08 Requirements
278
+ ← I will not touch these unless you say so
279
+ Not written yet: §12 Risks · §13 Rollout
280
+ document.md is 1 section behind the folder — rebuilding it is free.
281
+
282
+ What should change?
283
+ ```
284
+
285
+ Two things are happening there.
286
+
287
+ **It knows you edited it.** Every section carries a fingerprint. Two of them no
288
+ longer match what ORC last wrote, so those sections are yours — and a finding
289
+ inside one of them is *reported*, never *applied*.
290
+
291
+ **It does not start working.** No change request means no work. Regenerating a
292
+ document nobody asked to change is the most expensive possible way to do
293
+ nothing.
294
+
295
+ ---
296
+
297
+ ## 9. Editing one section, safely
298
+
299
+ There is nothing to take out and nothing to put back. The section file **is** the
300
+ section:
301
+
302
+ ```
303
+ … a writer opens sections/04-goals-and-success-metrics.md and changes it …
304
+
305
+ $ orc doc compile prd-checkout-refund-130826
306
+ ✓ compiled 17 sections → document.md (500 lines)
307
+ ```
308
+
309
+ A very long section is kept in parts underneath, so even then the writer only
310
+ opens the part it needs:
311
+
312
+ ```
313
+ sections/08-functional-requirements/
314
+ ├── 00-head.md the heading and the opening lines
315
+ ├── 01-payments.md
316
+ └── 02-refunds.md ← only this one is opened
317
+ ```
318
+
319
+ The reader never sees any of that. In the finished document it is one ordinary
320
+ section with one heading.
321
+
322
+ If you had edited a section yourself in the meantime, ORC says so by name and
323
+ leaves it alone. And it will not hand you a `document.md` that is behind the
324
+ folder:
325
+
326
+ ```
327
+ ❌ document.md is behind sections/: Goals and success metrics changed since the
328
+ last compile. Rebuild it first (free): orc doc compile prd-checkout-refund-130826
329
+ ```
330
+
331
+ ---
332
+
333
+ ## 10. What it will not do
334
+
335
+ - Read your document into its own context.
336
+ - Invent a fact. Anything it was not given comes back as a **gap**, is written
337
+ into `gaps.md`, and is raised with you.
338
+ - Put its own notes in your document. No "Open:" lines, no "Assumption:" lines —
339
+ nothing but what a reader came for, in `document.md` and in every section file.
340
+ - Leave a hole where a section should be. A part-written document simply does not
341
+ have that section, and says so plainly outside the document.
342
+ - Overwrite a paragraph you wrote.
343
+ - Stage or commit anything.
344
+ - Grade its own output.
345
+
346
+ ---
347
+
348
+ ## 11. See it in the panel
349
+
350
+ `orc ui` ▸ **Docs** draws the whole document as one ribbon: each section is a
351
+ block sized by its length and coloured by its state. In one glance you can see
352
+ where the weight sits, what is still open, and which parts are yours. Under it,
353
+ the **section files** — one row each, with the parts of a long section nested
354
+ beneath it, and how far through the waves you are.
355
+
356
+ Free things are buttons there. Writing and checking cost model tokens, so those
357
+ are commands to copy.
358
+
359
+ ---
360
+
361
+ ## 12. Finishing it — the part that used to be missing
362
+
363
+ A document could be *complete* and there was no way to say it had actually been
364
+ **delivered**. So a PRD that went to a backend team in March looked exactly like
365
+ one that had been sitting finished-and-forgotten ever since.
366
+
367
+ ```
368
+ $ orc doc ship prd-checkout-refund-130826 --where "Notion › Platform › Refund PRD" --note "handed to the ingest squad"
369
+
370
+ ORC · doc ship — prd-checkout-refund-130826
371
+ ───────────────────────────────────────────
372
+
373
+ Shipped 16-08-2026 09:41:02 → Notion › Platform › Refund PRD
374
+ Note: handed to the ingest squad
375
+
376
+ 17 section hashes recorded. If any of them changes, this reads shipped-drifted —
377
+ which names the sections that moved, so you know exactly what a re-send would change.
378
+ ```
379
+
380
+ **`--where` has no default.** Shipped with nowhere to point at is not a fact, it
381
+ is a feeling. ORC will not guess one and will not ship without one.
382
+
383
+ Change one paragraph afterwards and the state changes with it:
384
+
385
+ ```
386
+ $ orc doc status prd-checkout-refund-130826
387
+
388
+ shipped-drifted
389
+ Where it stands: /orc-doc · PRD · cycle 3 · 17 of 17 sections written · shipped 16-08-2026 → Notion › Platform › Refund PRD (drifted: 1 section)
390
+
391
+ Changed since it shipped: Goals and success metrics
392
+ ```
393
+
394
+ It names the section. A whole-file "something changed" would not tell you what
395
+ to re-send.
396
+
397
+ ---
398
+
399
+ ## 13. What did I ask for, again?
400
+
401
+ Come back three weeks later and you do not need to know what state the document
402
+ is in. You need **your own memory back**.
403
+
404
+ ```
405
+ $ orc doc journal prd-checkout-refund-130826
406
+
407
+ ORC · doc journal — prd-checkout-refund-130826
408
+ ─────────────────────────────────────────────
409
+
410
+ 8 entries, 4 in your own words. Oldest first.
411
+
412
+ • 13-08-2026 09:02:11 request write the refund PRD for checkout, and do not invent an SLA
413
+ · 13-08-2026 09:14:02 write cycle
414
+ • 13-08-2026 09:40:55 decision partial refunds are out of scope for v1
415
+ · 13-08-2026 10:11:30 check cycle
416
+ ~ — you edited
417
+ • 14-08-2026 08:20:03 request the goals section reads like marketing — make it measurable
418
+ · 14-08-2026 08:44:19 edit cycle · no request was recorded for it
419
+ • 15-08-2026 17:05:00 note waiting on legal before the rollout section
420
+
421
+ 1 cycle ran with nothing recorded. Shown as a gap on purpose — a reconstruction would read like a fact.
422
+ ```
423
+
424
+ That last line is the rule. A cycle nobody logged is shown **as a gap**, never
425
+ filled in with something that sounds plausible. And `orc doc context` gives you
426
+ the brief you froze on day one — your request, quoted word for word — plus
427
+ whether each reference file you pointed at still says what it said then.
428
+
429
+ ---
430
+
431
+ ## 14. Which command comes next
432
+
433
+ You never have to remember.
434
+
435
+ ```
436
+ $ orc doc next prd-checkout-refund-130826
437
+
438
+ ORC · doc next — prd-checkout-refund-130826
439
+ ───────────────────────────────────────────
440
+
441
+ D7 lint
442
+ 3 sections changed since the last compile; the free check runs before the paid one
443
+
444
+ free orc doc lint prd-checkout-refund-130826 --json
445
+ ```
446
+
447
+ Do what it says, then run it again. When it stops giving you a command, it tells
448
+ you what **you** have to decide — by name, never as a shrug.
@@ -0,0 +1,86 @@
1
+ # Mock run — `/orc-explain`
2
+
3
+ > ORC said something you did not understand. Type this and it says it again,
4
+ > properly.
5
+
6
+ ---
7
+
8
+ ## 1. What it does
9
+
10
+ It re-explains the **last thing ORC said** (or an earlier one, if you point at
11
+ it). It adds the background the message assumed, and defines every ORC-only
12
+ word in your project's own terms.
13
+
14
+ It is not "make it shorter". A summary of something you did not understand is
15
+ the same thing you did not understand.
16
+
17
+ Nothing about the run changes: no re-plan, no re-score, no undo, no new
18
+ question. When it finishes, you are exactly where you were.
19
+
20
+ ---
21
+
22
+ ## 2. The run
23
+
24
+ ORC has just printed a scoring block. Rina reads it and blinks.
25
+
26
+ ```
27
+ T1 3·new-surface·stateful·new-tests·fan0/3·low = 6+18+16+8+9 = 57
28
+ → orc-executor-sonnet-5-high (keystone)
29
+ ```
30
+
31
+ ```
32
+ > /orc-explain
33
+ ```
34
+
35
+ ```
36
+ The point: task T1 is medium-hard, so I am sending it to Sonnet 5 at high
37
+ effort, and it must finish before three other tasks can start.
38
+
39
+ The background that line assumed
40
+ Before building, I give each task a number from 0 to 100. The number is
41
+ arithmetic, not opinion: the planner (which read your files) reports a few
42
+ properties of the task, and I add them up with a published formula. The
43
+ number then picks the model from a fixed table. That is why you can argue
44
+ with it — the inputs are all visible.
45
+
46
+ Every word in that line, in this project's terms
47
+ facet one property of the task the planner measured
48
+ 3 the task touches 3 files (`breadth`)
49
+ new-surface api/orders/note_service.ts does not exist yet — this task
50
+ creates it (`novelty`)
51
+ stateful it holds data between calls, not just if/else (`logic`)
52
+ new-tests tests must be written, not just updated (`test_surface`)
53
+ fan0/3 it depends on 0 tasks; 3 tasks depend on IT. That is why I
54
+ called it a keystone, and why it runs alone in wave 1.
55
+ low the planner's own confidence that the task is uncertain
56
+ 57 the total. The table maps [55,65) to Sonnet 5 at high effort.
57
+ band one row of that table
58
+ wave a group of tasks that can run at the same time because no
59
+ two of them write the same file
60
+
61
+ What this means for you
62
+ Nothing to decide. This was me showing my work before dispatching. If you
63
+ think 57 is wrong — say so, and I will re-score with your correction.
64
+
65
+ Back to the run. Waiting for your "go" on the wave plan.
66
+ ```
67
+
68
+ ---
69
+
70
+ ## 3. What to notice
71
+
72
+ - **It explains, it never re-does.** No agent is dispatched, no file is
73
+ written, no gate changes.
74
+ - **It defines words in *your* project's terms**, using `wiki/orc-orientation.md`
75
+ when a wiki exists, so the words match the rest of your docs.
76
+ - **The skill itself is deliberately tiny.** A long skill that says "be clear"
77
+ makes a wordy model, because the model copies the length it sees.
78
+ - **This lane writes no trace on purpose.** It is the only lane that does not,
79
+ and `orc stats --help` says so — a stated blind spot, not an oversight.
80
+
81
+ ---
82
+
83
+ ## 4. Related
84
+
85
+ - The words themselves: `orc onboarding lanes`
86
+ - The whole walkthrough with no GitHub needed: `orc onboarding`