@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,423 @@
|
|
|
1
|
+
# Mock run — `/orc-export`
|
|
2
|
+
|
|
3
|
+
> Send everything ORC knows to other AI tools. And read theirs in.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. What it does
|
|
8
|
+
|
|
9
|
+
`AGENTS.md` is an open file format. It is kept by the Agentic AI Foundation
|
|
10
|
+
under the Linux Foundation. More than 30 AI coding tools read it: Codex,
|
|
11
|
+
Cursor, Copilot, Gemini CLI, Jules, Aider, Zed, Windsurf, Devin, and more.
|
|
12
|
+
`SKILL.md` is the matching open format for skills.
|
|
13
|
+
|
|
14
|
+
ORC spends real money learning about your project. The wiki. The code patterns.
|
|
15
|
+
The promises in `PACT.md`. The boundary cards. That knowledge sits inside
|
|
16
|
+
`.claude/` and only ORC can use it.
|
|
17
|
+
|
|
18
|
+
`/orc-export` has two directions:
|
|
19
|
+
|
|
20
|
+
- **out** — turn what ORC knows into `AGENTS.md` and a portable skill bundle,
|
|
21
|
+
so Codex or Cursor can use it too.
|
|
22
|
+
- **in** — read an existing `AGENTS.md` or `.cursorrules` in a project that has
|
|
23
|
+
never used ORC, and turn it into a starting point.
|
|
24
|
+
|
|
25
|
+
### One rule
|
|
26
|
+
|
|
27
|
+
**The export is derived. Never hand-written.**
|
|
28
|
+
|
|
29
|
+
Same rule as `wiki/orc-orientation.md`. You never edit the output. You
|
|
30
|
+
regenerate it. It carries a `source_commit`, so any tool that reads it can tell
|
|
31
|
+
if it is old. And `orc export --check` fails if it fell behind its sources.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## 2. The run — out
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
> /orc-export
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
ORC · export
|
|
43
|
+
|
|
44
|
+
Reading what ORC knows about shopcart.
|
|
45
|
+
|
|
46
|
+
wiki 12 docs, FRESH, anchored e9dad01
|
|
47
|
+
orientation wiki/orc-orientation.md, present
|
|
48
|
+
code patterns typescript (cached 22-07-2026)
|
|
49
|
+
promises PACT.md — 5 holding, 1 uncheckable
|
|
50
|
+
boundary cards 4 areas
|
|
51
|
+
current plan plan.md — 12 tasks (I will ask before including this)
|
|
52
|
+
commands npm test · npm run build · npm run i18n:check
|
|
53
|
+
|
|
54
|
+
Two questions before I write.
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
ORC · export · round 1 (2 questions)
|
|
59
|
+
|
|
60
|
+
Q1 — What should I write?
|
|
61
|
+
|
|
62
|
+
a AGENTS.md only
|
|
63
|
+
One file at the project root. 30+ tools read it. Simplest.
|
|
64
|
+
|
|
65
|
+
b AGENTS.md + a portable skill bundle (recommended)
|
|
66
|
+
Also writes .agent/skills/shopcart-context/SKILL.md, which works in
|
|
67
|
+
Codex, Cursor, Copilot and Claude Code without changes.
|
|
68
|
+
|
|
69
|
+
c Everything, plus per-area skills
|
|
70
|
+
One skill per boundary area. Good for a big team. More files.
|
|
71
|
+
|
|
72
|
+
Q2 — Should the current plan go in?
|
|
73
|
+
|
|
74
|
+
a No — knowledge only (recommended)
|
|
75
|
+
The export stays useful after this plan is finished.
|
|
76
|
+
|
|
77
|
+
b Yes — include plan.md
|
|
78
|
+
Good if you want another tool to continue this exact work today.
|
|
79
|
+
But the export goes stale the moment the plan is done.
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
> b and a
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
ORC · export · safety check
|
|
88
|
+
|
|
89
|
+
Before writing, I check what must never leave .claude/:
|
|
90
|
+
|
|
91
|
+
.env / .env.* excluded (2 files found and skipped)
|
|
92
|
+
secrets in config/app.yaml excluded (1 key: stripe.secret_key)
|
|
93
|
+
.claude/orc/run/** excluded (run state is not knowledge)
|
|
94
|
+
.claude/orc/logs/** excluded (traces can contain paths and errors)
|
|
95
|
+
learning-docs/** excluded (git-ignored by design)
|
|
96
|
+
|
|
97
|
+
Nothing else was found that looks like a secret.
|
|
98
|
+
I still recommend you read AGENTS.md once before you commit it.
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
ORC · export · written
|
|
103
|
+
|
|
104
|
+
AGENTS.md project root, 118 lines
|
|
105
|
+
.agent/skills/shopcart-context/SKILL.md portable skill, 74 lines
|
|
106
|
+
.agent/skills/shopcart-context/reference.md the long detail
|
|
107
|
+
|
|
108
|
+
source_commit : e9dad01
|
|
109
|
+
generated_at : 08-09-2026T10:14:02Z
|
|
110
|
+
|
|
111
|
+
Check any time with: orc export --check
|
|
112
|
+
It fails when the wiki, the pact, or the patterns move ahead of this file.
|
|
113
|
+
|
|
114
|
+
Trace: run-export-shopcart-080926-101402.txt
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## 3. The files it made
|
|
120
|
+
|
|
121
|
+
### `AGENTS.md` — at the project root
|
|
122
|
+
|
|
123
|
+
````markdown
|
|
124
|
+
<!-- orc-export:meta
|
|
125
|
+
source_commit: e9dad01
|
|
126
|
+
generated_at: 2026-09-08T10:14:02Z
|
|
127
|
+
sources: wiki(12 docs) pact(6) patterns(typescript) boundary(4 areas)
|
|
128
|
+
generated_by: orc-export
|
|
129
|
+
DO NOT EDIT BY HAND. Regenerate with: orc export
|
|
130
|
+
-->
|
|
131
|
+
|
|
132
|
+
# shopcart
|
|
133
|
+
|
|
134
|
+
A small web shop. React + TypeScript on the front, Node + Express + Postgres
|
|
135
|
+
on the back.
|
|
136
|
+
|
|
137
|
+
## Commands
|
|
138
|
+
|
|
139
|
+
| Task | Command |
|
|
140
|
+
|---|---|
|
|
141
|
+
| Install | `npm install` |
|
|
142
|
+
| Build | `npm run build` |
|
|
143
|
+
| Test | `npm test` (vitest) |
|
|
144
|
+
| Check translations | `npm run i18n:check` |
|
|
145
|
+
| Lint | `npm run lint` |
|
|
146
|
+
|
|
147
|
+
## Layout
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
web/ React app. Screen text lives in web/locales/, never in components.
|
|
151
|
+
api/ Express server. One folder per domain: payments, refunds, checkout.
|
|
152
|
+
db/ Postgres migrations. No down-migrations exist yet.
|
|
153
|
+
config/ app.yaml (has a schema) and flags.yaml (does not).
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## Rules this project must follow
|
|
157
|
+
|
|
158
|
+
These come from decisions the team already made. Breaking one is a bug,
|
|
159
|
+
not a style choice.
|
|
160
|
+
|
|
161
|
+
1. **A payment is never written twice for one idempotency key.**
|
|
162
|
+
Lives in `api/payments/ledger.ts:88`. Proved by `npm test -- idempotency`.
|
|
163
|
+
2. **Every price is a whole number of cents.** Never a decimal, never a float
|
|
164
|
+
column. `api/payments/money.ts:12`.
|
|
165
|
+
3. **A guest can finish checkout with no account.** `api/checkout/session.ts:31`.
|
|
166
|
+
4. **A refund is only allowed inside 45 days.** Temporary for the November
|
|
167
|
+
sale — goes back to 30 days on 01-12-2026. `api/refunds/window.ts:19`.
|
|
168
|
+
5. **A full card number is never written to any log.** `api/middleware/logger.ts`.
|
|
169
|
+
6. **Refund money goes back to the original payment method.**
|
|
170
|
+
`api/refunds/payout.ts:44`. **No test proves this yet.** Be careful here.
|
|
171
|
+
|
|
172
|
+
## Code style, learned from this repo
|
|
173
|
+
|
|
174
|
+
- Errors are returned, not thrown, across the `api/` boundary.
|
|
175
|
+
Pattern: `Result<T, AppError>` from `api/lib/result.ts`.
|
|
176
|
+
- Every route handler is thin. Logic lives in a service file next to it.
|
|
177
|
+
- Tests sit in `__tests__/` beside the code, never in a top-level test folder.
|
|
178
|
+
- Screen text is never written inside a component. It goes in
|
|
179
|
+
`web/locales/en.json` and `web/locales/id.json`, and both must have the
|
|
180
|
+
same keys.
|
|
181
|
+
|
|
182
|
+
## Where to be careful
|
|
183
|
+
|
|
184
|
+
| Area | Care level | Why |
|
|
185
|
+
|---|---|---|
|
|
186
|
+
| `db/migrations/` | **Do not run** | No down-migrations. No staging database. |
|
|
187
|
+
| `api/refunds/payout.ts` | High | Rule 6 above has no test. |
|
|
188
|
+
| `api/payments/` | Normal | Well covered by tests. |
|
|
189
|
+
| `web/` | Normal | Well covered. |
|
|
190
|
+
| `config/flags.yaml` | Medium | No schema. A wrong key fails silently. |
|
|
191
|
+
|
|
192
|
+
## Where to read more
|
|
193
|
+
|
|
194
|
+
- `wiki/orc-orientation.md` — read this first
|
|
195
|
+
- `wiki/orc-architecture-overview.md`
|
|
196
|
+
- `PACT.md` — the rules above, with their history
|
|
197
|
+
- `.agent/skills/shopcart-context/reference.md` — the long version
|
|
198
|
+
````
|
|
199
|
+
|
|
200
|
+
### `.agent/skills/shopcart-context/SKILL.md` — the portable skill
|
|
201
|
+
|
|
202
|
+
````markdown
|
|
203
|
+
---
|
|
204
|
+
name: shopcart-context
|
|
205
|
+
description: Use when working in the shopcart repository. Gives the project's
|
|
206
|
+
layout, commands, hard rules, code style, and the areas that need care.
|
|
207
|
+
Generated from ORC's wiki, pact ledger, and code patterns.
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
# shopcart context
|
|
211
|
+
|
|
212
|
+
Read `reference.md` in this folder before you change any file in `api/` or
|
|
213
|
+
`db/`.
|
|
214
|
+
|
|
215
|
+
## Always
|
|
216
|
+
|
|
217
|
+
- Run `npm test` before you say a change is done.
|
|
218
|
+
- Put screen text in `web/locales/`, never in a component.
|
|
219
|
+
- Return errors, do not throw, across the `api/` boundary.
|
|
220
|
+
|
|
221
|
+
## Never
|
|
222
|
+
|
|
223
|
+
- Never run or write a migration in `db/migrations/` — there are no
|
|
224
|
+
down-migrations and no staging database.
|
|
225
|
+
- Never write a decimal into a price column.
|
|
226
|
+
- Never log a full card number.
|
|
227
|
+
|
|
228
|
+
## Ask a human first
|
|
229
|
+
|
|
230
|
+
- Anything in `api/refunds/payout.ts`. The rule that covers it has no test.
|
|
231
|
+
- Anything that calls Stripe with a real key.
|
|
232
|
+
|
|
233
|
+
<!-- orc-export:meta source_commit=e9dad01 generated_at=2026-09-08T10:14:02Z -->
|
|
234
|
+
````
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## 4. The CLI part
|
|
239
|
+
|
|
240
|
+
```
|
|
241
|
+
$ orc export --check
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
Right after generating:
|
|
245
|
+
|
|
246
|
+
```
|
|
247
|
+
EXPORT · current
|
|
248
|
+
|
|
249
|
+
AGENTS.md source_commit e9dad01 ✓ current
|
|
250
|
+
SKILL.md source_commit e9dad01 ✓ current
|
|
251
|
+
|
|
252
|
+
sources unchanged since generation
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Exit `0`.
|
|
256
|
+
|
|
257
|
+
Three weeks later, after the wiki was refreshed and a promise changed:
|
|
258
|
+
|
|
259
|
+
```
|
|
260
|
+
$ orc export --check
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
EXPORT · STALE
|
|
265
|
+
|
|
266
|
+
AGENTS.md source_commit e9dad01 ✗ stale
|
|
267
|
+
SKILL.md source_commit e9dad01 ✗ stale
|
|
268
|
+
|
|
269
|
+
what moved:
|
|
270
|
+
wiki 12 docs → 14 docs, anchored 3b71ce2
|
|
271
|
+
pact PACT-006 is now HOLDING (a test was written)
|
|
272
|
+
pattern typescript re-cached 02-09-2026
|
|
273
|
+
|
|
274
|
+
Your AGENTS.md still tells other tools that PACT-006 has no test.
|
|
275
|
+
That is now wrong, and Cursor is reading it.
|
|
276
|
+
|
|
277
|
+
Fix: orc export
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
Exit `1`. **This is the reason the export is derived and fingerprinted.** A
|
|
281
|
+
hand-written `AGENTS.md` goes wrong quietly. This one says so out loud.
|
|
282
|
+
|
|
283
|
+
```
|
|
284
|
+
$ orc export --check --json
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
```json
|
|
288
|
+
{
|
|
289
|
+
"targets": [
|
|
290
|
+
{ "file": "AGENTS.md", "source_commit": "e9dad01", "stale": true },
|
|
291
|
+
{ "file": ".agent/skills/shopcart-context/SKILL.md", "source_commit": "e9dad01", "stale": true }
|
|
292
|
+
],
|
|
293
|
+
"head_commit": "3b71ce2",
|
|
294
|
+
"moved": [
|
|
295
|
+
{ "source": "wiki", "from": "12 docs @ e9dad01", "to": "14 docs @ 3b71ce2" },
|
|
296
|
+
{ "source": "pact", "detail": "PACT-006 uncheckable → holding" },
|
|
297
|
+
{ "source": "pattern", "detail": "typescript re-cached 2026-09-02" }
|
|
298
|
+
],
|
|
299
|
+
"exit": 1
|
|
300
|
+
}
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
## 5. The run — in
|
|
306
|
+
|
|
307
|
+
A different project. It has an `AGENTS.md` already. It has never used ORC.
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
> /orc-export import
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
```
|
|
314
|
+
ORC · export · import
|
|
315
|
+
|
|
316
|
+
I found files that describe this project:
|
|
317
|
+
|
|
318
|
+
AGENTS.md 82 lines written by hand, last changed 3 months ago
|
|
319
|
+
.cursorrules 31 lines
|
|
320
|
+
CLAUDE.md none
|
|
321
|
+
|
|
322
|
+
I will read them as EVIDENCE, not as instructions.
|
|
323
|
+
That means: I will propose things, and you confirm. Nothing is written and
|
|
324
|
+
nothing is set until you say yes.
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
```
|
|
328
|
+
ORC · export · what I found
|
|
329
|
+
|
|
330
|
+
Facts I can check against the code:
|
|
331
|
+
|
|
332
|
+
✓ "run tests with pnpm test" confirmed — package.json has it
|
|
333
|
+
✓ "we use Drizzle, not Prisma" confirmed — drizzle.config.ts exists
|
|
334
|
+
✗ "the API lives in src/server" NOT TRUE — it is in apps/api/
|
|
335
|
+
(this file is 3 months old)
|
|
336
|
+
|
|
337
|
+
Rules that look like promises. These could start your pact ledger:
|
|
338
|
+
|
|
339
|
+
1 "Never call the billing API from the frontend."
|
|
340
|
+
2 "All dates are stored in UTC."
|
|
341
|
+
3 "Do not add a new dependency without asking the team."
|
|
342
|
+
|
|
343
|
+
Rule 3 is a team process, not a code rule. I would leave it out of the
|
|
344
|
+
ledger. Your call.
|
|
345
|
+
|
|
346
|
+
Nothing here sets ORC config by itself. What would you like to do?
|
|
347
|
+
|
|
348
|
+
1 Create a pact ledger from rules 1 and 2, and find checks for them
|
|
349
|
+
2 Create it from all three
|
|
350
|
+
3 Skip the ledger — just fix the wrong path in AGENTS.md
|
|
351
|
+
4 Nothing for now
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
**Notice:** the import found that the existing `AGENTS.md` was **wrong**. That
|
|
355
|
+
alone is worth the run. A stale instruction file is actively harmful — every
|
|
356
|
+
AI tool in the team has been reading "the API lives in src/server" for three
|
|
357
|
+
months.
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## 6. Inside a normal `/orc` run
|
|
362
|
+
|
|
363
|
+
`/orc-export` is mostly a CLI tool with a small skill on top. Its seam is
|
|
364
|
+
light on purpose:
|
|
365
|
+
|
|
366
|
+
**At ship**, if an export exists and went stale:
|
|
367
|
+
|
|
368
|
+
```
|
|
369
|
+
Ship
|
|
370
|
+
|
|
371
|
+
Shipped 11 tasks.
|
|
372
|
+
|
|
373
|
+
Note: AGENTS.md is now stale. This run changed 2 files it describes.
|
|
374
|
+
Other tools in your team (Cursor, Codex) are reading the old version.
|
|
375
|
+
|
|
376
|
+
Run `orc export` to refresh it. Takes 3 seconds, no tokens.
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
**In `orc doctor`**, a new read-only finding:
|
|
380
|
+
|
|
381
|
+
```
|
|
382
|
+
orc doctor
|
|
383
|
+
|
|
384
|
+
✓ install manifest current
|
|
385
|
+
✓ settings wiring present
|
|
386
|
+
⚠ AGENTS.md stale — 2 sources moved since e9dad01
|
|
387
|
+
fix: orc export
|
|
388
|
+
panel: Maintenance
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
That last line matters: `orc ui` routes a caution to the panel that can clear
|
|
392
|
+
it, keyed on the finding id. So this shows up as a button in the web panel
|
|
393
|
+
automatically.
|
|
394
|
+
|
|
395
|
+
---
|
|
396
|
+
|
|
397
|
+
## 7. Why this is good for ORC
|
|
398
|
+
|
|
399
|
+
**It removes the biggest objection to adopting ORC.** A team lead asks: *"if we
|
|
400
|
+
build all this ORC knowledge, are we stuck with ORC forever?"* Today the honest
|
|
401
|
+
answer is "kind of". With export, the answer is "no — here is the door, it is
|
|
402
|
+
one command, and the output is an open standard from the Linux Foundation."
|
|
403
|
+
That answer wins deals.
|
|
404
|
+
|
|
405
|
+
**It makes ORC the producer in a mixed team.** Real teams use several tools.
|
|
406
|
+
Rina uses Claude Code, someone else uses Cursor, CI uses Codex. ORC does the
|
|
407
|
+
expensive thinking once — the wiki scan, the pattern codify, the interview —
|
|
408
|
+
and every other tool eats the result for free. That is a much stronger
|
|
409
|
+
position than fighting for the same session.
|
|
410
|
+
|
|
411
|
+
**Import is a fast on-ramp.** A repo with an existing `AGENTS.md` can start
|
|
412
|
+
using ORC in one command, with a pact ledger already seeded. And on the way in,
|
|
413
|
+
ORC finds the parts that are already wrong — which is a very good first
|
|
414
|
+
impression.
|
|
415
|
+
|
|
416
|
+
**It is cheap to build.** Almost all of it is `bin/cli.js`. No new agent. No
|
|
417
|
+
new gate. No new run state. The `--check` behaviour copies `orc wiki
|
|
418
|
+
sync --check` exactly. This is a small release with a big story.
|
|
419
|
+
|
|
420
|
+
**It proves the derived-artifact rule again.** ORC already refuses to let a
|
|
421
|
+
model hand-write registration (`orc wiki sync`) or the orientation doc. The
|
|
422
|
+
export is the same idea pointed outward. One more place where ORC's output
|
|
423
|
+
cannot quietly go wrong.
|