@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.
- package/CHANGELOG.md +2017 -0
- package/README-id.md +521 -0
- package/README.md +485 -0
- package/bin/build-agents.js +86 -0
- package/bin/cli.js +29050 -0
- package/bin/mockrun-catalog.js +267 -0
- package/bin/onboarding-content.js +172 -0
- package/bin/pricing.json +200 -0
- package/bin/providers.json +437 -0
- package/bin/ui.js +95 -0
- package/bin/verify-contracts.js +3277 -0
- package/bin/verify-package.js +498 -0
- package/bin/webui/api.js +1163 -0
- package/bin/webui/app.html +198 -0
- package/bin/webui/css/00-tokens.css +92 -0
- package/bin/webui/css/01-base.css +42 -0
- package/bin/webui/css/02-shell.css +103 -0
- package/bin/webui/css/03-components.css +462 -0
- package/bin/webui/css/04-motion.css +91 -0
- package/bin/webui/css/05-tour.css +100 -0
- package/bin/webui/css/06-responsive.css +108 -0
- package/bin/webui/css/panels/boundary.css +26 -0
- package/bin/webui/css/panels/challenge.css +151 -0
- package/bin/webui/css/panels/crosslink.css +194 -0
- package/bin/webui/css/panels/docs.css +254 -0
- package/bin/webui/css/panels/experiment.css +23 -0
- package/bin/webui/css/panels/extra.css +536 -0
- package/bin/webui/css/panels/flow.css +177 -0
- package/bin/webui/css/panels/handoff.css +67 -0
- package/bin/webui/css/panels/knowledge.css +86 -0
- package/bin/webui/css/panels/learn.css +154 -0
- package/bin/webui/css/panels/maintenance.css +55 -0
- package/bin/webui/css/panels/mockrun.css +268 -0
- package/bin/webui/css/panels/overview.css +100 -0
- package/bin/webui/css/panels/pact.css +43 -0
- package/bin/webui/css/panels/runs.css +105 -0
- package/bin/webui/css/panels/settings.css +227 -0
- package/bin/webui/css/panels/stats.css +87 -0
- package/bin/webui/fixtures/boundary.js +92 -0
- package/bin/webui/fixtures/challenge.js +825 -0
- package/bin/webui/fixtures/crosslink.js +31 -0
- package/bin/webui/fixtures/docs.js +982 -0
- package/bin/webui/fixtures/extra.js +1934 -0
- package/bin/webui/fixtures/flow.js +81 -0
- package/bin/webui/fixtures/handoff.js +35 -0
- package/bin/webui/fixtures/index.js +486 -0
- package/bin/webui/fixtures/knowledge.js +291 -0
- package/bin/webui/fixtures/maintenance.js +42 -0
- package/bin/webui/fixtures/mockrun.js +36 -0
- package/bin/webui/fixtures/pact.js +111 -0
- package/bin/webui/fixtures/runs.js +109 -0
- package/bin/webui/fixtures/settings.js +78 -0
- package/bin/webui/fixtures/shell.js +48 -0
- package/bin/webui/fixtures/stats.js +104 -0
- package/bin/webui/i18n/TERMS.md +134 -0
- package/bin/webui/i18n/en/banner.json +29 -0
- package/bin/webui/i18n/en/boundary.json +20 -0
- package/bin/webui/i18n/en/challenge.json +106 -0
- package/bin/webui/i18n/en/common.json +69 -0
- package/bin/webui/i18n/en/crosslink.json +69 -0
- package/bin/webui/i18n/en/docs.json +175 -0
- package/bin/webui/i18n/en/experiment.json +17 -0
- package/bin/webui/i18n/en/extra.json +313 -0
- package/bin/webui/i18n/en/flow.json +30 -0
- package/bin/webui/i18n/en/handoff.json +37 -0
- package/bin/webui/i18n/en/knowledge.json +141 -0
- package/bin/webui/i18n/en/learn.json +16 -0
- package/bin/webui/i18n/en/maintenance.json +52 -0
- package/bin/webui/i18n/en/mockrun.json +19 -0
- package/bin/webui/i18n/en/nav.json +19 -0
- package/bin/webui/i18n/en/overview.json +89 -0
- package/bin/webui/i18n/en/pact.json +36 -0
- package/bin/webui/i18n/en/runs.json +51 -0
- package/bin/webui/i18n/en/settings.json +49 -0
- package/bin/webui/i18n/en/stats.json +69 -0
- package/bin/webui/i18n/en/tour.json +33 -0
- package/bin/webui/i18n/id/banner.json +29 -0
- package/bin/webui/i18n/id/boundary.json +20 -0
- package/bin/webui/i18n/id/challenge.json +106 -0
- package/bin/webui/i18n/id/common.json +70 -0
- package/bin/webui/i18n/id/crosslink.json +69 -0
- package/bin/webui/i18n/id/docs.json +175 -0
- package/bin/webui/i18n/id/experiment.json +17 -0
- package/bin/webui/i18n/id/extra.json +313 -0
- package/bin/webui/i18n/id/flow.json +30 -0
- package/bin/webui/i18n/id/handoff.json +37 -0
- package/bin/webui/i18n/id/knowledge.json +141 -0
- package/bin/webui/i18n/id/learn.json +16 -0
- package/bin/webui/i18n/id/maintenance.json +52 -0
- package/bin/webui/i18n/id/mockrun.json +19 -0
- package/bin/webui/i18n/id/nav.json +19 -0
- package/bin/webui/i18n/id/overview.json +89 -0
- package/bin/webui/i18n/id/pact.json +36 -0
- package/bin/webui/i18n/id/runs.json +51 -0
- package/bin/webui/i18n/id/settings.json +49 -0
- package/bin/webui/i18n/id/stats.json +69 -0
- package/bin/webui/i18n/id/tour.json +33 -0
- package/bin/webui/js/00-core.js +115 -0
- package/bin/webui/js/01-i18n.js +149 -0
- package/bin/webui/js/02-ui.js +211 -0
- package/bin/webui/js/03-md.js +286 -0
- package/bin/webui/js/04-router.js +51 -0
- package/bin/webui/js/05-banners.js +172 -0
- package/bin/webui/js/06-edit.js +183 -0
- package/bin/webui/js/90-tour.js +488 -0
- package/bin/webui/js/91-shortcuts.js +126 -0
- package/bin/webui/js/99-boot.js +118 -0
- package/bin/webui/js/panels/boundary.js +104 -0
- package/bin/webui/js/panels/challenge.js +781 -0
- package/bin/webui/js/panels/crosslink.js +654 -0
- package/bin/webui/js/panels/docs.js +1338 -0
- package/bin/webui/js/panels/experiment.js +98 -0
- package/bin/webui/js/panels/extra.js +3011 -0
- package/bin/webui/js/panels/flow.js +297 -0
- package/bin/webui/js/panels/handoff.js +169 -0
- package/bin/webui/js/panels/knowledge.js +890 -0
- package/bin/webui/js/panels/learn.js +220 -0
- package/bin/webui/js/panels/maintenance.js +235 -0
- package/bin/webui/js/panels/mockrun.js +227 -0
- package/bin/webui/js/panels/overview.js +447 -0
- package/bin/webui/js/panels/pact.js +189 -0
- package/bin/webui/js/panels/runs.js +416 -0
- package/bin/webui/js/panels/settings.js +573 -0
- package/bin/webui/js/panels/stats.js +378 -0
- package/bin/webui/serve.js +557 -0
- package/mock-run/INDEX.md +106 -0
- package/mock-run/a-normal-day.md +587 -0
- package/mock-run/context-combiner.md +100 -0
- package/mock-run/extra-recovery.md +330 -0
- package/mock-run/extra-slots.md +177 -0
- package/mock-run/media/README.md +43 -0
- package/mock-run/orc-aftermath.md +392 -0
- package/mock-run/orc-boundary.md +356 -0
- package/mock-run/orc-brainstorm.md +177 -0
- package/mock-run/orc-budget.md +534 -0
- package/mock-run/orc-challenge-council.md +262 -0
- package/mock-run/orc-challenge.md +416 -0
- package/mock-run/orc-cli.md +200 -0
- package/mock-run/orc-diy.md +129 -0
- package/mock-run/orc-doc.md +448 -0
- package/mock-run/orc-explain.md +86 -0
- package/mock-run/orc-export.md +423 -0
- package/mock-run/orc-extra.md +392 -0
- package/mock-run/orc-fast.md +106 -0
- package/mock-run/orc-grill.md +151 -0
- package/mock-run/orc-handoff.md +480 -0
- package/mock-run/orc-pact.md +421 -0
- package/mock-run/orc-pattern.md +112 -0
- package/mock-run/orc-plan.md +108 -0
- package/mock-run/orc-pr-setup.md +126 -0
- package/mock-run/orc-quick.md +113 -0
- package/mock-run/orc-route.md +93 -0
- package/mock-run/orc-ui.md +125 -0
- package/mock-run/orc-ultra.md +103 -0
- package/mock-run/orc.md +157 -0
- package/mock-run/the-example-project.md +55 -0
- package/package.json +39 -0
- package/templates/agents/MODEL-MAPPING.md +168 -0
- package/templates/agents/orc-advisor-fable-5.md +50 -0
- package/templates/agents/orc-advisor-opus-5-xhigh.md +56 -0
- package/templates/agents/orc-analyst-fable-5.md +115 -0
- package/templates/agents/orc-analyze-mini-opus-5-med.md +60 -0
- package/templates/agents/orc-analyze-mini-sonnet-5-high.md +58 -0
- package/templates/agents/orc-challenge-advisor-opus-5-med.md +75 -0
- package/templates/agents/orc-challenge-contrarian-opus-5-high.md +110 -0
- package/templates/agents/orc-challenge-executor-opus-5-med.md +114 -0
- package/templates/agents/orc-challenge-expansionist-opus-5-med.md +112 -0
- package/templates/agents/orc-challenge-judge-opus-5-high.md +132 -0
- package/templates/agents/orc-challenge-outsider-opus-5-low.md +109 -0
- package/templates/agents/orc-challenge-principles-opus-5-high.md +109 -0
- package/templates/agents/orc-challenge-reader-opus-5-low.md +90 -0
- package/templates/agents/orc-claude-writer-opus-4-8-high.md +53 -0
- package/templates/agents/orc-claude-writer-opus-5-med.md +55 -0
- package/templates/agents/orc-context-combiner-opus-5-high.md +88 -0
- package/templates/agents/orc-doc-checker-opus-5-low.md +108 -0
- package/templates/agents/orc-doc-writer-opus-5-med.md +134 -0
- package/templates/agents/orc-executor-haiku-4-5.md +113 -0
- package/templates/agents/orc-executor-opus-4-7-high.md +114 -0
- package/templates/agents/orc-executor-opus-4-7-med.md +114 -0
- package/templates/agents/orc-executor-opus-4-8-high.md +114 -0
- package/templates/agents/orc-executor-opus-5-high.md +114 -0
- package/templates/agents/orc-executor-opus-5-low.md +114 -0
- package/templates/agents/orc-executor-opus-5-med.md +114 -0
- package/templates/agents/orc-executor-sonnet-4-6-high.md +114 -0
- package/templates/agents/orc-executor-sonnet-4-6-med.md +114 -0
- package/templates/agents/orc-executor-sonnet-5-high.md +114 -0
- package/templates/agents/orc-judge-fable-5.md +79 -0
- package/templates/agents/orc-judge-opus-5-xhigh.md +85 -0
- package/templates/agents/orc-learn-writer-opus-5-low.md +73 -0
- package/templates/agents/orc-pattern-codifier-opus-5-med.md +65 -0
- package/templates/agents/orc-pattern-codifier-sonnet-5-high.md +63 -0
- package/templates/agents/orc-planner-fable-5.md +152 -0
- package/templates/agents/orc-planner-mini-opus-5-med.md +69 -0
- package/templates/agents/orc-planner-mini-sonnet-5-high.md +67 -0
- package/templates/agents/orc-planner-opus-5-med.md +160 -0
- package/templates/agents/orc-retro-opus-5-med.md +73 -0
- package/templates/agents/orc-retro-sonnet-5-high.md +72 -0
- package/templates/agents/orc-reviewer-fable-5.md +57 -0
- package/templates/agents/orc-reviewer-opus-5-med.md +60 -0
- package/templates/agents/orc-scout-opus-5-low.md +40 -0
- package/templates/agents/orc-scout-sonnet-4-6-high.md +39 -0
- package/templates/agents/orc-system-analyst-opus-5-high.md +120 -0
- package/templates/agents/orc-test-author-opus-5-med.md +71 -0
- package/templates/agents/orc-trace-writer-haiku-4-5.md +107 -0
- package/templates/agents/orc-verifier-opus-5-med.md +69 -0
- package/templates/agents/orc-wiki-scanner-opus-4-8-high.md +79 -0
- package/templates/agents/orc-wiki-scanner-opus-5-med.md +81 -0
- package/templates/agents/orc-wiki-scanner-sonnet-5-high.md +106 -0
- package/templates/commands/orc-aftermath.md +49 -0
- package/templates/commands/orc-analyze.md +21 -0
- package/templates/commands/orc-boundary.md +46 -0
- package/templates/commands/orc-brainstorm.md +51 -0
- package/templates/commands/orc-budget.md +54 -0
- package/templates/commands/orc-challenge.md +58 -0
- package/templates/commands/orc-claude.md +14 -0
- package/templates/commands/orc-diy.md +13 -0
- package/templates/commands/orc-doc.md +128 -0
- package/templates/commands/orc-explain.md +20 -0
- package/templates/commands/orc-export.md +46 -0
- package/templates/commands/orc-fast.md +15 -0
- package/templates/commands/orc-grill.md +40 -0
- package/templates/commands/orc-handoff.md +52 -0
- package/templates/commands/orc-learn.md +17 -0
- package/templates/commands/orc-mini.md +12 -0
- package/templates/commands/orc-pact.md +44 -0
- package/templates/commands/orc-pattern.md +15 -0
- package/templates/commands/orc-plan.md +22 -0
- package/templates/commands/orc-poly.md +21 -0
- package/templates/commands/orc-pr-driver.md +30 -0
- package/templates/commands/orc-pr-setup.md +31 -0
- package/templates/commands/orc-quick.md +33 -0
- package/templates/commands/orc-retro.md +17 -0
- package/templates/commands/orc-route.md +41 -0
- package/templates/commands/orc-ultra.md +17 -0
- package/templates/commands/orc-verify.md +11 -0
- package/templates/commands/orc-wiki.md +42 -0
- package/templates/commands/orc.md +16 -0
- package/templates/hooks/orc-effort-guard.js +178 -0
- package/templates/hooks/orc-statusline.js +305 -0
- package/templates/hooks/orc-trace.js +471 -0
- package/templates/hooks/orc-update-lib.js +125 -0
- package/templates/skills/_shared/README.md +50 -0
- package/templates/skills/_shared/detecting-artifacts.md +90 -0
- package/templates/skills/_shared/drift-recovery.md +98 -0
- package/templates/skills/_shared/extra-dispatch.md +1051 -0
- package/templates/skills/_shared/fable5-override.md +56 -0
- package/templates/skills/_shared/fallback-handoff.md +42 -0
- package/templates/skills/_shared/gh-stack-commands.md +65 -0
- package/templates/skills/_shared/gotchas.md +177 -0
- package/templates/skills/_shared/interview.md +144 -0
- package/templates/skills/_shared/lane-suspend.md +82 -0
- package/templates/skills/_shared/opus5-only.md +131 -0
- package/templates/skills/_shared/pr-templates.md +106 -0
- package/templates/skills/_shared/read-ladder.md +54 -0
- package/templates/skills/_shared/return-validation.md +145 -0
- package/templates/skills/_shared/smoke-gate.md +28 -0
- package/templates/skills/_shared/stack-plan.md +135 -0
- package/templates/skills/_shared/untrusted-input.md +63 -0
- package/templates/skills/context-combiner/SKILL.md +187 -0
- package/templates/skills/context-combiner/schemas/combined-report.md +78 -0
- package/templates/skills/context-combiner/schemas/combined-requirement-spec.md +87 -0
- package/templates/skills/orc/README.md +150 -0
- package/templates/skills/orc/SKILL.md +526 -0
- package/templates/skills/orc/config.md +389 -0
- package/templates/skills/orc/examples/full-run-mock.md +73 -0
- package/templates/skills/orc/references/analyst-gates.md +124 -0
- package/templates/skills/orc/references/effort-and-mode.md +224 -0
- package/templates/skills/orc/references/house-rules.md +20 -0
- package/templates/skills/orc/references/intake.md +120 -0
- package/templates/skills/orc/references/log-protocol.md +39 -0
- package/templates/skills/orc/references/pattern-gate.md +89 -0
- package/templates/skills/orc/references/plan-handoff.md +84 -0
- package/templates/skills/orc/references/preflight-report.md +220 -0
- package/templates/skills/orc/references/security-checklist.md +39 -0
- package/templates/skills/orc/references/stop-and-resume.md +160 -0
- package/templates/skills/orc/references/trace-protocol.md +314 -0
- package/templates/skills/orc/references/ultra-mode.md +123 -0
- package/templates/skills/orc/references/wave-grouping.md +121 -0
- package/templates/skills/orc/references/wiki-consult.md +177 -0
- package/templates/skills/orc/schemas/checkpoint.md +122 -0
- package/templates/skills/orc/schemas/intent-spec.md +42 -0
- package/templates/skills/orc/schemas/planning-output.md +279 -0
- package/templates/skills/orc/subskills/orc-checkpoint/SKILL.md +55 -0
- package/templates/skills/orc/subskills/orc-execution/SKILL.md +72 -0
- package/templates/skills/orc/subskills/orc-execution/core.md +151 -0
- package/templates/skills/orc/subskills/orc-execution/subagent.md +13 -0
- package/templates/skills/orc/subskills/orc-planner/SKILL.md +264 -0
- package/templates/skills/orc/subskills/orc-planner-mini/SKILL.md +121 -0
- package/templates/skills/orc/subskills/orc-pr/SKILL.md +51 -0
- package/templates/skills/orc/subskills/orc-pr/pr.md +22 -0
- package/templates/skills/orc/subskills/orc-pr/stack-gate.md +108 -0
- package/templates/skills/orc/subskills/orc-review-verify/SKILL.md +76 -0
- package/templates/skills/orc/subskills/orc-review-verify/core.md +135 -0
- package/templates/skills/orc/subskills/orc-review-verify/subagent.md +7 -0
- package/templates/skills/orc/subskills/orc-testgen/SKILL.md +45 -0
- package/templates/skills/orc/subskills/orc-testgen/core.md +59 -0
- package/templates/skills/orc/subskills/orc-testgen/subagent.md +7 -0
- package/templates/skills/orc-advisor/SKILL.md +60 -0
- package/templates/skills/orc-aftermath/SKILL.md +136 -0
- package/templates/skills/orc-aftermath/references/report.md +95 -0
- package/templates/skills/orc-analyze/SKILL.md +220 -0
- package/templates/skills/orc-analyze/examples/analyze-mock.md +42 -0
- package/templates/skills/orc-analyze/references/branching.md +51 -0
- package/templates/skills/orc-analyze/references/deep-mode.md +27 -0
- package/templates/skills/orc-analyze/references/thin-input.md +77 -0
- package/templates/skills/orc-analyze/schemas/report-audit.md +83 -0
- package/templates/skills/orc-analyze/schemas/report-prose.md +63 -0
- package/templates/skills/orc-analyze/schemas/report-requirement.md +78 -0
- package/templates/skills/orc-analyze/schemas/requirement-spec.md +77 -0
- package/templates/skills/orc-analyze-mini/SKILL.md +112 -0
- package/templates/skills/orc-analyze-mini/examples/quick-analysis-mock.md +31 -0
- package/templates/skills/orc-boundary/SKILL.md +208 -0
- package/templates/skills/orc-boundary/references/card.md +78 -0
- package/templates/skills/orc-boundary/references/gate.md +113 -0
- package/templates/skills/orc-brainstorm/SKILL.md +339 -0
- package/templates/skills/orc-brainstorm/references/brainstorm-doc.md +133 -0
- package/templates/skills/orc-brainstorm/references/lenses.md +152 -0
- package/templates/skills/orc-budget/SKILL.md +225 -0
- package/templates/skills/orc-budget/references/corpus.md +87 -0
- package/templates/skills/orc-challenge/README.md +142 -0
- package/templates/skills/orc-challenge/SKILL.md +255 -0
- package/templates/skills/orc-challenge/examples/code-module.md +110 -0
- package/templates/skills/orc-challenge/examples/council-full-roster.md +273 -0
- package/templates/skills/orc-challenge/examples/tsd-two-iterations.md +213 -0
- package/templates/skills/orc-challenge/references/conservation.md +107 -0
- package/templates/skills/orc-challenge/references/council.md +315 -0
- package/templates/skills/orc-challenge/references/cycle-state.md +185 -0
- package/templates/skills/orc-challenge/references/dimensions.md +121 -0
- package/templates/skills/orc-challenge/references/fix-brief.md +130 -0
- package/templates/skills/orc-challenge/references/intake.md +171 -0
- package/templates/skills/orc-challenge/references/kinds.md +44 -0
- package/templates/skills/orc-challenge/references/plain-english.md +98 -0
- package/templates/skills/orc-challenge/references/rubric.md +109 -0
- package/templates/skills/orc-challenge/references/sealed-slice.md +97 -0
- package/templates/skills/orc-challenge/references/verdict-doc.md +154 -0
- package/templates/skills/orc-claude/SKILL.md +199 -0
- package/templates/skills/orc-claude/examples/claude-run-mock.md +65 -0
- package/templates/skills/orc-claude/references/refresh.md +76 -0
- package/templates/skills/orc-claude/references/template.md +109 -0
- package/templates/skills/orc-diy/README.md +142 -0
- package/templates/skills/orc-diy/SKILL.md +70 -0
- package/templates/skills/orc-diy/references/blocks/analyze.md +24 -0
- package/templates/skills/orc-diy/references/blocks/execution.md +42 -0
- package/templates/skills/orc-diy/references/blocks/extra.md +55 -0
- package/templates/skills/orc-diy/references/blocks/header.md +55 -0
- package/templates/skills/orc-diy/references/blocks/mock-example.md +22 -0
- package/templates/skills/orc-diy/references/blocks/pattern.md +18 -0
- package/templates/skills/orc-diy/references/blocks/planning.md +34 -0
- package/templates/skills/orc-diy/references/blocks/review.md +18 -0
- package/templates/skills/orc-diy/references/blocks/scoring.md +16 -0
- package/templates/skills/orc-diy/references/blocks/security.md +25 -0
- package/templates/skills/orc-diy/references/blocks/ship.md +25 -0
- package/templates/skills/orc-diy/references/blocks/summary.md +18 -0
- package/templates/skills/orc-diy/references/blocks/testgen.md +17 -0
- package/templates/skills/orc-diy/references/blocks/trace.md +28 -0
- package/templates/skills/orc-diy/references/blocks/verify.md +25 -0
- package/templates/skills/orc-diy/references/blocks/wiki.md +26 -0
- package/templates/skills/orc-diy/references/compile.md +59 -0
- package/templates/skills/orc-diy/references/flow-schema.md +100 -0
- package/templates/skills/orc-diy/references/locked-blocks.md +37 -0
- package/templates/skills/orc-doc/README.md +229 -0
- package/templates/skills/orc-doc/SKILL.md +444 -0
- package/templates/skills/orc-doc/examples/orc-doc-prd-run.md +325 -0
- package/templates/skills/orc-doc/references/chunking.md +527 -0
- package/templates/skills/orc-doc/references/gates.md +311 -0
- package/templates/skills/orc-doc/references/generation-rules.md +122 -0
- package/templates/skills/orc-doc/references/house-rules.md +170 -0
- package/templates/skills/orc-doc/references/import-targets.md +40 -0
- package/templates/skills/orc-doc/references/plain-language.md +66 -0
- package/templates/skills/orc-doc/references/portable-markdown.md +74 -0
- package/templates/skills/orc-doc/references/resume-protocol.md +228 -0
- package/templates/skills/orc-doc/references/templates/collaboration.md +118 -0
- package/templates/skills/orc-doc/references/templates/prd.md +133 -0
- package/templates/skills/orc-doc/references/templates/report.md +102 -0
- package/templates/skills/orc-doc/references/templates/tsd.md +122 -0
- package/templates/skills/orc-doc/references/templates/workflow.md +112 -0
- package/templates/skills/orc-explain/SKILL.md +57 -0
- package/templates/skills/orc-export/SKILL.md +154 -0
- package/templates/skills/orc-fast/SKILL.md +188 -0
- package/templates/skills/orc-grill/SKILL.md +207 -0
- package/templates/skills/orc-grill/references/grill-doc.md +105 -0
- package/templates/skills/orc-handoff/SKILL.md +204 -0
- package/templates/skills/orc-handoff/references/handoff-log.md +67 -0
- package/templates/skills/orc-handoff/references/surfaces.md +88 -0
- package/templates/skills/orc-judge/SKILL.md +82 -0
- package/templates/skills/orc-learn/SKILL.md +156 -0
- package/templates/skills/orc-learn/examples/learn-run-mock.md +61 -0
- package/templates/skills/orc-learn/references/deepen.md +70 -0
- package/templates/skills/orc-learn/references/refresh.md +65 -0
- package/templates/skills/orc-learn/references/template-knowledge.md +83 -0
- package/templates/skills/orc-learn/references/template-learning.md +67 -0
- package/templates/skills/orc-mini/SKILL.md +226 -0
- package/templates/skills/orc-mini/examples/mini-run-mock.md +50 -0
- package/templates/skills/orc-pact/SKILL.md +218 -0
- package/templates/skills/orc-pact/references/gate.md +70 -0
- package/templates/skills/orc-pact/references/ledger.md +99 -0
- package/templates/skills/orc-pattern/SKILL.md +124 -0
- package/templates/skills/orc-pattern/references/INDEX.md +73 -0
- package/templates/skills/orc-pattern/references/be-django.md +80 -0
- package/templates/skills/orc-pattern/references/be-express.md +82 -0
- package/templates/skills/orc-pattern/references/be-fastapi.md +107 -0
- package/templates/skills/orc-pattern/references/be-go.md +96 -0
- package/templates/skills/orc-pattern/references/be-nestjs.md +86 -0
- package/templates/skills/orc-pattern/references/be-postgres.md +98 -0
- package/templates/skills/orc-pattern/references/fe-a11y.md +36 -0
- package/templates/skills/orc-pattern/references/fe-angular.md +87 -0
- package/templates/skills/orc-pattern/references/fe-nextjs.md +65 -0
- package/templates/skills/orc-pattern/references/fe-perf.md +39 -0
- package/templates/skills/orc-pattern/references/fe-react.md +83 -0
- package/templates/skills/orc-pattern/references/fe-vue.md +75 -0
- package/templates/skills/orc-pattern/schemas/pattern-doc.md +62 -0
- package/templates/skills/orc-poly/SKILL.md +216 -0
- package/templates/skills/orc-poly/examples/poly-run-mock.md +51 -0
- package/templates/skills/orc-poly/references/gather.md +70 -0
- package/templates/skills/orc-poly/references/poly-spec.md +84 -0
- package/templates/skills/orc-pr-driver/README.md +349 -0
- package/templates/skills/orc-pr-driver/SKILL.md +167 -0
- package/templates/skills/orc-pr-driver/references/conflict-playbook.md +78 -0
- package/templates/skills/orc-pr-driver/references/green-gate.md +105 -0
- package/templates/skills/orc-pr-driver/references/orc-run-split.md +99 -0
- package/templates/skills/orc-pr-setup/README.md +436 -0
- package/templates/skills/orc-pr-setup/SKILL.md +184 -0
- package/templates/skills/orc-pr-setup/references/certainty-gate.md +66 -0
- package/templates/skills/orc-pr-setup/references/layer-taxonomy.md +67 -0
- package/templates/skills/orc-quick/README.md +423 -0
- package/templates/skills/orc-quick/SKILL.md +306 -0
- package/templates/skills/orc-quick/references/context-doc.md +114 -0
- package/templates/skills/orc-quick/references/dispatch-gate.md +163 -0
- package/templates/skills/orc-quick/references/gh-mode.md +127 -0
- package/templates/skills/orc-retro/SKILL.md +222 -0
- package/templates/skills/orc-retro/examples/retro-mock.md +171 -0
- package/templates/skills/orc-route/SKILL.md +165 -0
- package/templates/skills/orc-verify/SKILL.md +86 -0
- package/templates/skills/orc-verify/examples/verify-mock.md +33 -0
- package/templates/skills/orc-wiki/README.md +325 -0
- package/templates/skills/orc-wiki/SKILL.md +322 -0
- package/templates/skills/orc-wiki/examples/wiki-run-mock.md +37 -0
- package/templates/skills/orc-wiki/references/claude-md-injection.md +61 -0
- package/templates/skills/orc-wiki/references/crosslink-compile.md +39 -0
- package/templates/skills/orc-wiki/references/crosslink-kinds.md +57 -0
- package/templates/skills/orc-wiki/references/crosslink.md +284 -0
- package/templates/skills/orc-wiki/references/extra.md +79 -0
- package/templates/skills/orc-wiki/references/integrity-check.md +86 -0
- package/templates/skills/orc-wiki/references/orientation.md +51 -0
- package/templates/skills/orc-wiki/references/partial-refresh.md +203 -0
- package/templates/skills/orc-wiki/references/pattern-prewarm.md +19 -0
- package/templates/skills/orc-wiki/references/staleness.md +288 -0
- package/templates/skills/orc-wiki/schemas/crosslink-tag.md +166 -0
- 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`
|