@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,126 @@
|
|
|
1
|
+
# Mock run — `/orc-pr-setup` and `/orc-pr-driver`
|
|
2
|
+
|
|
3
|
+
> One big change, split into a stack of small pull requests that each build and
|
|
4
|
+
> test on their own.
|
|
5
|
+
|
|
6
|
+
Two lanes, in order. **Setup** decides where the cut lines go and writes a plan.
|
|
7
|
+
**Driver** takes that plan and actually creates the branches and the PRs.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. `/orc-pr-setup` — where do the cuts go?
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
> /orc-pr-setup split the refund visibility change
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
The change: 14 files, 980 lines added, 210 removed.
|
|
19
|
+
|
|
20
|
+
Layers, bottom first. A layer may only depend on layers BELOW it.
|
|
21
|
+
|
|
22
|
+
L1 db + state enum 3 files 120 LoC value: makes the state exist
|
|
23
|
+
db/migrations/0042_sent_to_bank.sql, api/refunds/state.ts, its test
|
|
24
|
+
why first: everything else imports this enum
|
|
25
|
+
|
|
26
|
+
L2 webhook writes the state 2 files 140 LoC value: the state is real
|
|
27
|
+
depends on L1
|
|
28
|
+
|
|
29
|
+
L3 customer badge 4 files 260 LoC value: customers see it
|
|
30
|
+
depends on L1 (not L2 — the badge only reads the enum)
|
|
31
|
+
|
|
32
|
+
L4 admin list + filters 5 files 410 LoC value: support sees it
|
|
33
|
+
depends on L1
|
|
34
|
+
|
|
35
|
+
One thing I am NOT sure about — I will not guess:
|
|
36
|
+
|
|
37
|
+
❓ web/refunds/format.ts is used by BOTH L3 and L4.
|
|
38
|
+
a put it in L1 (a "shared" layer at the bottom)
|
|
39
|
+
b put it in L3, and L4 depends on L3
|
|
40
|
+
➡️ I recommend (a). It makes L3 and L4 independent, so they can be
|
|
41
|
+
reviewed in parallel.
|
|
42
|
+
|
|
43
|
+
> a
|
|
44
|
+
|
|
45
|
+
Layer budget check: every layer is under 1000 LoC and 20 files ✓
|
|
46
|
+
4 layers, under the soft cap of 6 ✓
|
|
47
|
+
|
|
48
|
+
Written: stacked-pr/refund-visibility/stack-plan.md
|
|
49
|
+
I have touched no branch, no commit, and no remote.
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## 2. `/orc-pr-driver` — build and submit the stack
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
> /orc-pr-driver
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
Plan check
|
|
62
|
+
stacked-pr/refund-visibility/stack-plan.md READY (exit 0)
|
|
63
|
+
ticket SHOP-231 ✓ · PR template resolved ✓ · no unanswered questions ✓
|
|
64
|
+
|
|
65
|
+
Snapshot taken first: your working tree is saved before anything moves.
|
|
66
|
+
|
|
67
|
+
L1 branch refund/01-state
|
|
68
|
+
only L1's 3 files staged
|
|
69
|
+
GREEN GATE, at this layer's own base:
|
|
70
|
+
build ✓ tests ✓ 41 passed lint ✓
|
|
71
|
+
(your repo's own hooks ran — never --no-verify)
|
|
72
|
+
pushed
|
|
73
|
+
|
|
74
|
+
L2 branch refund/02-webhook (base: refund/01-state)
|
|
75
|
+
GREEN GATE ✓ ✓ ✓ pushed
|
|
76
|
+
|
|
77
|
+
L3, L4 … same shape
|
|
78
|
+
|
|
79
|
+
gh stack submit
|
|
80
|
+
#412 L1 state #413 L2 webhook #414 L3 badge #415 L4 admin
|
|
81
|
+
each PR body written from your template, with its layer's purpose
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Later, when review comments land:
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
> /orc-pr-driver restack
|
|
88
|
+
|
|
89
|
+
L1 got a change. Rebasing 02, 03, 04 on top, in order.
|
|
90
|
+
L2 clean · L3 clean · L4 CONFLICT in web/admin/RefundList.tsx
|
|
91
|
+
Stopping here and showing you the conflict. Nothing force-pushed yet.
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
And merging:
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
> /orc-pr-driver merge
|
|
98
|
+
|
|
99
|
+
Bottom up, always: #412 first.
|
|
100
|
+
#412 approved ✓ merged
|
|
101
|
+
#413 retargeted to main, CI re-ran, ✓ merged
|
|
102
|
+
…
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## 3. What to notice
|
|
108
|
+
|
|
109
|
+
- **Setup never touches git.** No branch, no commit, no push. That belongs to
|
|
110
|
+
the driver.
|
|
111
|
+
- **Every layer is green on its own base.** A stack where only the top builds
|
|
112
|
+
is not a stack, it is one PR wearing four hats.
|
|
113
|
+
- **An uncertain cut line stops the lane.** Setup asks, one decision at a time,
|
|
114
|
+
and writes your answer into the plan.
|
|
115
|
+
- **You can start at the driver.** `orc pr stack template` writes an empty plan
|
|
116
|
+
you fill in by hand — no planner run needed.
|
|
117
|
+
- **Merging is bottom up, and that is not a preference.** Merging the top first
|
|
118
|
+
makes every layer below it lie about its own diff.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 4. Related
|
|
123
|
+
|
|
124
|
+
- Full guides: [ORC-PR-SETUP README](../templates/skills/orc-pr-setup/README.md) ·
|
|
125
|
+
[ORC-PR-DRIVER README](../templates/skills/orc-pr-driver/README.md)
|
|
126
|
+
- ORC's own ship phase hands off here when a change is too big for one PR.
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Mock run — `/orc-quick`
|
|
2
|
+
|
|
3
|
+
> Ask for anything. Three steps: look → ask once → do. It always asks you
|
|
4
|
+
> which agent should run.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. What it does
|
|
9
|
+
|
|
10
|
+
Every other lane has a fixed job. This one does not. A small fix, a question
|
|
11
|
+
about how something works, a defect hunt, a dependency bump, or the review
|
|
12
|
+
comments on a pull request — all the same three steps.
|
|
13
|
+
|
|
14
|
+
The point of the lane is the **dispatch gate**: before every single dispatch it
|
|
15
|
+
asks you which agent to use. No default. No "same as last time". No setting can
|
|
16
|
+
turn it off — `opus5_only`, `fable5_*` and `rubric_bands_override` are all
|
|
17
|
+
inert here, and the gate says so when they are on.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. The run
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
> /orc-quick the refund badge shows "pending" even after the webhook lands
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Q1 — Look (silent)
|
|
28
|
+
|
|
29
|
+
ORC reads first and says nothing until it has something to say.
|
|
30
|
+
|
|
31
|
+
### Q2 — Ask (one turn: questions **and** the agent choice together)
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
I looked. Here is what I found and what I need from you.
|
|
35
|
+
|
|
36
|
+
· web/refunds/RefundBadge.tsx:22 maps status → label
|
|
37
|
+
· the map has no case for `sent_to_bank`, so it falls through to "pending"
|
|
38
|
+
· api/refunds/webhook.ts:52 does write that status
|
|
39
|
+
|
|
40
|
+
Two questions:
|
|
41
|
+
1 Add the missing case only, or review the whole map?
|
|
42
|
+
2 Should the badge colour change too?
|
|
43
|
+
|
|
44
|
+
And which agent should do it?
|
|
45
|
+
a orc-executor-sonnet-4-6-med (small, one file)
|
|
46
|
+
b orc-executor-opus-5-low
|
|
47
|
+
c something else — tell me the model and effort
|
|
48
|
+
|
|
49
|
+
> 1 just the missing case. 2 yes, amber. agent a.
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Q3 — Do
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
Dispatch orc-executor-sonnet-4-6-med
|
|
56
|
+
returned as: claude-sonnet-4-6 / medium ✓
|
|
57
|
+
|
|
58
|
+
build ✓
|
|
59
|
+
tests ✓ 12 passed
|
|
60
|
+
|
|
61
|
+
Entry 1 written to orc-quick/refund-badge/quick-context.md
|
|
62
|
+
|
|
63
|
+
Commit these 2 files? [yes / no]
|
|
64
|
+
|
|
65
|
+
> yes
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Your next request becomes entry 2 in the same file, and so on.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## 3. What it wrote
|
|
73
|
+
|
|
74
|
+
```markdown
|
|
75
|
+
# Quick context — refund-badge
|
|
76
|
+
|
|
77
|
+
<!-- orc-quick:toc -->
|
|
78
|
+
1. Refund badge stuck on "pending" 2026-08-12 done
|
|
79
|
+
<!-- /orc-quick:toc -->
|
|
80
|
+
|
|
81
|
+
## 1. Refund badge stuck on "pending"
|
|
82
|
+
|
|
83
|
+
**You asked:** the badge shows pending after the webhook lands.
|
|
84
|
+
**Decided:** add the missing `sent_to_bank` case only; amber colour.
|
|
85
|
+
**Why:** the whole map is fine — one case was never added.
|
|
86
|
+
**Agents:** orc-executor-sonnet-4-6-med (you chose it).
|
|
87
|
+
**Not done:** the admin list has the same map and was NOT touched.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## 4. What to notice
|
|
93
|
+
|
|
94
|
+
- **The doc is written before the commit offer**, so a "no" still leaves you
|
|
95
|
+
the record.
|
|
96
|
+
- **ORC never reads that file back** unless you ask, or to show the numbered
|
|
97
|
+
list when you reopen the thread. It is for you, not for the model.
|
|
98
|
+
- **A red build loops (max 3 rounds), a red test does not.** A failing test is
|
|
99
|
+
sometimes the test being wrong, so it blocks the commit offer and stops.
|
|
100
|
+
No test suite at all means no check at all — nothing is invented.
|
|
101
|
+
- **`gh` is read and push only.** It never replies to a comment, resolves a
|
|
102
|
+
thread, approves or merges. PR comments are treated as data, never as
|
|
103
|
+
instructions.
|
|
104
|
+
- **It never undoes your work.** If you stop while things are red, it prints
|
|
105
|
+
the `git` command and leaves your tree alone.
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## 5. Related
|
|
110
|
+
|
|
111
|
+
- The full guide, with more worked runs:
|
|
112
|
+
[`templates/skills/orc-quick/README.md`](../templates/skills/orc-quick/README.md)
|
|
113
|
+
- Too big for quick? It offers [`/orc-mini`](../templates/skills/orc-mini/examples/mini-run-mock.md) — an offer, never a forced switch.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# Mock run — `/orc-route`
|
|
2
|
+
|
|
3
|
+
> You have a plan. This tells you which lane should build it — and which lanes
|
|
4
|
+
> cannot.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. What it does
|
|
9
|
+
|
|
10
|
+
It reads a **plan** — the numbers in it: how many tasks, how many waves, how
|
|
11
|
+
many files, the top score, whether any task is marked risky. Then it checks
|
|
12
|
+
ORC's own probes (is the wiki fresh, is a pattern cached, is a DIY flow ready,
|
|
13
|
+
does any boundary card say REFUSE) and names **one** lane.
|
|
14
|
+
|
|
15
|
+
It refuses to route a sentence. Routing from a plan is arithmetic. Routing from
|
|
16
|
+
"I want to add refunds" is guessing, and a guess that looks calculated is worse
|
|
17
|
+
than no answer.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. The run — with a plan
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
> /orc-route .claude/orc/run/refund-visibility/plan.md
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Plan: refund-visibility — 7 tasks, 3 waves, 14 files touched
|
|
29
|
+
top score 78, two tasks marked risky (money)
|
|
30
|
+
|
|
31
|
+
→ /orc the plan has risky tasks and a task above 70;
|
|
32
|
+
review and verify are worth paying for here
|
|
33
|
+
1.23M raw · 18% of a 5-hour window on Max 20x
|
|
34
|
+
|
|
35
|
+
runner-up /orc-mini — about 3x faster and 0.41M raw (6% of a window),
|
|
36
|
+
but it skips full review and verification. Fine only if you
|
|
37
|
+
will read the diff yourself.
|
|
38
|
+
|
|
39
|
+
not possible /orc-fast — needs a FRESH or AGING wiki (yours is STALE →
|
|
40
|
+
fix: /orc-wiki refresh) and this plan is 7 tasks; that lane
|
|
41
|
+
runs ONE task.
|
|
42
|
+
|
|
43
|
+
not possible /orc-diy — `orc diy status` exits 1 (UNCONFIGURED)
|
|
44
|
+
fix: orc diy init && orc diy compile
|
|
45
|
+
|
|
46
|
+
Start /orc now? [yes / no]
|
|
47
|
+
|
|
48
|
+
> yes
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 3. The run — without a plan
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
> /orc-route I want to make refunds faster
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
That is a request, not a plan, so I will not route it.
|
|
61
|
+
|
|
62
|
+
Routing is arithmetic over a plan's own numbers — tasks, waves, files, top
|
|
63
|
+
score, risk. From a sentence I would be guessing, and a guess that looks
|
|
64
|
+
calculated is the worst answer I can give you.
|
|
65
|
+
|
|
66
|
+
Two ways forward:
|
|
67
|
+
· /orc-plan "make refunds faster" → gives you a plan, then come back
|
|
68
|
+
· /orc-grill → if the idea itself is still vague
|
|
69
|
+
|
|
70
|
+
If you are new and just want to know which command to start with, that is
|
|
71
|
+
`orc onboarding first-run`, not this lane.
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## 4. What to notice
|
|
77
|
+
|
|
78
|
+
- **Every runner-up says what it costs you**, not just that it is cheaper.
|
|
79
|
+
- **Every "not possible" names the blocking condition AND its fix.** A blocked
|
|
80
|
+
lane with no stated fix is a dead end.
|
|
81
|
+
- **Cost is added only when it is knowable.** With no run history, the cost
|
|
82
|
+
column is simply absent — never a guessed number, and never a reason to
|
|
83
|
+
withhold the recommendation, which does not depend on cost.
|
|
84
|
+
- **`/orc-ultra` is never a default.** It appears only when the plan itself
|
|
85
|
+
justifies it, and it says plainly that it costs the most.
|
|
86
|
+
- **`/orc-plan` offers this automatically** after you choose "Save & stop".
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## 5. Related
|
|
91
|
+
|
|
92
|
+
- Make a plan first: [`/orc-plan`](orc-plan.md)
|
|
93
|
+
- The cost numbers behind the column: [`/orc-budget`](orc-budget.md)
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# Mock run — `orc ui`, the control panel
|
|
2
|
+
|
|
3
|
+
> A local web page for everything in ORC that is **not** ai. It never runs a
|
|
4
|
+
> lane and never calls a model.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 🎬 Video walkthrough
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
VIDEO PLACEHOLDER — the walkthrough goes right here.
|
|
12
|
+
|
|
13
|
+
1. Record the panel (`orc ui --fixtures`). Keep it under ~2 minutes.
|
|
14
|
+
2. Save it as: mock-run/media/orc-ui-demo.mp4
|
|
15
|
+
and a still frame as: mock-run/media/orc-ui-demo-poster.png
|
|
16
|
+
3. Replace the blockquote below with this line:
|
|
17
|
+
|
|
18
|
+
[](media/orc-ui-demo.mp4)
|
|
19
|
+
|
|
20
|
+
GitHub note: a <video> tag with a repo-relative src does NOT play inline on
|
|
21
|
+
github.com. Two things that DO work:
|
|
22
|
+
· the image link above (click → opens the file), or
|
|
23
|
+
· drag the .mp4 into a GitHub issue/PR comment, copy the
|
|
24
|
+
https://github.com/user-attachments/... URL it produces, and paste that
|
|
25
|
+
URL on its own line here — GitHub renders that one as a player.
|
|
26
|
+
-->
|
|
27
|
+
|
|
28
|
+
> **Not recorded yet.** The two files to drop in, and the exact line to paste
|
|
29
|
+
> here, are in [`media/README.md`](media/README.md).
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 1. Start it
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
$ orc ui
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
orc ui · http://127.0.0.1:9921/?t=3734924cb00ae0fe…
|
|
41
|
+
project /home/rina/shopcart
|
|
42
|
+
token new for this launch — the URL is the key
|
|
43
|
+
idle shuts down after 30 minutes with no tab open
|
|
44
|
+
|
|
45
|
+
Opening your browser.
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Other ways to start it:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
orc ui --port 9930 # an explicit port never auto-walks: a collision is an error
|
|
52
|
+
orc ui --no-open # print the URL only
|
|
53
|
+
orc ui --idle 0 # never shut down on idle
|
|
54
|
+
orc ui --fixtures # canned data — no project needed, every state visible
|
|
55
|
+
orc ui --stop # stop this project's server (exit 0 stopped / 1 none)
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 2. What is in it
|
|
61
|
+
|
|
62
|
+
| Panel | Shows | Can change |
|
|
63
|
+
|---|---|---|
|
|
64
|
+
| **Overview** | version, `orc doctor`, wiki tier, what is waiting, and **Worth doing** — one list of everything wanting a decision | — |
|
|
65
|
+
| **Settings** | every config key, grouped, each with the right control | staged edits, applied together |
|
|
66
|
+
| **Runs** | run history; a row opens in place into state-of-play, resume prompt, checkpoint, trace tail | — |
|
|
67
|
+
| **Knowledge** | wiki freshness and refresh scope, code patterns, gotchas, wiki debt | `wiki sync`, `gotcha prune` |
|
|
68
|
+
| **Stats** | lane and agent usage, downgrades, and a **Cost** tab with a stacked token bar | — |
|
|
69
|
+
| **Flow** | the compiled DIY flow, its gate, and a stepper of every phase in order | `diy set`, `diy compile`, presets |
|
|
70
|
+
| **Crosslink** | Design (the boundary drawn as a graph) and Settings (each peer's freshness) | `crosslink add` / `remove` |
|
|
71
|
+
| **Promises** | the pact ledger, with *"also flagged by"* when boundary and aftermath agree | `pact check`, `pact sync` |
|
|
72
|
+
| **Boundary** | execute / escalate / refuse per area, and what would make a refuse a yes | — |
|
|
73
|
+
| **Self-serve** | the graded surfaces a non-developer can change | `handoff set` |
|
|
74
|
+
| **Mocked Skill Use** | every mocked run that ships with ORC, grouped and searchable | — |
|
|
75
|
+
| **Learn** | the `orc onboarding` walkthrough, one section at a time | — |
|
|
76
|
+
| **Experiment** | every lane with a copy button; opens a Claude session in a terminal | — |
|
|
77
|
+
| **Maintenance** | `update`, `update --prune`, `doctor --fix`, `upgrade` | preview, then apply |
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## 3. A maintenance action, start to finish
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
Maintenance ▸ Remove orphaned files
|
|
85
|
+
|
|
86
|
+
Command: orc update --prune
|
|
87
|
+
[ Preview ] ← Apply stays disabled until you press this
|
|
88
|
+
|
|
89
|
+
Preview (read-only, this is `orc doctor` output):
|
|
90
|
+
3 files ORC owns are no longer part of the payload:
|
|
91
|
+
.claude/agents/orc-executor-opus-4-8-med.md
|
|
92
|
+
.claude/skills/orc/references/old-scoring.md
|
|
93
|
+
.claude/commands/orc-config.md
|
|
94
|
+
Nothing else will be touched. Your config, patterns, wiki and run
|
|
95
|
+
folders are never in this list.
|
|
96
|
+
|
|
97
|
+
[ Apply ] → confirm → the real command runs, output streams here
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## 4. What to notice
|
|
103
|
+
|
|
104
|
+
- **The panel is the CLI.** Every number on screen came from
|
|
105
|
+
`orc <command> --json`, and every button shells the real command. It cannot
|
|
106
|
+
drift from the CLI, because it has no second copy of anything.
|
|
107
|
+
- **A free action gets a button. A paid action gets a command to copy.**
|
|
108
|
+
Anything that would cost model tokens is never run from here.
|
|
109
|
+
- **A prune names every file.** A count is not consent.
|
|
110
|
+
- **It is treated as a write surface**: loopback only, a fresh token per
|
|
111
|
+
launch, a check against DNS rebinding, no CORS, and mutations must be POST.
|
|
112
|
+
- **Project-scoped.** There is no `--global` config here. If a global install
|
|
113
|
+
exists that could win skill resolution, every page carries a banner saying
|
|
114
|
+
so — reported, never edited from here.
|
|
115
|
+
- **English and Indonesian**, switched from the rail. Only the panel's own
|
|
116
|
+
words are translated: config keys, model ids, paths, commands and doctor
|
|
117
|
+
messages are printed exactly as the CLI wrote them, because a translated
|
|
118
|
+
config key is a key that does not exist.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 5. Related
|
|
123
|
+
|
|
124
|
+
- The terminal half: [`orc` CLI tour](orc-cli.md)
|
|
125
|
+
- Compose a flow the panel can then edit: [`/orc-diy`](orc-diy.md)
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Mock run — `/orc-ultra`
|
|
2
|
+
|
|
3
|
+
> The same pipeline as `/orc`, plus an advisor at the start and three judges
|
|
4
|
+
> along the way. It costs the most. Use it when a mistake is expensive.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. What it does
|
|
9
|
+
|
|
10
|
+
`/orc-ultra` adds four things to a normal `/orc` run:
|
|
11
|
+
|
|
12
|
+
| Extra | When | What it is for |
|
|
13
|
+
|---|---|---|
|
|
14
|
+
| **Advisor** | before the analyst | Writes a brief: real risks, other ways to do it, a **security section**, and a **rubric** — the list of things a correct answer must get right here |
|
|
15
|
+
| **Judge (analysis)** | after the analyst | Scores the analysis against that rubric |
|
|
16
|
+
| **Judge (plan)** | after the planner | Same, for the plan |
|
|
17
|
+
| **Judge (implementation)** | after verify | Did we build what was asked, at the quality asked |
|
|
18
|
+
|
|
19
|
+
It also forces on: deep analysis, code patterns, test authoring, the security
|
|
20
|
+
pass, and a floor on executor models. You do not configure any of that — the
|
|
21
|
+
lane sets it for this run only and never writes it to your settings.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 2. The run
|
|
26
|
+
|
|
27
|
+
Rina is changing how refunds are calculated. Money code.
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
> /orc-ultra rewrite the refund amount calculation to support partial refunds
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Phase U0 — Advisor (runs once, before anything else)
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
Dispatching orc-advisor-opus-5-xhigh …
|
|
37
|
+
returned as: claude-opus-5 / xhigh ✓
|
|
38
|
+
|
|
39
|
+
ADVISORY BRIEF — partial refunds
|
|
40
|
+
|
|
41
|
+
Risks in this domain
|
|
42
|
+
· Rounding. A cent lost per refund is a real bug, not a rounding style.
|
|
43
|
+
· Double refunds. Retry + no idempotency key = money out twice.
|
|
44
|
+
· Currency. api/payments/ stores minor units; web/ formats major units.
|
|
45
|
+
|
|
46
|
+
Security section (always written)
|
|
47
|
+
· The refund endpoint must re-check ownership. Today it checks the session
|
|
48
|
+
only — api/refunds/create.ts:31.
|
|
49
|
+
|
|
50
|
+
RUBRIC — what a correct answer must get right here
|
|
51
|
+
R1 amounts are integers in minor units end to end
|
|
52
|
+
R2 a partial refund can never exceed the remaining refundable amount
|
|
53
|
+
R3 the operation is idempotent per refund request id
|
|
54
|
+
R4 every branch has a test with a real number in it
|
|
55
|
+
|
|
56
|
+
OPEN QUESTIONS (answer together, one round)
|
|
57
|
+
Q1 Can one order have several partial refunds? default: yes
|
|
58
|
+
Q2 Rounding on a split refund — who gets the cent? default: the last refund
|
|
59
|
+
|
|
60
|
+
> Q1 yes. Q2 the customer gets the cent, not us.
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Then the normal pipeline, with gates
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Analyst (deep, 3 scouts) → done
|
|
67
|
+
Judge (gate=analysis): APPROVE with 1 note
|
|
68
|
+
R2 is not evidenced anywhere in the analysis. Cited section added.
|
|
69
|
+
|
|
70
|
+
Planner → 6 tasks
|
|
71
|
+
Judge (gate=plan): REVISE
|
|
72
|
+
"T3 changes the refund total but has no test task. R4 fails."
|
|
73
|
+
→ planner re-ran once → TDD task added → APPROVE
|
|
74
|
+
|
|
75
|
+
Build → review → verify → PASSED
|
|
76
|
+
Judge (gate=implementation): APPROVE
|
|
77
|
+
R1 ✓ minor units, checked at refunds/calc.ts:18 and web/format.ts:9
|
|
78
|
+
R2 ✓ test "cannot refund more than remaining" — a real number, 1250
|
|
79
|
+
R3 ✓ idempotency key on the request row
|
|
80
|
+
R4 ✓ 9 new tests, all with numbers
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## 3. What to notice
|
|
86
|
+
|
|
87
|
+
- **The judge can send work back, but only twice.** A REVISE loop is capped at
|
|
88
|
+
2 rounds. After that it must APPROVE, ESCALATE to you, or stop. It can never
|
|
89
|
+
argue with itself forever.
|
|
90
|
+
- **A judge never fixes anything.** It reads and it votes. The author fixes.
|
|
91
|
+
- **A judge never re-opens an earlier gate.** The plan judge does not re-argue
|
|
92
|
+
the analysis.
|
|
93
|
+
- **The rubric came before the work.** That is the trick — the standard is
|
|
94
|
+
written by someone who has not seen the answer yet.
|
|
95
|
+
- **`ultra_mode` is not a setting.** It exists only inside this command. `/orc`
|
|
96
|
+
and `/orc-mini` never turn it on.
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## 4. Related
|
|
101
|
+
|
|
102
|
+
- The normal pipeline: [`/orc`](orc.md)
|
|
103
|
+
- What it will cost first: [`/orc-budget`](orc-budget.md)
|