@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,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"crosslink.title": "Crosslink",
|
|
3
|
+
"crosslink.sub": "Cross-repo wiki references. Advisory, never blocking — it reads foreign WIKI only, never foreign source.",
|
|
4
|
+
"crosslink.empty": "No cross-repo links yet.",
|
|
5
|
+
"crosslink.emptyHint": "Link a sibling repo below, or run `orc crosslink` in a terminal for the guided version.",
|
|
6
|
+
"crosslink.tab.design": "Design",
|
|
7
|
+
"crosslink.tab.settings": "Settings",
|
|
8
|
+
"crosslink.design.title": "Boundary",
|
|
9
|
+
"crosslink.design.note": "This repo in the middle, every linked repo around it. Each line runs in the direction the dependency does. Hover a repo to pick out its edges; click one to open its settings.",
|
|
10
|
+
"crosslink.design.thisRepo": "this repo",
|
|
11
|
+
"crosslink.design.empty": "No crosslink data to draw yet.",
|
|
12
|
+
"crosslink.design.emptyHint": "Link a sibling repo on the Settings tab and it appears here.",
|
|
13
|
+
"crosslink.design.emptyCta": "Open Settings",
|
|
14
|
+
"crosslink.repos": "{repos} repo · {edges} edge",
|
|
15
|
+
"crosslink.reposPlural": "{repos} repos · {edges} edges",
|
|
16
|
+
"crosslink.graph": "Graph",
|
|
17
|
+
"crosslink.self": "self",
|
|
18
|
+
"crosslink.config": "config",
|
|
19
|
+
"crosslink.needs": "needs baseline",
|
|
20
|
+
"crosslink.needsNone": "not built yet — run /orc-wiki here",
|
|
21
|
+
"crosslink.edges": "Edges",
|
|
22
|
+
"crosslink.weCall": "we call them",
|
|
23
|
+
"crosslink.theyCall": "they call us",
|
|
24
|
+
"crosslink.noEdge": "no edge",
|
|
25
|
+
"crosslink.state.missing": "path not found — saved as a PENDING edge; it resolves when the path appears",
|
|
26
|
+
"crosslink.state.noWiki": "no wiki there — /orc-wiki in that repo (edge saved, inert until then)",
|
|
27
|
+
"crosslink.state.unregistered": "wiki found but UNREGISTERED — `orc wiki sync` in that repo",
|
|
28
|
+
"crosslink.state.corrupt": "their wiki-meta.json is unreadable — `orc wiki sync` there",
|
|
29
|
+
"crosslink.state.inbound": "inbound only — we resolve nothing from them, so their tags and freshness do not matter here",
|
|
30
|
+
"crosslink.peerNote": "last scan {scan} · {tags} crosslink tags · peer defaults 10/30",
|
|
31
|
+
"crosslink.noTags": "Tags are published by the repo being called: run /orc-wiki crosslink IN {path}.",
|
|
32
|
+
"crosslink.add.title": "Link a repo",
|
|
33
|
+
"crosslink.add.note": "The same four answers `orc crosslink` asks for. The path is the repo ROOT, and it is stored relative to this one (e.g. ../service-z).",
|
|
34
|
+
"crosslink.add.name": "Name (slug)",
|
|
35
|
+
"crosslink.add.nameHint": "a-z, 0-9, dashes",
|
|
36
|
+
"crosslink.add.path": "Repo path",
|
|
37
|
+
"crosslink.add.pathHint": "type it, or browse for the folder",
|
|
38
|
+
"crosslink.add.browse": "Browse…",
|
|
39
|
+
"crosslink.add.kinds": "Kinds",
|
|
40
|
+
"crosslink.add.kindsHint": "what crosses the boundary — pick any",
|
|
41
|
+
"crosslink.add.custom": "Custom kinds",
|
|
42
|
+
"crosslink.add.customHint": "or type your own, comma-separated",
|
|
43
|
+
"crosslink.add.direction": "Direction",
|
|
44
|
+
"crosslink.add.directionHint": "which repo consumes which",
|
|
45
|
+
"crosslink.add.via": "Edge carried by",
|
|
46
|
+
"crosslink.add.viaHint": "one of the kinds above",
|
|
47
|
+
"crosslink.add.dirCalls": "{self} calls them",
|
|
48
|
+
"crosslink.add.dirCalledBy": "they call {self}",
|
|
49
|
+
"crosslink.add.save": "Link repo",
|
|
50
|
+
"crosslink.add.saving": "Linking…",
|
|
51
|
+
"crosslink.add.required": "Name, path and at least one kind are required.",
|
|
52
|
+
"crosslink.add.refused": "The CLI refused that link.",
|
|
53
|
+
"crosslink.add.linked": "Linked {name}",
|
|
54
|
+
"crosslink.remove.title": "Remove linked repo",
|
|
55
|
+
"crosslink.remove.body": "Remove the linked repo \"{name}\" and every edge that touches it?",
|
|
56
|
+
"crosslink.remove.note": "This only edits this repo's crosslink config. The other repo is never touched.",
|
|
57
|
+
"picker.title": "Pick a repo folder",
|
|
58
|
+
"picker.note": "Folders only. Nothing is read inside them — this lists directory names so you do not have to type a path by hand.",
|
|
59
|
+
"picker.up": "Parent folder",
|
|
60
|
+
"picker.home": "Home",
|
|
61
|
+
"picker.project": "This project",
|
|
62
|
+
"picker.empty": "No sub-folders here.",
|
|
63
|
+
"picker.unreadable": "Could not read that folder.",
|
|
64
|
+
"picker.isRepo": "git repo",
|
|
65
|
+
"picker.hasWiki": "has wiki",
|
|
66
|
+
"picker.choose": "Use this folder",
|
|
67
|
+
"picker.relative": "Stored as: {rel}",
|
|
68
|
+
"picker.sameRepo": "That is this repo — pick a different folder."
|
|
69
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
{
|
|
2
|
+
"docs.title": "Docs",
|
|
3
|
+
"docs.sub": "Long documents written in parts, so nothing ever has to hold the whole thing at once.",
|
|
4
|
+
"docs.summary": "Documents",
|
|
5
|
+
"docs.contract": "ORC never reads the document body. It works from a section map, and every writer owns one part file.",
|
|
6
|
+
"docs.none": "No documents yet.",
|
|
7
|
+
"docs.noneHint": "A document starts with what you want it to say. ORC asks, and never invents it.",
|
|
8
|
+
"docs.cmdWhy": "Writing or checking a section costs model tokens, so this is a command to copy, not a button.",
|
|
9
|
+
"docs.paidWhy": "Continuing a document runs writers and checkers, which costs model tokens.",
|
|
10
|
+
"docs.docN": "{n} document",
|
|
11
|
+
"docs.docNPlural": "{n} documents",
|
|
12
|
+
"docs.editedN": "{n} section you edited",
|
|
13
|
+
"docs.editedNPlural": "{n} sections you edited",
|
|
14
|
+
"docs.editedChip": "you edited it",
|
|
15
|
+
"docs.editedNote": "You edited these since last time: {names}. They are never rewritten unless you name them.",
|
|
16
|
+
"docs.openNote": "Still waiting on you: {names}.",
|
|
17
|
+
"docs.completeNote": "Every required section is written and the check is clean. Nothing here is staged.",
|
|
18
|
+
"docs.challengeNote": "Want it graded before you send it? In a NEW session, because a session that wrote it cannot honestly grade it.",
|
|
19
|
+
"docs.ribbon": "The whole document",
|
|
20
|
+
"docs.ribbonAria": "Ribbon of {n} sections, each sized by its line count",
|
|
21
|
+
"docs.reLint": "Re-check",
|
|
22
|
+
"docs.assemble": "Assemble",
|
|
23
|
+
"docs.assembleTitle": "Assemble the parts into the document",
|
|
24
|
+
"docs.assembleBody": "This concatenates the part files already on disk, in the order the outline fixed. It writes nothing new and costs no model tokens.",
|
|
25
|
+
"docs.assembleNote": "It refuses while a required part is missing, and names which ones.",
|
|
26
|
+
"docs.assembleGo": "Assemble",
|
|
27
|
+
"docs.assembleOk": "Assembled from the parts on disk.",
|
|
28
|
+
"docs.health": "Health",
|
|
29
|
+
"docs.errorN": "{n} error",
|
|
30
|
+
"docs.errorNPlural": "{n} errors",
|
|
31
|
+
"docs.warnN": "{n} warning",
|
|
32
|
+
"docs.warnNPlural": "{n} warnings",
|
|
33
|
+
"docs.read.avg": "Average words per sentence",
|
|
34
|
+
"docs.read.longest": "Longest sentence",
|
|
35
|
+
"docs.read.longWords": "Long words",
|
|
36
|
+
"docs.read.passive": "Passive constructions",
|
|
37
|
+
"docs.read.acronyms": "Acronyms used before they were expanded",
|
|
38
|
+
"docs.sections": "Sections",
|
|
39
|
+
"docs.sectionsNote": "Line ranges are worked out fresh every time this loads. Nothing here is stored, so nothing here can be out of date.",
|
|
40
|
+
"docs.field.purpose": "What it is for",
|
|
41
|
+
"docs.field.required": "Required",
|
|
42
|
+
"docs.field.hash": "Fingerprint",
|
|
43
|
+
"docs.field.cycle": "Last written in cycle",
|
|
44
|
+
"docs.field.renamedFrom": "Renamed from",
|
|
45
|
+
"docs.required": "yes",
|
|
46
|
+
"docs.optional": "optional",
|
|
47
|
+
"docs.reveal": "Show this section",
|
|
48
|
+
"docs.revealFail": "That section could not be read.",
|
|
49
|
+
"docs.revealNote": "One section, on request. This panel never loads the whole document.",
|
|
50
|
+
"docs.waves": "How it would be written",
|
|
51
|
+
"docs.wavesNote": "A preview of the plan, not a live view. This panel cannot see a running session, and it will not pretend to.",
|
|
52
|
+
"docs.waveN": "Wave {n}",
|
|
53
|
+
"docs.agentN": "{n} agent",
|
|
54
|
+
"docs.agentNPlural": "{n} agents",
|
|
55
|
+
"docs.oversized": "Over the per-agent budget: {ids}. Split it into smaller sections instead of handing a writer more than it can hold.",
|
|
56
|
+
"docs.oversizedChip": "over budget",
|
|
57
|
+
"docs.clamped": "doc_max_parallel {from} was clamped to the hard cap of {to}. More writers at once is more chances for the outline to drift.",
|
|
58
|
+
"docs.cycles": "History",
|
|
59
|
+
"docs.cycleN": "cycle {n}",
|
|
60
|
+
"docs.meta.started": "Started",
|
|
61
|
+
"docs.meta.touched": "Last touched",
|
|
62
|
+
"docs.meta.sessions": "Sessions",
|
|
63
|
+
"docs.meta.cycle": "Cycle",
|
|
64
|
+
"docs.meta.type": "Type",
|
|
65
|
+
"docs.meta.target": "Target",
|
|
66
|
+
"docs.meta.language": "Language",
|
|
67
|
+
"docs.meta.length": "Length",
|
|
68
|
+
"docs.meta.template": "Template",
|
|
69
|
+
"docs.brief": "The brief you gave",
|
|
70
|
+
"docs.briefFrozen": "Frozen {when}. It is read every time and never asked again — that is what stops a resumed session writing a different document.",
|
|
71
|
+
"docs.briefNone": "No frozen brief",
|
|
72
|
+
"docs.briefNoneHint": "This document was started without one. Open it with /orc-doc and answer the first question.",
|
|
73
|
+
"docs.briefPurpose": "Purpose",
|
|
74
|
+
"docs.briefTemplate": "Template",
|
|
75
|
+
"docs.briefDecisions": "Decisions taken since",
|
|
76
|
+
"docs.sources": "Reference files",
|
|
77
|
+
"docs.sourcesNone": "None — you were asked and said none.",
|
|
78
|
+
"docs.sourcesNote": "A file is stale only when THAT file moved, never because the repository did.",
|
|
79
|
+
"docs.journal": "What you asked for, in order",
|
|
80
|
+
"docs.journalNote": "{n} entries, {recorded} in your own words. Oldest first.",
|
|
81
|
+
"docs.journalGap": "no request was recorded for it",
|
|
82
|
+
"docs.ship": "Delivery",
|
|
83
|
+
"docs.shipGo": "Mark as shipped",
|
|
84
|
+
"docs.shipTitle": "Mark as shipped",
|
|
85
|
+
"docs.shipBody": "Shipping is a decision, so it is recorded rather than guessed. Where did this document actually go?",
|
|
86
|
+
"docs.shipWhere": "Where it went",
|
|
87
|
+
"docs.shipWherePh": "Notion › Platform › Ingest PRD",
|
|
88
|
+
"docs.shipNote": "Note (optional)",
|
|
89
|
+
"docs.shipNotePh": "handed to the ingest squad",
|
|
90
|
+
"docs.shipModalNote": "The section hashes are recorded too, so a later edit shows up as shipped-drifted with the sections named.",
|
|
91
|
+
"docs.shipNeedWhere": "A destination is required. Shipped with nowhere to point at is not a fact.",
|
|
92
|
+
"docs.shipOk": "Recorded.",
|
|
93
|
+
"docs.shipWhen": "Shipped",
|
|
94
|
+
"docs.shipWhere2": "Where",
|
|
95
|
+
"docs.shipNote2": "Note",
|
|
96
|
+
"docs.shipForced": "Shipped incomplete on purpose: {why}",
|
|
97
|
+
"docs.shipDrifted": "Changed since it shipped: {names}",
|
|
98
|
+
"docs.shipBlocked": "Not ready to ship: {why}",
|
|
99
|
+
"docs.shipBlockedLint": "the free check still reports errors",
|
|
100
|
+
"docs.shipWhy": "Nothing here infers a delivery. Until you record one, a finished document and a delivered one look the same.",
|
|
101
|
+
"docs.reship": "Re-ship",
|
|
102
|
+
"docs.unship": "Un-ship",
|
|
103
|
+
"docs.unshipTitle": "Un-ship this document",
|
|
104
|
+
"docs.unshipBody": "The previous record is kept in ship_history — nothing is erased. Why is it coming back?",
|
|
105
|
+
"docs.shipReason": "Reason",
|
|
106
|
+
"docs.shipReasonPh": "the squad asked for one more section",
|
|
107
|
+
"docs.unshipNote": "The old record stays on file, so the history still reads correctly later.",
|
|
108
|
+
"docs.unshipNeedReason": "A reason is required. An un-shipped document with no reason is a state nobody can explain.",
|
|
109
|
+
"docs.audit": "Drift",
|
|
110
|
+
"docs.auditClean": "Nothing drifted.",
|
|
111
|
+
"docs.auditGo": "Open",
|
|
112
|
+
"docs.nextBlocked": "Waiting on you: {why}",
|
|
113
|
+
"docs.nextFree": "Free — this costs no model tokens.",
|
|
114
|
+
"docs.compile": "Compile",
|
|
115
|
+
"docs.compileTitle": "Rebuild the document from its section files",
|
|
116
|
+
"docs.compileBody": "This concatenates the files under sections/, in the order the outline fixed. sections/ is the source of truth and document.md is the build artifact, so this writes nothing new and costs no model tokens.",
|
|
117
|
+
"docs.compilePartialBody": "{n} required section(s) have no source file yet. A partial compile writes exactly what exists and names the rest OUTSIDE the document — nothing is ever stubbed into the deliverable.",
|
|
118
|
+
"docs.compileNote": "It refuses while a required section is missing, and names which ones. Use partial to see what exists so far.",
|
|
119
|
+
"docs.compileGo": "Compile",
|
|
120
|
+
"docs.compileOk": "Rebuilt from the section files on disk.",
|
|
121
|
+
"docs.parts": "Section files",
|
|
122
|
+
"docs.partsNote": "sections/ is the source of truth. Each file is one section you can open, edit and diff. document.md is rebuilt from them, for free.",
|
|
123
|
+
"docs.partNone": "not written yet",
|
|
124
|
+
"docs.misnumbered": "number does not mirror the outline",
|
|
125
|
+
"docs.subChanged": "changed",
|
|
126
|
+
"docs.waveOf": "wave {k} of {n}",
|
|
127
|
+
"docs.docStale": "document.md is behind sections/: {ids}. Rebuilding it is free.",
|
|
128
|
+
"docs.migrateTitle": "This document is still one file",
|
|
129
|
+
"docs.migrateBody": "It was started before sections/ became the source of truth, so every change still routes through document.md. Migrating splits it into one file per section. document.md is never deleted, and an unparseable one is refused rather than guessed at.",
|
|
130
|
+
"docs.migrateGo": "Migrate",
|
|
131
|
+
"docs.migrateOk": "Migrated. sections/ is the source of truth now.",
|
|
132
|
+
"docs.rules.title": "House rules",
|
|
133
|
+
"docs.rules.unavailable": "The house-rule ledger could not be read.",
|
|
134
|
+
"docs.rules.howto": "Write them straight into the file below. Put each one under the heading you want it read at — P0 first, then P1, then P2 — in as many lines as you like. Every line is handed to the writers word for word.",
|
|
135
|
+
"docs.rules.staged": "the whole file",
|
|
136
|
+
"docs.rules.migrated": "Moved over from the old {from} — that file was left on disk and nothing was deleted. {n} rule(s) that were switched off were not carried over.",
|
|
137
|
+
"docs.rules.refresh": "Refresh",
|
|
138
|
+
"docs.rules.frozenTitle": "House rules frozen into this document",
|
|
139
|
+
"docs.rules.frozenClean": "The project ledger has not moved since this document started.",
|
|
140
|
+
"docs.rules.driftedN": "{n} block moved since this document was frozen",
|
|
141
|
+
"docs.rules.driftedNPlural": "{n} blocks moved since this document was frozen",
|
|
142
|
+
"docs.rules.nowEmpty": "(now empty)",
|
|
143
|
+
"docs.rules.sync": "Re-freeze",
|
|
144
|
+
"docs.rules.syncBody": "Re-freeze this document against the project's house rules as they are today.",
|
|
145
|
+
"docs.rules.syncNever": "Nothing is re-written. It records the change and names the sections that were written before it, so you can decide whether any of them needs redoing.",
|
|
146
|
+
"docs.rules.synced": "Re-frozen.",
|
|
147
|
+
"docs.rules.syncFailed": "That did not go through.",
|
|
148
|
+
"docs.forecast.title": "The run map",
|
|
149
|
+
"docs.forecast.recompute": "Recompute",
|
|
150
|
+
"docs.forecast.none": "No run map yet.",
|
|
151
|
+
"docs.forecast.naiveWhy": "A floor from the public price table, not a forecast from your own history.",
|
|
152
|
+
"docs.forecast.waveN": "{n} wave",
|
|
153
|
+
"docs.forecast.stopN": "{n} stop",
|
|
154
|
+
"docs.forecast.agentN": "{n} agent",
|
|
155
|
+
"docs.forecast.range": "p50 {p50} weighted → p90 {p90} · {usd}",
|
|
156
|
+
"docs.forecast.samples": "write {write} samples · check {check} samples · the bar is {min}",
|
|
157
|
+
"docs.forecast.lowConfidence": "Low confidence: {roles} have too few samples. This total is a FLOOR, not a range.",
|
|
158
|
+
"docs.forecast.naive": "This is a floor from the price table, not a forecast from your history.",
|
|
159
|
+
"docs.forecast.stalePrice": "The price table is dated {as_of} ({days} days old).",
|
|
160
|
+
"docs.cost.title": "What this document cost",
|
|
161
|
+
"docs.cost.none": "No trace for this document yet.",
|
|
162
|
+
"docs.cost.runN": "{n} session",
|
|
163
|
+
"docs.cost.joined": "{joined} of {total} dispatches joined",
|
|
164
|
+
"docs.cost.total": "{weighted} weighted · {raw} raw · {usd}",
|
|
165
|
+
"docs.cost.unattributed": "unattributed: {blocks} blocks could not be joined to a dispatch",
|
|
166
|
+
"docs.forecast.waveNPlural": "{n} waves",
|
|
167
|
+
"docs.forecast.stopNPlural": "{n} stops",
|
|
168
|
+
"docs.forecast.agentNPlural": "{n} agents",
|
|
169
|
+
"docs.cost.runNPlural": "{n} sessions",
|
|
170
|
+
"docs.extra.title": "Which model writes this document",
|
|
171
|
+
"docs.extra.stored": "set for this document",
|
|
172
|
+
"docs.extra.fromConfig": "from the project setting",
|
|
173
|
+
"docs.extra.edges": "band {band} · edges {edges} · both edges agree: {agree}",
|
|
174
|
+
"docs.extra.order": "resolves in this order: {order}"
|
|
175
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"experiment.title": "Experiment",
|
|
3
|
+
"experiment.sub": "Open a Claude session in this repo and pick a lane. The panel hands off — it never runs one.",
|
|
4
|
+
"experiment.start": "Start a session",
|
|
5
|
+
"experiment.startNote": "Opens a terminal in this project and starts `claude`. Nothing about that session comes back to this page — it is yours to drive.",
|
|
6
|
+
"experiment.project": "project",
|
|
7
|
+
"experiment.launch": "Start a new Claude session",
|
|
8
|
+
"experiment.opening": "Opening…",
|
|
9
|
+
"experiment.opened": "Terminal opened in {cwd}",
|
|
10
|
+
"experiment.openFail": "Could not open a terminal",
|
|
11
|
+
"experiment.openFailHint": "Run `claude` in {root} yourself.",
|
|
12
|
+
"experiment.fixtureNote": "Fixture mode — the button is inert on purpose.",
|
|
13
|
+
"experiment.fixtureTitle": "Fixture mode never launches anything real.",
|
|
14
|
+
"experiment.lanes": "Lanes",
|
|
15
|
+
"experiment.lanesCount": "{n} commands",
|
|
16
|
+
"experiment.lanesDesc": "Type one of these into the session once it opens. Copy takes the command; the panel does not run it."
|
|
17
|
+
}
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extra.title": "Extra",
|
|
3
|
+
"extra.sub": "Integrate with other AI model",
|
|
4
|
+
"extra.why": "Why it works like this",
|
|
5
|
+
"extra.tab.setup": "Setup",
|
|
6
|
+
"extra.tab.routing": "Routing",
|
|
7
|
+
"extra.tab.limits": "Limits",
|
|
8
|
+
"extra.tab.spending": "Spending",
|
|
9
|
+
"extra.tab.providers": "Providers",
|
|
10
|
+
"extra.boundary.title": "Before you connect anything, read this",
|
|
11
|
+
"extra.boundary.leaves": "What leaves this machine: the task slice ORC builds — your request, the contents of the files that task names, the tool results the worker asks for, and the code it writes back.",
|
|
12
|
+
"extra.boundary.whom": "Who receives it: the provider you configure below, at the base URL shown on its profile. Nobody else is in the path, and ORC adds no telemetry of its own.",
|
|
13
|
+
"extra.boundary.cannot": "What ORC cannot promise: how long that provider keeps your prompt, whether it trains on it, or where in the world it runs. Those are the provider's terms, not ORC's — the catalog links them, and reading them is your call to make.",
|
|
14
|
+
"extra.boundary.fence": "One engine composes the request body itself, and only that one can hold a worker to the files a task declared or carry a privacy policy. The other two send instructions and trust the tool to obey them. Each profile below says which engine it is on.",
|
|
15
|
+
"extra.boundary.probe": "This panel never talks to a model. Testing a connection runs the same command you would type, and the connection is the CLI's.",
|
|
16
|
+
"extra.strip.profiles": "profiles",
|
|
17
|
+
"extra.strip.verified": "verified",
|
|
18
|
+
"extra.strip.routed": "routed bands",
|
|
19
|
+
"extra.strip.findings": "findings",
|
|
20
|
+
"extra.strip.catalog": "catalog dated",
|
|
21
|
+
"extra.providers.title": "Providers ORC knows how to reach",
|
|
22
|
+
"extra.providers.sub": "This is the shipped catalog of providers ORC can reach, with the date it was published.",
|
|
23
|
+
"extra.providers.subWhy": "It carries base URLs, the variable each provider reads its key from, and the terms to go and read.",
|
|
24
|
+
"extra.providers.noModels": "Model names are not shipped: they change within a quarter, and a stale one is a failure in the middle of a run. Testing a connection reads the live list from the provider.",
|
|
25
|
+
"extra.providers.stale": "This catalog is older than the age ORC trusts. A base URL may have moved — check the provider's own documentation before you believe a failure.",
|
|
26
|
+
"extra.providers.engines": "engines",
|
|
27
|
+
"extra.providers.regions": "regions",
|
|
28
|
+
"extra.providers.docs": "setup guide",
|
|
29
|
+
"extra.providers.terms": "terms",
|
|
30
|
+
"extra.profiles.title": "Your connections",
|
|
31
|
+
"extra.profiles.none": "No connection configured yet.",
|
|
32
|
+
"extra.profiles.noneHint": "Nothing is routed anywhere else until you add one, test it, and map a band to it. Until then every task runs where it runs today.",
|
|
33
|
+
"extra.profiles.addWhy": "Adds a connection. Nothing is sent anywhere and no key is stored by this step.",
|
|
34
|
+
"extra.profiles.pingWhy": "The connection test. It is the gate: nothing routes to a connection that has never answered.",
|
|
35
|
+
"extra.profile.provider": "provider",
|
|
36
|
+
"extra.profile.engine": "engine",
|
|
37
|
+
"extra.profile.base": "base URL",
|
|
38
|
+
"extra.profile.region": "region",
|
|
39
|
+
"extra.profile.credential": "key",
|
|
40
|
+
"extra.profile.credentialEnv": "read from the variable {name}",
|
|
41
|
+
"extra.profile.credentialVault": "stored here, encrypted",
|
|
42
|
+
"extra.profile.present": "found",
|
|
43
|
+
"extra.profile.missing": "not found",
|
|
44
|
+
"extra.profile.verifiedAt": "answered {when} · {how}",
|
|
45
|
+
"extra.profile.latency": "{ms} ms",
|
|
46
|
+
"extra.profile.never": "never tested",
|
|
47
|
+
"extra.profile.modelsLabel": "models",
|
|
48
|
+
"extra.profile.models": "{n} model names cached",
|
|
49
|
+
"extra.profile.modelsNone": "no model names cached yet",
|
|
50
|
+
"extra.profile.fidelity": "measured on first dispatch",
|
|
51
|
+
"extra.profile.privacy": "privacy policy set",
|
|
52
|
+
"extra.vault.stored": "key stored",
|
|
53
|
+
"extra.vault.wiped": "key deleted",
|
|
54
|
+
"extra.vault.none": "nothing stored",
|
|
55
|
+
"extra.vault.attempts": "{used} of {max} wrong attempts used",
|
|
56
|
+
"extra.vault.attemptsNone": "no wrong attempts",
|
|
57
|
+
"extra.vault.wipedWhen": "deleted {when} after too many wrong passphrases. Paste a new key from your provider.",
|
|
58
|
+
"extra.findings.title": "What needs your attention",
|
|
59
|
+
"extra.findings.none": "Nothing to report.",
|
|
60
|
+
"extra.findings.notFixable": "there is no fix for this one — the text says what to do instead",
|
|
61
|
+
"extra.findings.cmdWhy": "Names every one of them, with the reason.",
|
|
62
|
+
"extra.load.providers": "The provider catalog could not be read.",
|
|
63
|
+
"extra.load.profiles": "The connection list could not be read.",
|
|
64
|
+
"extra.add.button": "Add a connection",
|
|
65
|
+
"extra.add.title": "Add a connection",
|
|
66
|
+
"extra.add.name": "name",
|
|
67
|
+
"extra.add.namePh": "cheap",
|
|
68
|
+
"extra.add.nameHint": "Your own short name for it. This is what a routing row points at.",
|
|
69
|
+
"extra.add.provider": "provider",
|
|
70
|
+
"extra.add.engine": "engine",
|
|
71
|
+
"extra.add.engineHint": "Only the ones this provider actually ships are offered.",
|
|
72
|
+
"extra.add.region": "region",
|
|
73
|
+
"extra.add.base": "base URL",
|
|
74
|
+
"extra.add.baseHint": "Leave it empty to use the one in the catalog.",
|
|
75
|
+
"extra.add.cliBin": "command",
|
|
76
|
+
"extra.add.cliBinHint": "The tool ORC runs. It must be one ORC has an adapter for, and it will say so if it is not.",
|
|
77
|
+
"extra.add.cliAgent": "agent",
|
|
78
|
+
"extra.add.cliAgentPh": "build",
|
|
79
|
+
"extra.add.credential": "credential",
|
|
80
|
+
"extra.add.sourceEnv": "the NAME of an environment variable (recommended)",
|
|
81
|
+
"extra.add.sourceVault": "paste the key and store it here, encrypted",
|
|
82
|
+
"extra.add.sourceTool": "this tool signs itself in — no key needed",
|
|
83
|
+
"extra.add.sourceToolHint": "This tool holds its own credential. ORC sends no key and never writes another tool's credential store. Choose an environment variable or the vault only if you want ORC to hold a separate key.",
|
|
84
|
+
"extra.add.envKey": "variable name",
|
|
85
|
+
"extra.add.envKeyHint": "The name only. ORC never reads the value into anything it can print.",
|
|
86
|
+
"extra.add.key": "the key",
|
|
87
|
+
"extra.add.keyPh": "paste it here",
|
|
88
|
+
"extra.add.keyHint": "It is sent once, to test the connection. It is not written anywhere unless the test passes and you give a passphrase.",
|
|
89
|
+
"extra.add.vaultWarn": "An environment variable your operating system already protects beats a passphrase you will forget. Store the key here only if you would rather not manage variables — and write the passphrase down first, because ORC cannot recover it.",
|
|
90
|
+
"extra.add.needName": "Give it a name first.",
|
|
91
|
+
"extra.probe.head": "What the test does, before you press it",
|
|
92
|
+
"extra.probe.free": "First it asks the provider for its list of models. That costs nothing and no model runs.",
|
|
93
|
+
"extra.probe.paid": "Only if that list is unavailable does it send a one-token request instead, which costs a fraction of a cent. ORC tells you afterwards which of the two actually answered.",
|
|
94
|
+
"extra.wire.you": "this machine",
|
|
95
|
+
"extra.wire.provider": "the provider",
|
|
96
|
+
"extra.test.button": "Test connection",
|
|
97
|
+
"extra.test.running": "testing…",
|
|
98
|
+
"extra.test.title": "Test {name}",
|
|
99
|
+
"extra.test.vaultedNote": "This connection's key is stored here, encrypted. Give your passphrase and ORC unlocks the key just long enough to test it — the key is never printed and never written anywhere. A wrong passphrase spends one of your attempts, the same as anywhere else.",
|
|
100
|
+
"extra.result.verified": "answered · {how}",
|
|
101
|
+
"extra.result.reverted": "The test failed, so nothing was kept: the key was discarded and the connection removed. Nothing is left half-configured.",
|
|
102
|
+
"extra.save.head": "Store this key?",
|
|
103
|
+
"extra.save.warning": "Write your passphrase down somewhere safe now. ORC does not store it and cannot recover it. If you lose it, the stored key is gone and you paste a new one from your provider. After ten wrong attempts ORC deletes the stored key on purpose.",
|
|
104
|
+
"extra.save.pass": "passphrase",
|
|
105
|
+
"extra.save.passPh": "not shown",
|
|
106
|
+
"extra.save.passHint": "Only you know this. It is never stored, never logged and never shown to a model.",
|
|
107
|
+
"extra.save.again": "again",
|
|
108
|
+
"extra.save.againPh": "type it once more",
|
|
109
|
+
"extra.save.button": "Store the key",
|
|
110
|
+
"extra.save.mismatch": "The two passphrases did not match. Nothing was stored.",
|
|
111
|
+
"extra.save.stored": "The key is stored, encrypted (pepper: {pepper}).",
|
|
112
|
+
"extra.unlock.button": "Prove the passphrase",
|
|
113
|
+
"extra.unlock.title": "Unlock {name}",
|
|
114
|
+
"extra.unlock.what": "This checks your passphrase and nothing else. The key is never printed and never leaves the vault. Getting it right resets the wrong-attempt count to zero.",
|
|
115
|
+
"extra.unlock.ok": "Correct. The wrong-attempt count is back to zero, and the key was not printed anywhere.",
|
|
116
|
+
"extra.remove.button": "Remove",
|
|
117
|
+
"extra.remove.title": "Remove {name}",
|
|
118
|
+
"extra.remove.what": "This deletes the connection {name} and every routing row that points at it. The work those rows used to send away comes back to where it runs today.",
|
|
119
|
+
"extra.remove.reason": "reason",
|
|
120
|
+
"extra.remove.reasonPh": "why are you removing it?",
|
|
121
|
+
"extra.remove.reasonHint": "Required. A change to how this repo builds with no recorded why is a change nobody can explain in three weeks.",
|
|
122
|
+
"extra.remove.done": "{name} removed.",
|
|
123
|
+
"extra.fixture": "This is fixture mode: nothing real was run and nothing was contacted.",
|
|
124
|
+
"extra.routing.title": "Where each task runs",
|
|
125
|
+
"extra.routing.sub": "Each row is one score range. Click a row to change where that range runs.",
|
|
126
|
+
"extra.routing.gapNote": "Every range you do not connect stays on Claude, and keeps its row.",
|
|
127
|
+
"extra.routing.gapWhy": "A gap is not a hole. Every range with no connection of yours on it is drawn in Claude's colour with the agent it actually resolves to, so “I left the hardest work on Claude on purpose” and “there is no top band” can never look the same.",
|
|
128
|
+
"extra.routing.legendExtra": "This work leaves your machine.",
|
|
129
|
+
"extra.routing.legendClaude": "This work stays on Claude.",
|
|
130
|
+
"extra.routing.locked": "Nothing can be routed yet.",
|
|
131
|
+
"extra.routing.lockedHint": "Test one connection first. Work is never sent to somewhere that has not answered, so the editor opens as soon as one has.",
|
|
132
|
+
"extra.routing.editNote": "Nothing is written until you press Apply. Each row is written on its own, so one the CLI refuses does not undo the others.",
|
|
133
|
+
"extra.routing.pickProfile": "pick a connection…",
|
|
134
|
+
"extra.routing.untested": "(not tested yet)",
|
|
135
|
+
"extra.routing.modelPh": "model name",
|
|
136
|
+
"extra.routing.route": "Send this range there",
|
|
137
|
+
"extra.routing.clear": "Back to Claude",
|
|
138
|
+
"extra.routing.kvProfile": "Connection",
|
|
139
|
+
"extra.routing.kvModel": "Model",
|
|
140
|
+
"extra.routing.kvSmall": "Small model",
|
|
141
|
+
"extra.routing.kvTurns": "Turn limit",
|
|
142
|
+
"extra.routing.staged": "waiting for Apply",
|
|
143
|
+
"extra.routing.stagedSet": "{target}",
|
|
144
|
+
"extra.routing.stagedClear": "back to Claude",
|
|
145
|
+
"extra.routing.modelGone": "model not listed",
|
|
146
|
+
"extra.reset.title": "Put the guardrails back to their defaults",
|
|
147
|
+
"extra.reset.body": "This removes these settings from your config file, so each one goes back to what ORC ships. Your connections and your routing are NOT touched.",
|
|
148
|
+
"extra.reset.note": "Removing a setting is not the same as setting it to its default value — the key stops being in the file at all.",
|
|
149
|
+
"extra.reset.apply": "Reset them",
|
|
150
|
+
"extra.reset.done": "{n} settings back to their defaults.",
|
|
151
|
+
"extra.reset.label": "Reset the guardrails",
|
|
152
|
+
"extra.routing.undo": "Undo",
|
|
153
|
+
"extra.slots.title": "Where each fixed job runs",
|
|
154
|
+
"extra.slots.sub": "Some lanes give no score. They give one job to one agent. Pick where each job runs.",
|
|
155
|
+
"extra.slots.subWhy": "A score is what a range needs, and four lanes never produce one. Until v0.55.0 those lanes were routed by reading the score range of the agent they pin — arithmetic on a number nobody chose. A job is now a named position with one connection and one model.",
|
|
156
|
+
"extra.slots.keepsSlotWhy": "A job with no connection keeps its row and is drawn as the Claude agent it falls back to. Hiding it would make “I left the checker on Claude on purpose” and “there is no checker” look the same.",
|
|
157
|
+
"extra.slots.asked": "you are asked at the gate, every time",
|
|
158
|
+
"extra.slots.hold": "Send this job there",
|
|
159
|
+
"extra.slots.clear": "Back to Claude",
|
|
160
|
+
"extra.slots.displaces": "This takes the job from: {agents}",
|
|
161
|
+
"extra.slots.kvDisplaces": "Takes the job from",
|
|
162
|
+
"extra.slots.stagedSet": "{slot} → {target}",
|
|
163
|
+
"extra.slots.stagedClear": "back to {agent}",
|
|
164
|
+
"extra.slots.confirmReplace": "{slot} already runs on {old}. Replace it with {next}?",
|
|
165
|
+
"extra.slots.unreachable": "These roles can be set in your config, and nothing runs them yet:",
|
|
166
|
+
"extra.guard.title": "The limits you set",
|
|
167
|
+
"extra.guard.sub": "Change a limit here, then press Apply.",
|
|
168
|
+
"extra.guard.subWhy": "These are ordinary ORC settings, shown here because this is where they matter. They read from the same file the Settings panel edits, and they are written by the same command.",
|
|
169
|
+
"extra.guard.none": "No settings were returned.",
|
|
170
|
+
"extra.cost.title": "What it ran, and what it cost",
|
|
171
|
+
"extra.cost.none": "Nothing has been sent anywhere else yet.",
|
|
172
|
+
"extra.cost.noneHint": "This fills in the first time a task really runs somewhere else. ORC writes each one down as it happens.",
|
|
173
|
+
"extra.cost.dispatches": "{n} tasks sent",
|
|
174
|
+
"extra.cost.scanned": "from {n} traces",
|
|
175
|
+
"extra.cost.sources": "{log} written down by ORC · {traces} read from traces · {backfill} recovered from saved returns",
|
|
176
|
+
"extra.cost.sourcesWhy": "ORC writes every foreign dispatch to its own log the moment the worker answers, so a cost figure never depends on a run remembering to narrate it. Traces and saved run returns are read as well, so dispatches made before that log existed still appear. The same dispatch is only ever counted once.",
|
|
177
|
+
"extra.cost.unreadable": "Some lines in the log could not be read: {n}. Those dispatches are not counted in the totals below.",
|
|
178
|
+
"extra.cost.undated": "Some saved returns have no date: {n}. A date filter leaves them out. Clear the filter to include them.",
|
|
179
|
+
"extra.cost.priceTable": "Prices are from the table dated {as_of} ({days} days old). Nothing here is priced unless ORC has a rate for it.",
|
|
180
|
+
"extra.cost.nDispatches": "{n} sent",
|
|
181
|
+
"extra.cost.never": "Nothing has run through this range yet, so there is nothing to report — not zero cost, no measurement at all.",
|
|
182
|
+
"extra.cost.unrouted": "no longer routed",
|
|
183
|
+
"extra.cost.partial": "These counts come from {got} of {of} tasks — {missing} reported no counts at all. The rest is unknown, not zero.",
|
|
184
|
+
"extra.cost.usd": "usd {usd}",
|
|
185
|
+
"extra.cost.noRate": "usd — · there is no rate for {provider} in the price table, and a figure ORC did not price itself is never printed.",
|
|
186
|
+
"extra.cost.substitutions": "You did not get the model you asked for",
|
|
187
|
+
"extra.cost.reroutes": "The model held and a different company served it",
|
|
188
|
+
"extra.cost.fallbacks": "It did not work and Claude finished the job",
|
|
189
|
+
"extra.cost.more": "…and {n} more",
|
|
190
|
+
"extra.cost.missingRates": "Pairs with no price",
|
|
191
|
+
"extra.cost.ratesWhy": "Prints the JSON to paste for every provider and model pair that has no rate.",
|
|
192
|
+
"extra.routing.recomputed": "recomputed on Apply",
|
|
193
|
+
"extra.test.passHint": "Unlocks the stored key for this test only. Leave it empty if you are pasting a replacement key below.",
|
|
194
|
+
"extra.test.replaceKey": "or paste a new key instead",
|
|
195
|
+
"extra.test.replaceKeyHint": "Only if you changed the key at the provider. This REPLACES what is stored, and it asks for a passphrase again after the test passes.",
|
|
196
|
+
"extra.gate.hidden": "Connect one provider and test it. Routing, limits and spending appear after that.",
|
|
197
|
+
"extra.gate.hiddenWhy": "They are all controls for work that cannot happen until something answers, and setting them now would only look like it did something.",
|
|
198
|
+
"extra.gate.neverTested": "You have a connection, but it has never answered. Test it — nothing is ever sent to somewhere that has not proved it works.",
|
|
199
|
+
"extra.gate.noConnection": "Nothing is connected yet, so there is nothing to route work to. Install a tool above, or add a connection to a provider and give it a key.",
|
|
200
|
+
"extra.gate.title": "Set one connection up first",
|
|
201
|
+
"extra.live.cacheRead": "read from cache",
|
|
202
|
+
"extra.live.cacheWrite": "written to cache",
|
|
203
|
+
"extra.live.input": "new input",
|
|
204
|
+
"extra.live.noReport": "this tool does not say which model answered, so if it quietly used a different one there is no way to tell from here",
|
|
205
|
+
"extra.live.output": "output",
|
|
206
|
+
"extra.live.reply": "what came back",
|
|
207
|
+
"extra.live.reported": "model that answered",
|
|
208
|
+
"extra.live.requested": "model asked for",
|
|
209
|
+
"extra.live.truncated": "Shortened. ORC keeps only the beginning of a reply.",
|
|
210
|
+
"extra.probe.cliFree": "ORC checks four free things first. The program is there. It is new enough. It has a sign-in. It lists the models your account can reach. No model runs, and nothing is charged.",
|
|
211
|
+
"extra.probe.cliPaid": "Sending a real message is a separate button. On a tool like this it is not cheap. The tool loads its own instructions first. One short message then costs thousands of words of input.",
|
|
212
|
+
"extra.test.live": "Send a real message",
|
|
213
|
+
"extra.test.model": "model to test",
|
|
214
|
+
"extra.test.modelHint": "Only used by the real-message button. A model being on this list means the provider offers it — it does not mean it works.",
|
|
215
|
+
"extra.tools.absentWhat": "This program is not installed here. There is nothing to sign in to and no models to list. Install it first, then connect.",
|
|
216
|
+
"extra.tools.altNone": "There is no way to use this one without installing it. That is not something ORC forgot to look for — this tool has no website to point at.",
|
|
217
|
+
"extra.tools.altYes": "You can also do this without installing anything, using:",
|
|
218
|
+
"extra.tools.auth": "signed in",
|
|
219
|
+
"extra.tools.authNo": "no",
|
|
220
|
+
"extra.tools.authYes": "yes",
|
|
221
|
+
"extra.tools.connect": "Connect",
|
|
222
|
+
"extra.tools.connectedAs": "connected as",
|
|
223
|
+
"extra.tools.connectedUntested": "A connection to this tool exists, and it has never answered a test. Test it before ORC routes work to it.",
|
|
224
|
+
"extra.tools.test": "Test",
|
|
225
|
+
"extra.tools.addAnother": "Add another connection",
|
|
226
|
+
"extra.tools.floor": "oldest ORC drives",
|
|
227
|
+
"extra.tools.install": "Install it for me",
|
|
228
|
+
"extra.tools.keyhelpNoProfile": "Add a connection first — which key it uses is a property of the connection, not of the tool.",
|
|
229
|
+
"extra.tools.keyhelpSub": "What this tool needs from you, and which part ORC can do for you.",
|
|
230
|
+
"extra.tools.loginManual": "ORC cannot type this for you: the tool always asks at the keyboard. Press it and ORC opens a terminal on that exact command.",
|
|
231
|
+
"extra.tools.models": "models it offers",
|
|
232
|
+
"extra.tools.more": "Details",
|
|
233
|
+
"extra.tools.neverElevates": "ORC never asks for administrator rights and never runs anything as another user. If the install needs that, you will see it ask, in your own window, and it is yours to decide.",
|
|
234
|
+
"extra.tools.noCommand": "ORC has no install command for this computer. Its own documentation is the route.",
|
|
235
|
+
"extra.tools.none": "Nothing in the catalog runs as a local program.",
|
|
236
|
+
"extra.tools.outdatedWhat": "Your version is older than the one ORC can drive. An older build takes different options. The failure then looks like a model problem, not a version problem.",
|
|
237
|
+
"extra.tools.recheck": "Check again",
|
|
238
|
+
"extra.tools.recheckWhy": "Press this after you install something in another window.",
|
|
239
|
+
"extra.tools.sub": "ORC checks these programs on your computer every time you open this page.",
|
|
240
|
+
"extra.tools.subWhy": "Some of the things ORC can hand work to are programs installed on your own computer rather than a website it calls. A program can simply not be there, so the answer is never remembered.",
|
|
241
|
+
"extra.tools.title": "Tools that live on this machine",
|
|
242
|
+
"extra.tools.unauthWhat": "It is installed, but it has no sign-in ORC can see. Here is what it takes:",
|
|
243
|
+
"extra.tools.version": "version",
|
|
244
|
+
"extra.tools.versionUnknown": "unknown — ORC could not read it, and is not treating that as too old",
|
|
245
|
+
"extra.tools.willRun": "ORC will run exactly this, in a terminal window you can watch:",
|
|
246
|
+
"extra.profile.credentialTool": "the tool holds its own sign-in — ORC has no key for this one and does not need one",
|
|
247
|
+
"extra.strip.passphrase": "passphrase until",
|
|
248
|
+
"extra.session.title": "Save the passphrase",
|
|
249
|
+
"extra.session.keepFor": "Keep this passphrase for",
|
|
250
|
+
"extra.session.keepForHint": "After this date ORC stops a run instead of moving the work back to Claude. You set the date; ORC keeps it.",
|
|
251
|
+
"extra.session.days": "{n} days",
|
|
252
|
+
"extra.session.until": "Saved until {date}.",
|
|
253
|
+
"extra.session.honesty": "While this passphrase is saved, anything that can run as you on this computer can open the connection. The deadline is what limits that. Copying the project folder to another computer does not open it.",
|
|
254
|
+
"extra.session.save": "Save",
|
|
255
|
+
"extra.session.abandon": "Do not save · disconnect this connection",
|
|
256
|
+
"extra.session.opened": "Enter the passphrase in the window that just opened.",
|
|
257
|
+
"extra.session.active": "passphrase until {date}",
|
|
258
|
+
"extra.session.expiring": "passphrase until {date} · {days} days left",
|
|
259
|
+
"extra.session.expired": "passphrase expired",
|
|
260
|
+
"extra.session.none": "no passphrase saved",
|
|
261
|
+
"extra.session.extend": "New deadline",
|
|
262
|
+
"extra.session.forget": "Forget now",
|
|
263
|
+
"extra.session.forgetWhat": "ORC deletes the saved passphrase for {name}. The stored key stays. The next run stops and asks you to connect again.",
|
|
264
|
+
"extra.lanes.title": "Which lane does a band govern",
|
|
265
|
+
"extra.lanes.sub": "Each row says whether that lane can send work off Claude.",
|
|
266
|
+
"extra.lanes.subWhy": "A band is arithmetic. Which lane it governs is the decision. ORC computes every row below; this panel only shows it.",
|
|
267
|
+
"extra.lanes.none": "No lane information yet.",
|
|
268
|
+
"extra.lanes.edges": "band {band} · edges {edges} · both edges agree: {agree}",
|
|
269
|
+
"extra.keyhelp.session": "For this terminal only",
|
|
270
|
+
"extra.keyhelp.persist": "To keep it after you close the terminal",
|
|
271
|
+
"extra.tab.recovery": "Recovery",
|
|
272
|
+
"extra.recovery.title": "Dispatches that did not finish",
|
|
273
|
+
"extra.recovery.note": "A worker that stopped part-way left its changes on disk. ORC wrote down what the files looked like before it started, so it can tell you exactly what changed.",
|
|
274
|
+
"extra.recovery.noteWhy": "Until v0.54.0 a failed foreign dispatch was re-sent from scratch, as if the repository were untouched. It usually is not: a worker that wrote five of six lines and then lost its connection leaves a half-changed file, and a replacement executor either rewrites work you already paid for or improvises against a mental model that no longer matches the disk. The journal is what makes the difference visible, and it is written by the CLI as the dispatch runs — not by a lane that could forget.",
|
|
275
|
+
"extra.recovery.none": "No foreign dispatch has been recorded yet",
|
|
276
|
+
"extra.recovery.noneHint": "ORC starts a record the moment a task is sent to a non-Claude worker. Nothing has been sent yet.",
|
|
277
|
+
"extra.recovery.count": "{n} recorded",
|
|
278
|
+
"extra.recovery.orphans": "{n} never reported back",
|
|
279
|
+
"extra.recovery.inFlight": "{n} still running",
|
|
280
|
+
"extra.recovery.retention": "kept for {days} days after a clean finish",
|
|
281
|
+
"extra.recovery.chipLive": "still running",
|
|
282
|
+
"extra.recovery.chipOrphan": "never reported back",
|
|
283
|
+
"extra.recovery.chipAttempts": "{n} attempts",
|
|
284
|
+
"extra.recovery.attempt": "attempt {n} of {of}",
|
|
285
|
+
"extra.recovery.neverReported": "This dispatch never reported back. The process ended before it could say what happened.",
|
|
286
|
+
"extra.recovery.attribution": "what caused it",
|
|
287
|
+
"extra.recovery.holdWave": "Sending this task to Claude instead would fail as well. Fix the cause first.",
|
|
288
|
+
"extra.recovery.position": "what changed on disk",
|
|
289
|
+
"extra.recovery.undeclared": "{path} changed, and this task never declared it.",
|
|
290
|
+
"extra.recovery.lastAction": "Last action: {action}",
|
|
291
|
+
"extra.recovery.torn": "{n} log line(s) were cut off and could not be read.",
|
|
292
|
+
"extra.recovery.acceptance": "what this task had to achieve",
|
|
293
|
+
"extra.recovery.blocked": "Blocked: {why}",
|
|
294
|
+
"extra.recovery.target": "who should continue it",
|
|
295
|
+
"extra.recovery.readFailed": "The reconcile command did not answer.",
|
|
296
|
+
"extra.recovery.resumeWhy": "This writes a new task file that carries what is already on disk. The worker that picks it up costs money, so ORC does not run it for you.",
|
|
297
|
+
"extra.recovery.reconcileWhy": "This read is free. It compares the files now against what ORC recorded before the dispatch started.",
|
|
298
|
+
"extra.recovery.prune.title": "Delete old records",
|
|
299
|
+
"extra.recovery.prune.note": "Only a record whose every attempt finished cleanly, and which nothing has changed for 30 days, can be deleted. A dispatch that never reported back is never deleted.",
|
|
300
|
+
"extra.recovery.prune.preview": "Show what would go",
|
|
301
|
+
"extra.recovery.prune.apply": "Delete them",
|
|
302
|
+
"extra.recovery.prune.none": "Nothing can be deleted yet.",
|
|
303
|
+
"extra.recovery.prune.would": "{n} record(s) would be deleted:",
|
|
304
|
+
"extra.rel.title": "how often each connection finishes",
|
|
305
|
+
"extra.rel.none": "Nothing has been dispatched yet.",
|
|
306
|
+
"extra.rel.counts": "{n} dispatch(es) · {failed} failed · {resumed} resumed · {orphaned} never reported back",
|
|
307
|
+
"extra.rel.tooSmall": "sample too small (needs {floor})",
|
|
308
|
+
"extra.rel.rate": "{pct}% did not finish",
|
|
309
|
+
"extra.rel.attribution": "provider {provider} · network {network} · local {local} · worker {worker} · orc {orc} · unattributed {unattributed}",
|
|
310
|
+
"extra.rel.mttf": "average time before a failure: {s}s",
|
|
311
|
+
"extra.rel.unreadable": "{n} record(s) could not be read and are not counted above.",
|
|
312
|
+
"extra.rel.noResult": "{n} attempt(s) have no result and are not counted above."
|
|
313
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"flow.title": "Flow (DIY)",
|
|
3
|
+
"flow.sub": "The user-composed lane. Shape is CLI-owned and compiled — a stale compile never runs.",
|
|
4
|
+
"flow.gate": "Gate",
|
|
5
|
+
"flow.pipeline": "Pipeline",
|
|
6
|
+
"flow.pipelineNote": "The phases this flow compiles, in the order they run. A phase you switched off keeps its place and turns red. Click a phase to jump to the key that owns it.",
|
|
7
|
+
"flow.pipelinePhases": "{on} of {total} phases on",
|
|
8
|
+
"flow.stepJump": "jump to {key}",
|
|
9
|
+
"flow.compile": "orc diy compile",
|
|
10
|
+
"flow.bootstrap": "Bootstrap it from a terminal: orc diy init [--preset lean|paranoid|solo-fast]. UNCONFIGURED and STALE both refuse to run, and /orc-diy offers plain /orc instead.",
|
|
11
|
+
"flow.presets": "Start from a preset",
|
|
12
|
+
"flow.presetsNote": "The same starting shapes the terminal composer offers as its first question. Pick one, then tune the keys below.",
|
|
13
|
+
"flow.presetsNoteConfigured": "The same starting shapes the terminal composer offers as its first question. Applying one REPLACES the flow config you have now.",
|
|
14
|
+
"flow.presetDefaults": "full-lane defaults",
|
|
15
|
+
"flow.presetDefaultsDesc": "Everything on, like /orc. No preset flag.",
|
|
16
|
+
"flow.presetUse": "Use this",
|
|
17
|
+
"flow.presetTitle": "Start the flow from a preset",
|
|
18
|
+
"flow.presetConfirm": "This writes a fresh flow config from the {name} preset.",
|
|
19
|
+
"flow.presetConfirmDefaults": "This writes a fresh flow config with the full-lane defaults.",
|
|
20
|
+
"flow.presetOverwrite": "A flow config already exists. Every key you have set is replaced, and the flow becomes STALE until you recompile.",
|
|
21
|
+
"flow.presetApply": "Write the config",
|
|
22
|
+
"flow.presetInUse": "in use",
|
|
23
|
+
"flow.presetInUseNote": "Every key this preset sets is still set that way. The flow's name is not part of the match, so renaming it changes nothing here.",
|
|
24
|
+
"flow.unset": "(unset)",
|
|
25
|
+
"flow.keys": "Flow keys",
|
|
26
|
+
"flow.keysNote": "Changing a key makes the compile STALE — recompile before running /orc-diy.",
|
|
27
|
+
"flow.table": "Compiled executor table",
|
|
28
|
+
"flow.tableNote": "Clipped to the declared session tier at COMPILE time, never at runtime.",
|
|
29
|
+
"flow.files": "Files"
|
|
30
|
+
}
|