@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,480 @@
|
|
|
1
|
+
# Mock run — `/orc-handoff`
|
|
2
|
+
|
|
3
|
+
> The lane for people who do not read code.
|
|
4
|
+
|
|
5
|
+
This whole lane is written in **very easy English**, because the people who use
|
|
6
|
+
it may not be native English readers. Same rule as `/orc-quick`.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1. What it does
|
|
11
|
+
|
|
12
|
+
Budi is a product manager. He wants to change one sentence on the checkout
|
|
13
|
+
page. It takes a developer 90 seconds. But Budi has to ask, wait, and it takes
|
|
14
|
+
three days.
|
|
15
|
+
|
|
16
|
+
There are 128 skills in the world made for product managers and designers.
|
|
17
|
+
Every single one of them writes a **document**. Not one lets Budi change the
|
|
18
|
+
sentence.
|
|
19
|
+
|
|
20
|
+
`/orc-handoff` does two things:
|
|
21
|
+
|
|
22
|
+
- **MAP** — makes a list of things you can safely change yourself.
|
|
23
|
+
- **DO** — changes one of them for you, then checks it, then shows you how to
|
|
24
|
+
undo it.
|
|
25
|
+
|
|
26
|
+
### The idea nobody else had
|
|
27
|
+
|
|
28
|
+
Most tools decide "is this safe?" by looking at the **file type**. A `.json`
|
|
29
|
+
file is called safe. A `.ts` file is called not safe.
|
|
30
|
+
|
|
31
|
+
That is wrong.
|
|
32
|
+
|
|
33
|
+
ORC decides by asking: **is there a cheap check that will catch my mistake?**
|
|
34
|
+
|
|
35
|
+
| Grade | Meaning |
|
|
36
|
+
|---|---|
|
|
37
|
+
| 🟢 **GREEN** | Change it. If you make a mistake, a check will catch it right away. |
|
|
38
|
+
| 🟡 **AMBER** | Change it, but the check is done by a human. ORC tells you what to look at. |
|
|
39
|
+
| 🔴 **RED** | It looks like text, but it is not. ORC will not change it. |
|
|
40
|
+
|
|
41
|
+
So `config/app.yaml` is **GREEN** because it has a schema file next to it.
|
|
42
|
+
And `config/flags.yaml` is **AMBER** because it does not. Same file type.
|
|
43
|
+
Different grade. The check is what matters.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 2. The run — MAP mode
|
|
48
|
+
|
|
49
|
+
Budi opens the project for the first time.
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
> /orc-handoff
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
ORC · handoff
|
|
57
|
+
|
|
58
|
+
Hello. I will look at this project and find the things you can change by
|
|
59
|
+
yourself, with no developer.
|
|
60
|
+
|
|
61
|
+
This takes about 40 seconds. I will not change anything.
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
ORC · handoff · your list
|
|
66
|
+
|
|
67
|
+
I found 6 kinds of things you can change. Here they are.
|
|
68
|
+
|
|
69
|
+
🟢 GREEN — safe. A check will catch your mistake.
|
|
70
|
+
|
|
71
|
+
1 The text on the screen (English)
|
|
72
|
+
where : web/locales/en.json
|
|
73
|
+
what : 412 sentences and words
|
|
74
|
+
check : a program checks that English and Indonesian have the same keys
|
|
75
|
+
undo : git checkout web/locales/en.json
|
|
76
|
+
|
|
77
|
+
2 The text on the screen (Indonesian)
|
|
78
|
+
where : web/locales/id.json
|
|
79
|
+
what : 412 sentences and words
|
|
80
|
+
check : same as above
|
|
81
|
+
undo : git checkout web/locales/id.json
|
|
82
|
+
|
|
83
|
+
3 App settings
|
|
84
|
+
where : config/app.yaml
|
|
85
|
+
what : 23 settings
|
|
86
|
+
check : config/app.schema.json says what is allowed. A wrong value is
|
|
87
|
+
rejected before the app starts.
|
|
88
|
+
undo : git checkout config/app.yaml
|
|
89
|
+
|
|
90
|
+
4 Help pages
|
|
91
|
+
where : docs/*.md
|
|
92
|
+
what : 14 pages
|
|
93
|
+
check : a link checker runs on every push
|
|
94
|
+
undo : git checkout docs/
|
|
95
|
+
|
|
96
|
+
🟡 AMBER — you can change it, but a person must look.
|
|
97
|
+
|
|
98
|
+
5 Feature switches (on / off)
|
|
99
|
+
where : config/flags.yaml
|
|
100
|
+
what : 9 switches
|
|
101
|
+
why amber : there is no schema file. If you type a wrong name, nothing
|
|
102
|
+
will tell you. The switch just quietly does nothing.
|
|
103
|
+
check : after the change, open the app and look at the feature yourself
|
|
104
|
+
undo : git checkout config/flags.yaml
|
|
105
|
+
|
|
106
|
+
🔴 RED — looks like text. It is not. I will not change these.
|
|
107
|
+
|
|
108
|
+
6 Email templates
|
|
109
|
+
where : api/emails/*.tsx
|
|
110
|
+
why red : these look like text but they are code. They have logic inside,
|
|
111
|
+
like "if the order is late, show this line". Changing one word
|
|
112
|
+
in the wrong place stops all emails from sending.
|
|
113
|
+
who to ask : Rina
|
|
114
|
+
|
|
115
|
+
Also RED: web/components/*.tsx — the text is mixed with code here.
|
|
116
|
+
The GREEN way to change that text is item 1 and 2 above.
|
|
117
|
+
|
|
118
|
+
I wrote this list to: orc-handoff/surfaces.md
|
|
119
|
+
|
|
120
|
+
Now tell me what you want to change. Use normal words.
|
|
121
|
+
For example: "change the empty cart message".
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## 3. The run — DO mode
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
> the message when the cart is empty is too cold. make it friendlier.
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```
|
|
133
|
+
ORC · handoff · find
|
|
134
|
+
|
|
135
|
+
I found it.
|
|
136
|
+
|
|
137
|
+
Where : web/locales/en.json → key: cart.empty.title
|
|
138
|
+
Grade : 🟢 GREEN
|
|
139
|
+
Now it says:
|
|
140
|
+
"No items."
|
|
141
|
+
|
|
142
|
+
There is also an Indonesian version:
|
|
143
|
+
web/locales/id.json → cart.empty.title
|
|
144
|
+
"Tidak ada barang."
|
|
145
|
+
|
|
146
|
+
If you change one, you should change both. I will remind you.
|
|
147
|
+
|
|
148
|
+
What should the new English text be?
|
|
149
|
+
Or tell me the feeling you want and I will write 3 options.
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
```
|
|
153
|
+
> give me 3 options
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
ORC · handoff · options
|
|
158
|
+
|
|
159
|
+
1 "Your cart is empty"
|
|
160
|
+
Simple. Neutral. Safe.
|
|
161
|
+
|
|
162
|
+
2 "Nothing here yet — let's find something you like"
|
|
163
|
+
Friendly. Longer. Might be too long on a small phone screen.
|
|
164
|
+
|
|
165
|
+
3 "Your cart is waiting"
|
|
166
|
+
Warm and short. A little vague.
|
|
167
|
+
|
|
168
|
+
4 Something else — write it yourself
|
|
169
|
+
|
|
170
|
+
I do not pick for you. You know your customers.
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
```
|
|
174
|
+
> 1
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
ORC · handoff · confirm
|
|
179
|
+
|
|
180
|
+
Before I change anything, read this.
|
|
181
|
+
|
|
182
|
+
File : web/locales/en.json
|
|
183
|
+
Key : cart.empty.title
|
|
184
|
+
Old text : "No items."
|
|
185
|
+
New text : "Your cart is empty"
|
|
186
|
+
|
|
187
|
+
The check I will run after : npm run i18n:check
|
|
188
|
+
How to undo this, any time : git checkout web/locales/en.json
|
|
189
|
+
|
|
190
|
+
I will NOT commit. I will NOT push. You decide that later.
|
|
191
|
+
|
|
192
|
+
Type yes to continue. Type no to stop.
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
```
|
|
196
|
+
> yes
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
```
|
|
200
|
+
ORC · handoff · done
|
|
201
|
+
|
|
202
|
+
✓ Changed web/locales/en.json
|
|
203
|
+
✓ Ran the check: npm run i18n:check
|
|
204
|
+
Result: passed. English and Indonesian still match.
|
|
205
|
+
|
|
206
|
+
One thing is left.
|
|
207
|
+
The Indonesian text still says "Tidak ada barang."
|
|
208
|
+
Do you want to change it too?
|
|
209
|
+
|
|
210
|
+
1 Yes — I will write it and you confirm
|
|
211
|
+
2 No — leave it for now
|
|
212
|
+
3 Ask Rina to do it
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
```
|
|
216
|
+
> 1
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
```
|
|
220
|
+
ORC · handoff · Indonesian
|
|
221
|
+
|
|
222
|
+
Suggested : "Keranjang Anda kosong"
|
|
223
|
+
This means "Your cart is empty" in a polite form.
|
|
224
|
+
|
|
225
|
+
I am not a translator and I am not sure about your tone. Please read it.
|
|
226
|
+
|
|
227
|
+
Type yes to use it, or write your own.
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
```
|
|
231
|
+
> yes
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
```
|
|
235
|
+
ORC · handoff · finished
|
|
236
|
+
|
|
237
|
+
✓ web/locales/en.json cart.empty.title
|
|
238
|
+
✓ web/locales/id.json cart.empty.title
|
|
239
|
+
✓ npm run i18n:check passed
|
|
240
|
+
|
|
241
|
+
Saved to your log: orc-handoff/empty-cart/handoff-log.md (entry #1)
|
|
242
|
+
|
|
243
|
+
Nothing is committed. Nothing is pushed.
|
|
244
|
+
When you are happy, run this yourself, or ask Rina:
|
|
245
|
+
|
|
246
|
+
git add web/locales/en.json web/locales/id.json
|
|
247
|
+
git commit -m "copy: friendlier empty cart message"
|
|
248
|
+
|
|
249
|
+
To undo everything from this session:
|
|
250
|
+
|
|
251
|
+
git checkout web/locales/en.json web/locales/id.json
|
|
252
|
+
|
|
253
|
+
Trace: run-handoff-empty-cart-100826-102215.txt
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### And when Budi asks for something RED
|
|
257
|
+
|
|
258
|
+
```
|
|
259
|
+
> change the "your order is late" email to say sorry twice
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
```
|
|
263
|
+
ORC · handoff · stop
|
|
264
|
+
|
|
265
|
+
Where : api/emails/OrderLate.tsx
|
|
266
|
+
Grade : 🔴 RED
|
|
267
|
+
|
|
268
|
+
I will not change this one.
|
|
269
|
+
|
|
270
|
+
Why: this file looks like an email, but it is a program. The sentence you
|
|
271
|
+
want to change sits inside a rule that says
|
|
272
|
+
"only show this line if the order is more than 2 days late".
|
|
273
|
+
If I move the words, the rule can break, and then no order emails go out
|
|
274
|
+
at all.
|
|
275
|
+
|
|
276
|
+
What you can do instead:
|
|
277
|
+
|
|
278
|
+
1 Ask Rina. Show her this: api/emails/OrderLate.tsx line 34
|
|
279
|
+
2 Use /orc-quick — it can do this with a developer watching
|
|
280
|
+
3 Write the exact new email text here and I will save it as a note
|
|
281
|
+
for Rina, so she only has to paste it
|
|
282
|
+
|
|
283
|
+
I am not saying no forever. I am saying not by me, not alone.
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
**Note:** this is an **offer**, not a forced change of lane. Same rule as
|
|
287
|
+
`/orc-quick`. Budi chooses.
|
|
288
|
+
|
|
289
|
+
---
|
|
290
|
+
|
|
291
|
+
## 4. The files it made
|
|
292
|
+
|
|
293
|
+
### `orc-handoff/surfaces.md` — the map
|
|
294
|
+
|
|
295
|
+
````markdown
|
|
296
|
+
# What you can change yourself — shopcart
|
|
297
|
+
|
|
298
|
+
Made by `/orc-handoff` on 10-08-2026 at commit `c273793`.
|
|
299
|
+
This list gets old. Run `/orc-handoff` again after a big change.
|
|
300
|
+
|
|
301
|
+
## 🟢 GREEN — 4 places
|
|
302
|
+
|
|
303
|
+
| What | Where | Check that protects you |
|
|
304
|
+
|---|---|---|
|
|
305
|
+
| Screen text (English) | `web/locales/en.json` | `npm run i18n:check` |
|
|
306
|
+
| Screen text (Indonesian) | `web/locales/id.json` | `npm run i18n:check` |
|
|
307
|
+
| App settings | `config/app.yaml` | `config/app.schema.json` |
|
|
308
|
+
| Help pages | `docs/*.md` | link checker in CI |
|
|
309
|
+
|
|
310
|
+
## 🟡 AMBER — 1 place
|
|
311
|
+
|
|
312
|
+
| What | Where | Why amber | Check by hand |
|
|
313
|
+
|---|---|---|---|
|
|
314
|
+
| Feature switches | `config/flags.yaml` | no schema file | open the app and look |
|
|
315
|
+
|
|
316
|
+
**To make this GREEN:** ask a developer to add `config/flags.schema.json`.
|
|
317
|
+
It is a small job. Then ORC will move it to GREEN automatically.
|
|
318
|
+
|
|
319
|
+
## 🔴 RED — 2 places
|
|
320
|
+
|
|
321
|
+
| What | Where | Why not safe |
|
|
322
|
+
|---|---|---|
|
|
323
|
+
| Email templates | `api/emails/*.tsx` | text is mixed with rules |
|
|
324
|
+
| Screen components | `web/components/*.tsx` | text is mixed with code — use the locale files instead |
|
|
325
|
+
````
|
|
326
|
+
|
|
327
|
+
### `orc-handoff/empty-cart/handoff-log.md` — the diary
|
|
328
|
+
|
|
329
|
+
````markdown
|
|
330
|
+
# Handoff log — empty-cart
|
|
331
|
+
|
|
332
|
+
One file per thread. New entries go at the bottom.
|
|
333
|
+
|
|
334
|
+
<!-- orc-handoff:toc -->
|
|
335
|
+
| # | Date | What | Grade | Check | Result |
|
|
336
|
+
|---|---|---|---|---|---|
|
|
337
|
+
| 1 | 10-08-2026 | Empty cart message, EN + ID | 🟢 GREEN | `npm run i18n:check` | passed |
|
|
338
|
+
<!-- /orc-handoff:toc -->
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Entry 1 — 10-08-2026 10:22
|
|
343
|
+
|
|
344
|
+
**You asked:** the message when the cart is empty is too cold, make it
|
|
345
|
+
friendlier.
|
|
346
|
+
|
|
347
|
+
**Changed:**
|
|
348
|
+
- `web/locales/en.json` → `cart.empty.title`
|
|
349
|
+
- from `"No items."`
|
|
350
|
+
- to `"Your cart is empty"`
|
|
351
|
+
- `web/locales/id.json` → `cart.empty.title`
|
|
352
|
+
- from `"Tidak ada barang."`
|
|
353
|
+
- to `"Keranjang Anda kosong"`
|
|
354
|
+
|
|
355
|
+
**Check:** `npm run i18n:check` — passed.
|
|
356
|
+
|
|
357
|
+
**Undo:** `git checkout web/locales/en.json web/locales/id.json`
|
|
358
|
+
|
|
359
|
+
**Committed:** no. You do this part.
|
|
360
|
+
````
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## 5. The CLI part
|
|
365
|
+
|
|
366
|
+
```
|
|
367
|
+
$ orc handoff surfaces
|
|
368
|
+
```
|
|
369
|
+
|
|
370
|
+
```
|
|
371
|
+
HANDOFF · shopcart
|
|
372
|
+
|
|
373
|
+
GREEN 4 web/locales/en.json · web/locales/id.json
|
|
374
|
+
config/app.yaml · docs/
|
|
375
|
+
|
|
376
|
+
AMBER 1 config/flags.yaml (no schema — add one to make it GREEN)
|
|
377
|
+
|
|
378
|
+
RED 2 api/emails/ · web/components/
|
|
379
|
+
|
|
380
|
+
map anchored at c273793 · you are at c273793 · map is current
|
|
381
|
+
```
|
|
382
|
+
|
|
383
|
+
Exit code `0`. Same idea as everywhere else:
|
|
384
|
+
`0` map is fresh · `1` map is stale · `3` no map yet.
|
|
385
|
+
|
|
386
|
+
```
|
|
387
|
+
$ orc handoff surfaces --json
|
|
388
|
+
```
|
|
389
|
+
|
|
390
|
+
```json
|
|
391
|
+
{
|
|
392
|
+
"map_present": true,
|
|
393
|
+
"generated_commit": "c273793",
|
|
394
|
+
"head_commit": "c273793",
|
|
395
|
+
"stale": false,
|
|
396
|
+
"surfaces": [
|
|
397
|
+
{
|
|
398
|
+
"id": "i18n-en",
|
|
399
|
+
"label": "Screen text (English)",
|
|
400
|
+
"path": "web/locales/en.json",
|
|
401
|
+
"grade": "green",
|
|
402
|
+
"check": { "kind": "command", "ref": "npm run i18n:check" },
|
|
403
|
+
"undo": "git checkout web/locales/en.json",
|
|
404
|
+
"items": 412
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "flags",
|
|
408
|
+
"label": "Feature switches",
|
|
409
|
+
"path": "config/flags.yaml",
|
|
410
|
+
"grade": "amber",
|
|
411
|
+
"why": "no schema file",
|
|
412
|
+
"check": { "kind": "manual", "ref": "open the app and look at the feature" },
|
|
413
|
+
"upgrade_to_green": "add config/flags.schema.json"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "emails",
|
|
417
|
+
"label": "Email templates",
|
|
418
|
+
"path": "api/emails/*.tsx",
|
|
419
|
+
"grade": "red",
|
|
420
|
+
"why": "text is mixed with rules",
|
|
421
|
+
"ask": "a developer"
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
"counts": { "green": 4, "amber": 1, "red": 2 },
|
|
425
|
+
"exit": 0
|
|
426
|
+
}
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
Because it speaks `--json`, `orc ui` can draw this as a panel with no extra
|
|
430
|
+
work. A PM could do the whole thing in the browser, with no terminal.
|
|
431
|
+
|
|
432
|
+
---
|
|
433
|
+
|
|
434
|
+
## 6. Inside a normal `/orc` run
|
|
435
|
+
|
|
436
|
+
At **ship**, one extra line. This is the growth engine.
|
|
437
|
+
|
|
438
|
+
```
|
|
439
|
+
Ship
|
|
440
|
+
|
|
441
|
+
Shipped 11 tasks. 4 files changed.
|
|
442
|
+
|
|
443
|
+
Note: 2 of these were GREEN surfaces.
|
|
444
|
+
web/locales/en.json
|
|
445
|
+
web/locales/id.json
|
|
446
|
+
|
|
447
|
+
Next time, a product manager can change those with /orc-handoff.
|
|
448
|
+
No developer needed, no run needed.
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
That single sentence teaches the team that the lane exists, at the exact
|
|
452
|
+
moment it is useful.
|
|
453
|
+
|
|
454
|
+
`/orc-boundary` also feeds it. If an area is RED in handoff, it is at least
|
|
455
|
+
ESCALATE in boundary. Two lanes, one truth.
|
|
456
|
+
|
|
457
|
+
---
|
|
458
|
+
|
|
459
|
+
## 7. Why this is good for ORC
|
|
460
|
+
|
|
461
|
+
**It doubles who ORC is for.** Today every ORC lane needs someone who reads
|
|
462
|
+
code. This one does not. A PM, a designer, a support person, a content writer —
|
|
463
|
+
all of them can use ORC on day one.
|
|
464
|
+
|
|
465
|
+
**It is the only one of its kind.** 128 skills exist for designers and PMs.
|
|
466
|
+
They all make documents. None of them touch the repository. ORC would be first
|
|
467
|
+
to actually let a non-developer change something and be safe.
|
|
468
|
+
|
|
469
|
+
**The safety story is real, not marketing.** The grade comes from whether a
|
|
470
|
+
check exists. That is a fact on disk, not an opinion. And AMBER has a clear
|
|
471
|
+
upgrade path — "add a schema file and this becomes GREEN" — so the lane makes
|
|
472
|
+
the repo better over time, not just safer today.
|
|
473
|
+
|
|
474
|
+
**It is cheap.** One read-only scan to build the map. After that, a change is
|
|
475
|
+
one small edit and one command. No planner, no waves, no scoring. This is the
|
|
476
|
+
lowest-cost lane ORC would have.
|
|
477
|
+
|
|
478
|
+
**It grows the pact ledger too.** A GREEN surface is, in a way, a promise:
|
|
479
|
+
"this file can be changed without breaking the build." When someone downgrades
|
|
480
|
+
it, ORC notices.
|