@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,229 @@
|
|
|
1
|
+
# `/orc-doc` — build your own long document
|
|
2
|
+
|
|
3
|
+
You bring a context. You leave with a finished Markdown document that imports
|
|
4
|
+
cleanly into Notion, Obsidian, Google Docs, Coda, Craft and GitHub — plus a file
|
|
5
|
+
that lets a brand-new session pick the work up months later without you
|
|
6
|
+
explaining anything twice.
|
|
7
|
+
|
|
8
|
+
## The one sentence
|
|
9
|
+
|
|
10
|
+
> **The orchestrator never reads the document body.** It knows the document only
|
|
11
|
+
> through the CLI's derived section map and through what the agents it
|
|
12
|
+
> dispatched report back.
|
|
13
|
+
|
|
14
|
+
That is why a 900-line TSD does not end a session. Nothing that holds context
|
|
15
|
+
ever holds the document: each writer owns exactly ONE file, each checker reads
|
|
16
|
+
ONE bounded part, and the orchestrator holds a map.
|
|
17
|
+
|
|
18
|
+
And since v0.49.0 there is a second sentence:
|
|
19
|
+
|
|
20
|
+
> **`sections/` is the source of truth. `document.md` is a build artifact.**
|
|
21
|
+
|
|
22
|
+
Each section lives in its own file you can open, edit and diff in a PR.
|
|
23
|
+
`orc doc compile` rebuilds the document from them, for free, whenever you ask —
|
|
24
|
+
so a resumed session, an update and a re-check never touch the 10,000-line
|
|
25
|
+
file.
|
|
26
|
+
|
|
27
|
+
## Five base templates
|
|
28
|
+
|
|
29
|
+
| Type | For |
|
|
30
|
+
|---|---|
|
|
31
|
+
| `prd` | a product requirements document |
|
|
32
|
+
| `tsd` | a technical specification / design document |
|
|
33
|
+
| `collaboration` | a cross-team working agreement (RACI is the spine) |
|
|
34
|
+
| `report` | a status or outcome report (executive summary + RAG) |
|
|
35
|
+
| `workflow` | an SOP or runbook, written for the least experienced person qualified to do the job |
|
|
36
|
+
|
|
37
|
+
`orc doc templates` prints all five with their section lists. **A template is a
|
|
38
|
+
floor, not a cage** — bring your own and its headings become the outline.
|
|
39
|
+
|
|
40
|
+
## What it asks you, in this order
|
|
41
|
+
|
|
42
|
+
| Gate | What | If you have nothing |
|
|
43
|
+
|---|---|---|
|
|
44
|
+
| **D1** | What do you want written, and about what? | It **stops**. A document invented from nothing is worse than no document |
|
|
45
|
+
| **D2** | Any files I should read first? | "none" is a complete answer |
|
|
46
|
+
| **D3** | Do you have your own template? | It uses the shipped one and shows you the sections first |
|
|
47
|
+
| **D4** | What is it for · who reads it · what must they be able to do · language · type · where it will end up · how long | Every field has a recommended default, and accepting one counts as answering |
|
|
48
|
+
|
|
49
|
+
Then it shows you the outline and waits. Changing the outline after a write wave
|
|
50
|
+
is what costs money.
|
|
51
|
+
|
|
52
|
+
It also asks **how much to write at once**: `partial` (recommended) writes ONE
|
|
53
|
+
wave and stops so you can read those section files and redirect before the rest
|
|
54
|
+
is paid for; `all` writes every wave. Asked once, stored, never re-decided.
|
|
55
|
+
|
|
56
|
+
Then, **once, before the first paid wave**, it shows you the run map: how many
|
|
57
|
+
sections, how many waves, how many agents per wave, **how many times it will
|
|
58
|
+
stop**, and what the whole document is likely to cost. With no history to go on
|
|
59
|
+
it says so and refuses to invent numbers — `orc doc forecast <slug> --naive`
|
|
60
|
+
gives you a floor from the public price table instead.
|
|
61
|
+
|
|
62
|
+
## Your project's own house rules
|
|
63
|
+
|
|
64
|
+
A **house rule** is your standing instruction about what a document says and how
|
|
65
|
+
it reads: *"open with a one-paragraph summary a PM can read on a phone"*,
|
|
66
|
+
*"money always carries its currency"*. They are read **first** in every dispatch,
|
|
67
|
+
above ORC's own rules.
|
|
68
|
+
|
|
69
|
+
**It is a plain text file, not a form.** `.claude/orc/doc-house-rules.md` has
|
|
70
|
+
three headings and **as much text under each one as you want** — write them the
|
|
71
|
+
way you would write them for a person:
|
|
72
|
+
|
|
73
|
+
```markdown
|
|
74
|
+
## P0
|
|
75
|
+
|
|
76
|
+
Every document opens with a one-paragraph summary a busy exec can read.
|
|
77
|
+
Money is always written with its currency, never a bare number.
|
|
78
|
+
|
|
79
|
+
## P1
|
|
80
|
+
|
|
81
|
+
Use the customer's words for a customer-facing concept, not the table name.
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Edit it in your editor, or in one box in `orc ui` ▸ **Docs**. From the CLI:
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
orc doc rules # the project ledger + where it lives
|
|
88
|
+
orc doc rules set --priority P0 --text "…" # replace one block (multi-line is the point)
|
|
89
|
+
orc doc rules add --priority P0 --text "…" # append to a block
|
|
90
|
+
orc doc rules <slug> # what THIS document was frozen against
|
|
91
|
+
orc doc rules <slug> --sync # re-freeze, deliberately
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**P0** must · **P1** should (breaking it is recorded as a gap) · **P2** prefer.
|
|
95
|
+
|
|
96
|
+
Each document **freezes** the text that was there when it started, so a rule you
|
|
97
|
+
change at wave 3 cannot silently invalidate half a document. `orc doc rules
|
|
98
|
+
<slug>` names every block that moved since; `--sync` re-freezes and tells you
|
|
99
|
+
which sections predate the change. **It re-writes nothing on its own** — whether
|
|
100
|
+
any of them needs redoing is your call.
|
|
101
|
+
|
|
102
|
+
House rules govern **what the document says and how it reads**. They can never
|
|
103
|
+
change how this lane runs, and ORC says so rather than pretending to detect it:
|
|
104
|
+
a rule that asks for something structural comes back marked unsupported, as a
|
|
105
|
+
gap you can see.
|
|
106
|
+
|
|
107
|
+
## Four rules it applies to every document
|
|
108
|
+
|
|
109
|
+
All four are free — a deterministic check, no model tokens.
|
|
110
|
+
|
|
111
|
+
- **No questions or confirmations in the body.** The document answers; it does
|
|
112
|
+
not ask. A section your own outline calls *open questions*, *risks* or
|
|
113
|
+
*assumptions* is exempt, and so is fenced code.
|
|
114
|
+
- **What is missing is `N/A` plus one short line** — never written around.
|
|
115
|
+
- **A section well over its planned length is a finding** (1.5× its budget).
|
|
116
|
+
- **No local-only references.** No `src/foo.ts:42`, no `./relative`, no
|
|
117
|
+
`localhost`, no link to a local `.md` — whoever reads a PRD has no repository.
|
|
118
|
+
Code examples are exempt, and `doc_local_refs` turns it down to a warning (or
|
|
119
|
+
off) for a genuinely internal runbook.
|
|
120
|
+
|
|
121
|
+
**A template you supply is a cage, not a suggestion.** A heading it never had is
|
|
122
|
+
a lint error, and a part that grew one is refused rather than recorded.
|
|
123
|
+
`--template-soft` opts out.
|
|
124
|
+
|
|
125
|
+
## Every wave is a stop
|
|
126
|
+
|
|
127
|
+
A wave boundary is not a loop iteration. At the end of each one you get every
|
|
128
|
+
file path it wrote, a free way to see it as one document, and the single line
|
|
129
|
+
that resumes the work:
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
Wave 2 of 7 done — 6 of 17 sections written.
|
|
133
|
+
orc/orc-doc/acme-prd-170826/sections/05-rollout.md 96 L
|
|
134
|
+
|
|
135
|
+
See it as one file (free): orc doc compile acme-prd-170826 --partial
|
|
136
|
+
To carry on — new session, or after your usage limit resets:
|
|
137
|
+
/orc-doc resume acme-prd-170826
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
`RESUME.md` is written **first**, before anything that needs a subagent, into
|
|
141
|
+
`.claude/orc/run/<slug>/` — so `orc resume` and `orc run list` can actually find
|
|
142
|
+
it. The section files on disk ARE the progress: the next session starts at wave
|
|
143
|
+
3 and re-reads nothing it already wrote.
|
|
144
|
+
|
|
145
|
+
## Doing it by hand
|
|
146
|
+
|
|
147
|
+
Every step has a real CLI command, and every one of them is free:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
orc doc templates # the five, with their sections
|
|
151
|
+
orc doc targets # where a .md can actually go
|
|
152
|
+
orc doc init my-prd --type prd --target notion
|
|
153
|
+
orc doc outline my-prd --set my-headings.md # or bring your own structure
|
|
154
|
+
orc doc mode my-prd --set partial # one wave at a time, then stop
|
|
155
|
+
orc doc plan my-prd --role write --json # the batching: <=2 agents, ONE FILE PER SECTION
|
|
156
|
+
# … writers fill sections/<id>.md …
|
|
157
|
+
orc doc parts my-prd --confirm 01-x,02-y # record the validated returns
|
|
158
|
+
orc doc parts my-prd # what is written, and what is not
|
|
159
|
+
orc doc compile my-prd [--partial] # sections/ -> document.md. FREE
|
|
160
|
+
orc doc lint my-prd # the free check (0 clean / 1 findings)
|
|
161
|
+
orc doc map my-prd # fresh line numbers, never stored
|
|
162
|
+
orc doc plan my-prd --role check --json # one bounded part file per checker
|
|
163
|
+
orc doc split my-prd --section 04-design --by-heading # store a big section in parts
|
|
164
|
+
orc doc split my-prd # recover sections/ from document.md
|
|
165
|
+
orc doc status my-prd # 0 nothing to do / 1 something to do / 2 unknown
|
|
166
|
+
orc doc next my-prd # what to do next, and whether it costs money
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
`orc doc assemble`, `extract` and `splice` still work — they are thin aliases for
|
|
170
|
+
one release. A v1 document migrates the first time you touch it: `document.md` is
|
|
171
|
+
split into `sections/` and **never deleted**, and an unparseable one is refused
|
|
172
|
+
rather than guessed at.
|
|
173
|
+
|
|
174
|
+
`orc doc list` shows every document with its `Where it stands:` line.
|
|
175
|
+
|
|
176
|
+
## What it cost
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
orc doc forecast <slug> # before you pay: waves, stops, and a range
|
|
180
|
+
orc doc cost <slug> # after: joined across EVERY session it spanned
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
`orc budget actual` works per run, and a document is not a run. `orc doc cost`
|
|
184
|
+
joins every trace for the slug to your local usage transcripts and reports per
|
|
185
|
+
role and per section. A section it cannot join reads `—`, never `0` — an unknown
|
|
186
|
+
reported as a number is worse than an unknown reported as unknown.
|
|
187
|
+
|
|
188
|
+
## Coming back
|
|
189
|
+
|
|
190
|
+
```
|
|
191
|
+
/orc-doc resume lists every document
|
|
192
|
+
/orc-doc resume prd-checkout a prefix is enough
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
The new session reads `context.md`, tells you which sections **you** edited
|
|
196
|
+
since last time, and then **stops and asks what should change**. It never
|
|
197
|
+
re-asks what you already answered, and it never rewrites a section you touched
|
|
198
|
+
unless you name it.
|
|
199
|
+
|
|
200
|
+
## What it will not do
|
|
201
|
+
|
|
202
|
+
- Read your document body into the orchestrator's context.
|
|
203
|
+
- Invent a fact. Anything it was not given comes back as a **gap** — recorded in
|
|
204
|
+
`gaps.md` and raised with you, never written into the document.
|
|
205
|
+
- Put its own bookkeeping in your deliverable.
|
|
206
|
+
The document **carries content only**: no `> **Open:**`, no
|
|
207
|
+
`> **Assumption:**`, no note callout, in `document.md` OR in a section file.
|
|
208
|
+
- Stub a section it has not written. Under `--partial` a missing section is
|
|
209
|
+
simply **absent**, and named loudly outside the document.
|
|
210
|
+
- Overwrite a paragraph you wrote. A section whose hash moved is `user-edited`,
|
|
211
|
+
and nothing rewrites it without you naming it.
|
|
212
|
+
- Ship a document that is behind its own sections. `orc doc ship` refuses and
|
|
213
|
+
names what moved.
|
|
214
|
+
- Stage or commit anything. It prints the `git add` command.
|
|
215
|
+
- Grade its own output. It offers `/orc-challenge`, in a separate session.
|
|
216
|
+
|
|
217
|
+
## Config
|
|
218
|
+
|
|
219
|
+
| Key | Default | What it does |
|
|
220
|
+
|---|---|---|
|
|
221
|
+
| `doc_max_lines_per_agent` | `400` | write/read budget per dispatched agent |
|
|
222
|
+
| `doc_max_parallel` | `2` | agents per wave. **Hard cap 2** — larger is clamped, and the clamp is announced |
|
|
223
|
+
| `doc_write_mode` | `ask` | `partial` writes one wave then stops · `all` writes every wave · `ask` makes it a question, asked once and stored |
|
|
224
|
+
| `doc_language` | `en` | the D4 default, always confirmable per run |
|
|
225
|
+
| `doc_local_refs` | `error` | how a local-only reference is treated: `off` · `warn` · `error` |
|
|
226
|
+
| `doc_dir` | `orc/orc-doc` | where the folders live |
|
|
227
|
+
|
|
228
|
+
`opus5_only` is a **no-op** here: both agents are already `claude-opus-5`. The
|
|
229
|
+
lane is *unaffected*, not exempt.
|