@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,392 @@
|
|
|
1
|
+
# Mock run — `/orc-aftermath`
|
|
2
|
+
|
|
3
|
+
> Did the thing we shipped actually hold up?
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. What it does
|
|
8
|
+
|
|
9
|
+
Everyone in this industry says the same thing: *coding agents cannot see what
|
|
10
|
+
their code does after it ships. The loop is open.*
|
|
11
|
+
|
|
12
|
+
And everyone tries to close it the same way: connect Sentry, connect Datadog,
|
|
13
|
+
buy a monitoring product, wire an MCP server.
|
|
14
|
+
|
|
15
|
+
There is a cheaper way that nobody uses.
|
|
16
|
+
|
|
17
|
+
**The repository's own future is a grading signal.** It is free, it works
|
|
18
|
+
offline, and it needs no vendor:
|
|
19
|
+
|
|
20
|
+
| Signal | What it probably means |
|
|
21
|
+
|---|---|
|
|
22
|
+
| The files we shipped were rewritten a few days later | The change missed something |
|
|
23
|
+
| A test we added was deleted or skipped | Someone rejected our proof |
|
|
24
|
+
| The commit was reverted | Obvious |
|
|
25
|
+
| A promise (`PACT-xxx`) that was HOLDING is now BROKEN | The change leaked |
|
|
26
|
+
| Another `/orc` run hit the same area right away | Our slice was wrong |
|
|
27
|
+
|
|
28
|
+
All of that comes from `git log`, ORC's own trace files, and the pact ledger.
|
|
29
|
+
Nothing else.
|
|
30
|
+
|
|
31
|
+
### The rule that keeps this honest
|
|
32
|
+
|
|
33
|
+
**Churn is a signal, not a verdict.**
|
|
34
|
+
|
|
35
|
+
A file being rewritten is a fact. *Why* it was rewritten is not something ORC
|
|
36
|
+
can know. Maybe the change was wrong. Maybe the product changed. Maybe someone
|
|
37
|
+
found a better way.
|
|
38
|
+
|
|
39
|
+
So `/orc-aftermath` reports **the signal, and how sure it is.** It never
|
|
40
|
+
writes "this change was bad". It never blames a person. It never edits
|
|
41
|
+
anything. Read only, report only.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 2. The run
|
|
46
|
+
|
|
47
|
+
One month has passed. It is now 08-09-2026.
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
> /orc-aftermath --since 30d
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
ORC · aftermath
|
|
55
|
+
|
|
56
|
+
Preflight (silent)
|
|
57
|
+
git history depth : 412 commits — deep enough for a 30-day window
|
|
58
|
+
traces in window : 6 runs
|
|
59
|
+
pact ledger : present, 6 promises
|
|
60
|
+
window : 09-08-2026 → 08-09-2026
|
|
61
|
+
|
|
62
|
+
I only read. I will not change or fix anything.
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
ORC · aftermath · the six runs
|
|
67
|
+
|
|
68
|
+
run lane shipped grade
|
|
69
|
+
─────────────────────────────────────────────────────────────────────
|
|
70
|
+
run-orc-partial-refunds-100826 /orc 11 tasks HELD (weak signal)
|
|
71
|
+
run-mini-cart-badge-140826 /orc-mini 3 tasks HELD
|
|
72
|
+
run-fast-tooltip-copy-160826 /orc-fast 1 task HELD
|
|
73
|
+
run-orc-tax-rounding-190826 /orc 7 tasks CHURN
|
|
74
|
+
run-mini-search-filter-240826 /orc-mini 4 tasks REVERTED
|
|
75
|
+
run-quick-flag-cleanup-020926 /orc-quick 2 tasks too recent to grade
|
|
76
|
+
|
|
77
|
+
"too recent" = shipped less than 7 days ago. I will grade it next time.
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
ORC · aftermath · the two that need your eyes
|
|
82
|
+
|
|
83
|
+
────────────────────────────────────────────────────────────────────────
|
|
84
|
+
CHURN · run-orc-tax-rounding-190826 · /orc · 7 tasks
|
|
85
|
+
────────────────────────────────────────────────────────────────────────
|
|
86
|
+
|
|
87
|
+
What it promised (from the plan's acceptance criteria):
|
|
88
|
+
"Tax is rounded once, at the order total, never per line item."
|
|
89
|
+
|
|
90
|
+
What happened after:
|
|
91
|
+
api/tax/round.ts shipped 19-08 rewritten 22-08 (3 days) by Rina
|
|
92
|
+
api/tax/round.ts rewritten again 27-08 (8 days) by Rina
|
|
93
|
+
api/tax/__tests__/round.test.ts 3 new cases added 22-08
|
|
94
|
+
|
|
95
|
+
Signal strength: MEDIUM
|
|
96
|
+
Two rewrites in 8 days, by the same person, on the same file the run
|
|
97
|
+
shipped. The test file grew, which usually means real cases were found
|
|
98
|
+
that the run did not cover.
|
|
99
|
+
|
|
100
|
+
What I can prove:
|
|
101
|
+
- the file changed twice → yes, git says so
|
|
102
|
+
- the run's own tests still pass → yes
|
|
103
|
+
- the acceptance criterion holds → yes, tax is still rounded once
|
|
104
|
+
|
|
105
|
+
What I cannot prove:
|
|
106
|
+
- whether the rewrites were fixing our work, or adding new work
|
|
107
|
+
|
|
108
|
+
Commit messages, for your reading (I do not read intent into them):
|
|
109
|
+
22-08 "handle negative tax on refunds"
|
|
110
|
+
27-08 "tax rounding: fix banker's rounding on .005"
|
|
111
|
+
|
|
112
|
+
My honest read: the second message looks like a correction of our work.
|
|
113
|
+
The first looks like new scope. I am not sure. You will know in 5 seconds.
|
|
114
|
+
|
|
115
|
+
────────────────────────────────────────────────────────────────────────
|
|
116
|
+
REVERTED · run-mini-search-filter-240826 · /orc-mini · 4 tasks
|
|
117
|
+
────────────────────────────────────────────────────────────────────────
|
|
118
|
+
|
|
119
|
+
Reverted at commit 4f19ba2 on 26-08-2026 (2 days after ship).
|
|
120
|
+
Revert message: "revert search filter — breaks pagination on page 2+"
|
|
121
|
+
|
|
122
|
+
Signal strength: HIGH. A revert is not ambiguous.
|
|
123
|
+
|
|
124
|
+
What the run did:
|
|
125
|
+
lane : /orc-mini
|
|
126
|
+
review : SKIPPED (orc-mini has no review phase — this is by design)
|
|
127
|
+
verify : SKIPPED (same)
|
|
128
|
+
smoke gate : GREEN — build passed, 138 tests passed
|
|
129
|
+
boundary : no card existed for web/search at the time
|
|
130
|
+
|
|
131
|
+
The interesting part:
|
|
132
|
+
The smoke gate was green. The tests passed. Nothing in the run was
|
|
133
|
+
wrong by its own rules. The break was in pagination — a different
|
|
134
|
+
folder, with no test that touches search.
|
|
135
|
+
|
|
136
|
+
So this is not "orc-mini failed". This is "the repo has no test that
|
|
137
|
+
covers search + pagination together". A review phase probably would
|
|
138
|
+
have caught it by reading. A test would have caught it for sure.
|
|
139
|
+
|
|
140
|
+
Two things you could do:
|
|
141
|
+
1 Add a test for search + pagination. Then this class of miss is gone
|
|
142
|
+
for every future run, in every lane.
|
|
143
|
+
2 Add a boundary card for web/search that says ESCALATE until (1) is
|
|
144
|
+
done. Then orc-mini would have flagged it.
|
|
145
|
+
|
|
146
|
+
I am not recommending a lane change. /orc-mini did what it says it does.
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
ORC · aftermath · promises
|
|
151
|
+
|
|
152
|
+
PACT-001 payments never double-written HOLDING unchanged all month
|
|
153
|
+
PACT-002 prices are whole cents HOLDING
|
|
154
|
+
PACT-003 guest checkout works HOLDING
|
|
155
|
+
PACT-004 refund window 45 days HOLDING review due 01-12-2026
|
|
156
|
+
PACT-005 no card number in logs HOLDING
|
|
157
|
+
PACT-006 refund to original method UNCHECKABLE ← still no test, 47 days
|
|
158
|
+
|
|
159
|
+
One note: PACT-006 has been UNCHECKABLE since 10-08-2026. It sits on
|
|
160
|
+
api/refunds/payout.ts, which was touched by run-orc-partial-refunds.
|
|
161
|
+
Two separate lanes have now pointed at this same missing test:
|
|
162
|
+
/orc-boundary marked T04 ESCALATE for this reason
|
|
163
|
+
/orc-budget showed band [70,80) went 151% over, on that same task
|
|
164
|
+
|
|
165
|
+
Three lanes, one finding. That is usually a true finding.
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
ORC · aftermath · summary
|
|
170
|
+
|
|
171
|
+
6 runs in window · 4 held · 1 churn · 1 reverted · 1 too recent
|
|
172
|
+
Hold rate: 4 of 5 gradeable = 80%
|
|
173
|
+
|
|
174
|
+
By lane (small numbers — do not over-read these):
|
|
175
|
+
/orc 2 runs 1 held, 1 churn
|
|
176
|
+
/orc-mini 2 runs 1 held, 1 reverted
|
|
177
|
+
/orc-fast 1 run 1 held
|
|
178
|
+
|
|
179
|
+
Wrote: orc-aftermath/2026-09/aftermath.md
|
|
180
|
+
A structured block is included for /orc-retro to read.
|
|
181
|
+
|
|
182
|
+
Trace: run-aftermath-30d-080926-091455.txt
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## 3. The file it made
|
|
188
|
+
|
|
189
|
+
### `orc-aftermath/2026-09/aftermath.md`
|
|
190
|
+
|
|
191
|
+
````markdown
|
|
192
|
+
# Aftermath — 09-08-2026 to 08-09-2026
|
|
193
|
+
|
|
194
|
+
Read-only report from `/orc-aftermath`. No code was changed.
|
|
195
|
+
Signals come from git history, ORC traces, and the pact ledger. No telemetry.
|
|
196
|
+
|
|
197
|
+
## Summary
|
|
198
|
+
|
|
199
|
+
| | |
|
|
200
|
+
|---|---|
|
|
201
|
+
| Runs in window | 6 |
|
|
202
|
+
| Gradeable (older than 7 days) | 5 |
|
|
203
|
+
| Held | 4 |
|
|
204
|
+
| Churn | 1 |
|
|
205
|
+
| Reverted | 1 |
|
|
206
|
+
| Hold rate | 80% |
|
|
207
|
+
|
|
208
|
+
## Findings
|
|
209
|
+
|
|
210
|
+
### 1 · CHURN — `run-orc-tax-rounding-190826`
|
|
211
|
+
**Signal strength:** medium.
|
|
212
|
+
`api/tax/round.ts` was rewritten twice within 8 days of shipping.
|
|
213
|
+
The run's acceptance criterion still holds and its tests still pass.
|
|
214
|
+
Commit messages suggest one rewrite was new scope and one was a correction.
|
|
215
|
+
**Not a verdict.** A human should read the two commits.
|
|
216
|
+
|
|
217
|
+
### 2 · REVERTED — `run-mini-search-filter-240826`
|
|
218
|
+
**Signal strength:** high.
|
|
219
|
+
Reverted 2 days after ship. Reason given: pagination broke on page 2+.
|
|
220
|
+
The run's smoke gate was green and all 138 tests passed.
|
|
221
|
+
The gap was cross-folder: no test covers search together with pagination.
|
|
222
|
+
**Not a lane failure.** `/orc-mini` skips review by design and the user
|
|
223
|
+
chose it. The missing test is the root cause.
|
|
224
|
+
|
|
225
|
+
### 3 · STANDING — `PACT-006` uncheckable for 47 days
|
|
226
|
+
Three lanes have now independently pointed at the same missing test:
|
|
227
|
+
`/orc-boundary` (T04 escalate), `/orc-budget` (band 151% over), and this
|
|
228
|
+
report. This is the cheapest high-value fix available in the repo right now.
|
|
229
|
+
|
|
230
|
+
## For `/orc-retro`
|
|
231
|
+
|
|
232
|
+
<!-- orc-aftermath:retro -->
|
|
233
|
+
```json
|
|
234
|
+
{
|
|
235
|
+
"window": { "from": "2026-08-09", "to": "2026-09-08" },
|
|
236
|
+
"runs_graded": 5,
|
|
237
|
+
"outcomes": { "held": 4, "churn": 1, "reverted": 1 },
|
|
238
|
+
"by_lane": {
|
|
239
|
+
"orc": { "graded": 2, "held": 1, "churn": 1, "reverted": 0 },
|
|
240
|
+
"orc-mini": { "graded": 2, "held": 1, "churn": 0, "reverted": 1 },
|
|
241
|
+
"orc-fast": { "graded": 1, "held": 1, "churn": 0, "reverted": 0 }
|
|
242
|
+
},
|
|
243
|
+
"by_band": {
|
|
244
|
+
"[55,65)": { "shipped": 6, "churned": 2 },
|
|
245
|
+
"[70,80)": { "shipped": 3, "churned": 1 }
|
|
246
|
+
},
|
|
247
|
+
"standing_findings": [
|
|
248
|
+
{ "id": "PACT-006", "days_uncheckable": 47, "corroborated_by": ["orc-boundary", "orc-budget"] }
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
```
|
|
252
|
+
<!-- /orc-aftermath:retro -->
|
|
253
|
+
````
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## 4. The CLI part
|
|
258
|
+
|
|
259
|
+
```
|
|
260
|
+
$ orc aftermath status --since 30d
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
AFTERMATH · shopcart · 30 days
|
|
265
|
+
|
|
266
|
+
runs in window 6
|
|
267
|
+
gradeable 5 (1 shipped less than 7 days ago)
|
|
268
|
+
held 4
|
|
269
|
+
churn 1 run-orc-tax-rounding-190826
|
|
270
|
+
reverted 1 run-mini-search-filter-240826
|
|
271
|
+
|
|
272
|
+
hold rate 80%
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
Exit `0` nothing to flag · `1` churn found · `2` a revert found ·
|
|
276
|
+
`3` history too shallow to grade.
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
$ orc aftermath status --since 30d --json
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
```json
|
|
283
|
+
{
|
|
284
|
+
"window_days": 30,
|
|
285
|
+
"runs_in_window": 6,
|
|
286
|
+
"gradeable": 5,
|
|
287
|
+
"outcomes": { "held": 4, "churn": 1, "reverted": 1, "too_recent": 1 },
|
|
288
|
+
"hold_rate": 0.8,
|
|
289
|
+
"findings": [
|
|
290
|
+
{
|
|
291
|
+
"run": "run-mini-search-filter-240826",
|
|
292
|
+
"signal": "reverted",
|
|
293
|
+
"strength": "high",
|
|
294
|
+
"revert_commit": "4f19ba2",
|
|
295
|
+
"days_after_ship": 2
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"run": "run-orc-tax-rounding-190826",
|
|
299
|
+
"signal": "churn",
|
|
300
|
+
"strength": "medium",
|
|
301
|
+
"files": ["api/tax/round.ts"],
|
|
302
|
+
"rewrites": 2
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
"exit": 2
|
|
306
|
+
}
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
**When history is too shallow:**
|
|
310
|
+
|
|
311
|
+
```
|
|
312
|
+
AFTERMATH · cannot grade
|
|
313
|
+
|
|
314
|
+
Your git history goes back 12 days. You asked for 30.
|
|
315
|
+
I will not grade a run with a window shorter than 7 days after its ship
|
|
316
|
+
date — the signal is not there yet.
|
|
317
|
+
|
|
318
|
+
Try: orc aftermath status --since 7d (2 runs are gradeable)
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
Exit `3`. Same honesty rule as `/orc-budget`. No data, no answer.
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## 5. Inside a normal `/orc` run
|
|
326
|
+
|
|
327
|
+
Aftermath is mostly a **standalone, run-it-monthly** lane. But it does two
|
|
328
|
+
things inside `/orc`:
|
|
329
|
+
|
|
330
|
+
**At Phase 1 preflight**, only when there is something to say:
|
|
331
|
+
|
|
332
|
+
```
|
|
333
|
+
Preflight
|
|
334
|
+
wiki : FRESH
|
|
335
|
+
pattern : typescript cached
|
|
336
|
+
pact : 5 holding · 1 uncheckable
|
|
337
|
+
aftermath : api/tax/ churned after the last run here — 2 rewrites ← new
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
That line appears **only** if the area you are about to touch has a recent
|
|
341
|
+
churn signal. It is not noise on every run. It tells the analyst "be careful
|
|
342
|
+
here, the last attempt did not stick".
|
|
343
|
+
|
|
344
|
+
**It feeds `/orc-retro`.** This is the important seam.
|
|
345
|
+
|
|
346
|
+
```
|
|
347
|
+
/orc-retro · calibration report
|
|
348
|
+
|
|
349
|
+
Before: retro could only see how the PIPELINE ran.
|
|
350
|
+
retries, downgrades, requeues, leaks.
|
|
351
|
+
|
|
352
|
+
Now: retro also sees how the RESULT held up.
|
|
353
|
+
|
|
354
|
+
Band [55,65) sonnet-5-high
|
|
355
|
+
process : 0 downgrades, 1.2 avg repair rounds — looks healthy
|
|
356
|
+
outcome : 2 of 6 shipped tasks churned within 10 days
|
|
357
|
+
reading : the band finishes cleanly but the work does not stick.
|
|
358
|
+
This is a scoring problem, not a model problem.
|
|
359
|
+
Recommend: raise the [55,65) upper edge, or add a facet
|
|
360
|
+
for cross-folder work.
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
**This is the whole point.** Today `/orc-retro` grades how smoothly the machine
|
|
364
|
+
ran. A run can look perfect in the trace and still ship something that gets
|
|
365
|
+
reverted two days later. Aftermath is the other half of the flywheel.
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## 6. Why this is good for ORC
|
|
370
|
+
|
|
371
|
+
**It closes the loop with no vendor.** Everyone else needs Sentry, Datadog, or
|
|
372
|
+
a paid backend to answer "did it work?". ORC answers a large part of it with
|
|
373
|
+
`git log` and files it already writes. No integration, no account, no cost.
|
|
374
|
+
That is a strong story to tell.
|
|
375
|
+
|
|
376
|
+
**It completes `/orc-retro`.** Retro measures process. Aftermath measures
|
|
377
|
+
result. Together they let the score→model table be tuned against **what stuck**
|
|
378
|
+
instead of **what ran smoothly**. Nothing else in ORC can give that signal.
|
|
379
|
+
|
|
380
|
+
**It makes lane choice honest.** In the mock, `/orc-mini` had a revert. The
|
|
381
|
+
report does not say "orc-mini is bad" — it says the repo has a missing test and
|
|
382
|
+
the user chose a lane with no review. That is a fair and useful thing to learn,
|
|
383
|
+
and only a lane that looks *after* the run can learn it.
|
|
384
|
+
|
|
385
|
+
**Findings that appear three times are true findings.** In the mock, PACT-006
|
|
386
|
+
was flagged by boundary, by budget, and by aftermath. Three lanes, three
|
|
387
|
+
different methods, same missing test. That kind of agreement is very convincing
|
|
388
|
+
to a human, and it comes free once these lanes exist together.
|
|
389
|
+
|
|
390
|
+
**It is cheap and safe.** Read only. Report only. No model needed for the
|
|
391
|
+
counting part; a model is only used to write the plain-English summary. It can
|
|
392
|
+
run on a schedule and never break anything.
|