@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,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"handoff.title": "Self-serve",
|
|
3
|
+
"handoff.sub": "Things you can change yourself, with the check and the undo shown first.",
|
|
4
|
+
"handoff.none": "No map yet",
|
|
5
|
+
"handoff.noneHint": "The map lists every file a non-developer can safely own, and grades each one by whether a check exists for it.",
|
|
6
|
+
"handoff.cmdMapWhy": "Making the map means reading the project, so it costs model tokens. Once it exists, changing a value from here is free.",
|
|
7
|
+
"handoff.cmdDoWhy": "Want help finding the right file, or a change bigger than one value? The lane does that part.",
|
|
8
|
+
"handoff.summary": "What you can change",
|
|
9
|
+
"handoff.gradeExplain": "The grade does not come from the file type. It comes from whether a cheap check exists for that file.",
|
|
10
|
+
"handoff.writesOff": "Changes are switched off for this project (handoff_write is false). You can read the map, but nothing here will write.",
|
|
11
|
+
"handoff.grade.green": "GREEN - a check will catch a mistake",
|
|
12
|
+
"handoff.grade.amber": "AMBER - the check is a person",
|
|
13
|
+
"handoff.grade.red": "RED - do not change this here",
|
|
14
|
+
"handoff.missing": "file is missing",
|
|
15
|
+
"handoff.redWhy": "Why not: {why}",
|
|
16
|
+
"handoff.redAsk": "Ask: {who}",
|
|
17
|
+
"handoff.field.check": "Check that runs after",
|
|
18
|
+
"handoff.field.checkManual": "a person has to look",
|
|
19
|
+
"handoff.field.undo": "Undo command",
|
|
20
|
+
"handoff.amberNote": "Nothing automatic checks this file. After you change it, the check is a task for a person - it is never reported as passed.",
|
|
21
|
+
"handoff.change": "Change a value",
|
|
22
|
+
"handoff.editTitle": "Change a value in {file}",
|
|
23
|
+
"handoff.editIntro": "One value at a time, in {file}.",
|
|
24
|
+
"handoff.keyLabel": "Which setting",
|
|
25
|
+
"handoff.valueLabel": "New value",
|
|
26
|
+
"handoff.keyPlaceholder": "cart.empty.title",
|
|
27
|
+
"handoff.valuePlaceholder": "Nothing in here yet",
|
|
28
|
+
"handoff.noNewKeys": "This only changes a setting that already exists. It never creates a new one - that is a code change.",
|
|
29
|
+
"handoff.undoFirst": "If this goes wrong, undo it with",
|
|
30
|
+
"handoff.willRun": "This is exactly what will run",
|
|
31
|
+
"handoff.thenCheck": "Then it will run: {check}",
|
|
32
|
+
"handoff.applyChange": "Change it",
|
|
33
|
+
"handoff.needBoth": "Fill in both the setting and the new value.",
|
|
34
|
+
"handoff.applied": "Changed, and the check passed",
|
|
35
|
+
"handoff.amberApplied": "Changed. Nothing has checked it yet - please do the check below yourself.",
|
|
36
|
+
"handoff.failed": "Not changed"
|
|
37
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"knowledge.title": "Knowledge",
|
|
3
|
+
"knowledge.sub": "What ORC already knows about this repo: the wiki, cached code-patterns, and repair memory.",
|
|
4
|
+
"knowledge.wiki": "Wiki",
|
|
5
|
+
"knowledge.wiki.none": "No wiki yet.",
|
|
6
|
+
"knowledge.wiki.noneHint": "Run /orc-wiki in Claude Code to build one. This panel never scans — that costs a model.",
|
|
7
|
+
"knowledge.wiki.unregistered": "The wiki is {state} — nothing can read it until it is registered.",
|
|
8
|
+
"knowledge.wiki.syncHint": "`orc wiki sync` fixes this instantly: registration is derived from the docs, so it is free and never a re-scan.",
|
|
9
|
+
"knowledge.wiki.freshNote": "Freshness is coverage-relative: a doc is stale only when commits since its OWN anchor touched files IT covers.",
|
|
10
|
+
"knowledge.wiki.why": "why: {reason}",
|
|
11
|
+
"knowledge.impact.title": "Refresh scope (orc wiki impact)",
|
|
12
|
+
"knowledge.impact.counts": "{registered} registered · {touched} touched · {structural} structural · {pct}% affected (threshold {threshold}%)",
|
|
13
|
+
"knowledge.impact.blind": "Structural blind spot — changed files no doc covers:",
|
|
14
|
+
"knowledge.impact.col.doc": "Doc",
|
|
15
|
+
"knowledge.impact.col.state": "State",
|
|
16
|
+
"knowledge.impact.col.detail": "Detail",
|
|
17
|
+
"knowledge.patterns.title": "Code patterns",
|
|
18
|
+
"knowledge.patterns.note": "Reconciled per-language conventions, injected literally into executor slices. Project conventions win; security and correctness invariants are always kept.",
|
|
19
|
+
"knowledge.patterns.none": "No cached patterns.",
|
|
20
|
+
"knowledge.patterns.noneHint": "Run /orc-pattern in Claude Code to codify one. Codifying costs a model, so this panel never does it.",
|
|
21
|
+
"knowledge.patterns.known": "Known language keys: {list}",
|
|
22
|
+
"knowledge.gotchas.title": "Repair memory (gotchas)",
|
|
23
|
+
"knowledge.gotchas.note": "One entry per project-specific failure a repair already solved. Pruning ARCHIVES the low-value tail — it never deletes.",
|
|
24
|
+
"knowledge.gotchas.none": "Nothing recorded yet.",
|
|
25
|
+
"knowledge.gotchas.noneHint": "A repair loop that goes red → green writes the first one.",
|
|
26
|
+
"knowledge.gotchas.prune": "Prune to gotchas_max",
|
|
27
|
+
"knowledge.field.docs": "docs",
|
|
28
|
+
"knowledge.field.lastScan": "last scan",
|
|
29
|
+
"knowledge.field.distance": "distance",
|
|
30
|
+
"knowledge.field.distanceValue": "{n} commits on the worst doc's covered files",
|
|
31
|
+
"knowledge.field.unmeasurable": "unmeasurable",
|
|
32
|
+
"knowledge.field.anchor": "anchor",
|
|
33
|
+
"knowledge.field.edges": "edges",
|
|
34
|
+
"knowledge.field.tags": "crosslink tags",
|
|
35
|
+
"knowledge.field.blind": "structural blind spots",
|
|
36
|
+
"knowledge.plan": "Refresh plan",
|
|
37
|
+
"knowledge.plan.na": "Nothing to plan",
|
|
38
|
+
"knowledge.plan.naHint": "Build a wiki first, or register the pages already on disk - both are free.",
|
|
39
|
+
"knowledge.plan.clean": "Every page still covers the current code. Nothing to refresh.",
|
|
40
|
+
"knowledge.debt.pending": "1 page pending",
|
|
41
|
+
"knowledge.debt.pendingPlural": "{n} pages pending",
|
|
42
|
+
"knowledge.debt.oldest": "oldest 1 commit behind",
|
|
43
|
+
"knowledge.debt.oldestPlural": "oldest {n} commits behind",
|
|
44
|
+
"knowledge.debt.nothingBroken": "Nothing is broken. These pages are behind, not wrong - and clearing the top of the list is far cheaper than a full re-scan.",
|
|
45
|
+
"knowledge.debt.none": "No refresh owed.",
|
|
46
|
+
"knowledge.plan.freeFirst": "Free repairs first - never pay for something a free step fixes",
|
|
47
|
+
"knowledge.plan.free": "free",
|
|
48
|
+
"knowledge.plan.col.doc": "page",
|
|
49
|
+
"knowledge.plan.col.state": "state",
|
|
50
|
+
"knowledge.plan.col.delta": "changed",
|
|
51
|
+
"knowledge.plan.col.used": "used",
|
|
52
|
+
"knowledge.plan.col.tier": "scan",
|
|
53
|
+
"knowledge.plan.col.tokens": "est. tokens",
|
|
54
|
+
"knowledge.plan.col.usd": "est. $",
|
|
55
|
+
"knowledge.plan.gone": "A file this page documents is gone: {files}",
|
|
56
|
+
"knowledge.plan.retireHint": "No run has used this page in the last {n}. Retiring it may be better value than refreshing it.",
|
|
57
|
+
"knowledge.plan.noEstimate": "No cost estimate yet - there is not enough history to measure one, and none will be invented.",
|
|
58
|
+
"knowledge.plan.tierNote": "Scan mode {mode}: {deep} deep, {light} light. A cheaper scan is always shown, never a quiet substitution.",
|
|
59
|
+
"knowledge.plan.refreshWhy": "A refresh re-reads your code with a model, so it costs money. That is why it is a command you run, not a button here.",
|
|
60
|
+
"knowledge.syncFree": "Register pages (free)",
|
|
61
|
+
"knowledge.syncOk": "Pages registered",
|
|
62
|
+
"knowledge.usage": "Which pages get used",
|
|
63
|
+
"knowledge.usage.rebuild": "Recount",
|
|
64
|
+
"knowledge.usage.rebuilt": "Recounted from the traces",
|
|
65
|
+
"knowledge.usage.registered": "{n} registered",
|
|
66
|
+
"knowledge.usage.active": "{n} in active use",
|
|
67
|
+
"knowledge.usage.never": "{n} unused in {runs} runs",
|
|
68
|
+
"knowledge.usage.neverUsed": "never",
|
|
69
|
+
"knowledge.usage.note": "Counted from what runs actually put into a slice. A page nobody reads still costs money on every full refresh, and context room whenever it is included.",
|
|
70
|
+
"knowledge.tab.wiki": "Wiki",
|
|
71
|
+
"knowledge.tab.coverage": "Coverage",
|
|
72
|
+
"knowledge.tab.patterns": "Code patterns",
|
|
73
|
+
"knowledge.tab.memory": "Memory",
|
|
74
|
+
"knowledge.tab.peers": "Peers",
|
|
75
|
+
"knowledge.strip.wiki": "wiki",
|
|
76
|
+
"knowledge.strip.docs": "docs",
|
|
77
|
+
"knowledge.strip.covered": "covered",
|
|
78
|
+
"knowledge.strip.blind": "blind",
|
|
79
|
+
"knowledge.strip.pending": "pending",
|
|
80
|
+
"knowledge.strip.patterns": "patterns",
|
|
81
|
+
"knowledge.strip.gotchas": "repair notes",
|
|
82
|
+
"knowledge.field.worst": "Oldest doc (this is what sets the tier)",
|
|
83
|
+
"knowledge.orientation.present": "Orientation doc present: {file}. Every reader opens it first.",
|
|
84
|
+
"knowledge.orientation.missing": "No orientation doc. Every reader opens it first, so this one is worth having — and regenerating it is free.",
|
|
85
|
+
"knowledge.docs.title": "What is in the wiki",
|
|
86
|
+
"knowledge.docs.note": "Every registered doc, in the order the CLI returned them. Open a row to see what it covers and what it was scanned against. Each distance is measured against that doc's own files, so a doc about payments does not age because the README changed.",
|
|
87
|
+
"knowledge.docs.none": "Nothing registered.",
|
|
88
|
+
"knowledge.docs.noneHint": "Docs on disk have to be registered before anything can read them, and registering is free and instant.",
|
|
89
|
+
"knowledge.docs.col.doc": "Doc",
|
|
90
|
+
"knowledge.docs.col.tier": "State",
|
|
91
|
+
"knowledge.docs.col.distance": "Behind",
|
|
92
|
+
"knowledge.docs.col.covers": "Covers",
|
|
93
|
+
"knowledge.docs.col.used": "Used",
|
|
94
|
+
"knowledge.docs.col.tags": "Tags",
|
|
95
|
+
"knowledge.docs.field.title": "Title",
|
|
96
|
+
"knowledge.docs.field.type": "Type",
|
|
97
|
+
"knowledge.docs.field.scanned": "Scanned at commit",
|
|
98
|
+
"knowledge.docs.field.covers": "Covers",
|
|
99
|
+
"knowledge.docs.field.coveredFiles": "Files it names",
|
|
100
|
+
"knowledge.docs.field.lastUsed": "Last used",
|
|
101
|
+
"knowledge.reveal": "Show the text",
|
|
102
|
+
"knowledge.coverage.title": "How much of the code is written about",
|
|
103
|
+
"knowledge.coverage.sub": "{covered} of {tracked} tracked files are covered by at least one doc",
|
|
104
|
+
"knowledge.coverage.notATarget": "This is a report, not a target. There is no threshold, nothing anywhere reacts to it, and a repo that deliberately writes about four subsystems out of forty is not broken.",
|
|
105
|
+
"knowledge.coverage.na": "Cannot be measured here.",
|
|
106
|
+
"knowledge.coverage.naHint": "It needs a registered wiki and a git repository.",
|
|
107
|
+
"knowledge.coverage.uncovered": "Not covered",
|
|
108
|
+
"knowledge.coverage.uncoveredNote": "Grouped by folder and biggest first, because \"240 files, all in vendor\" and \"12 files, all in payments\" are opposite situations.",
|
|
109
|
+
"knowledge.coverage.col.dir": "Folder",
|
|
110
|
+
"knowledge.coverage.col.files": "Files",
|
|
111
|
+
"knowledge.coverage.col.last": "Last touched",
|
|
112
|
+
"knowledge.blind.title": "Changed, and no doc covers it",
|
|
113
|
+
"knowledge.blind.none": "Nothing changed that no doc covers.",
|
|
114
|
+
"knowledge.blind.note": "These files changed and no doc claims them. That is a gap in what is written down, not rot in what already exists — so it never makes the wiki stale on its own.",
|
|
115
|
+
"knowledge.patterns.inspect": "What is in it",
|
|
116
|
+
"knowledge.patterns.field.codified": "Written on",
|
|
117
|
+
"knowledge.patterns.field.source": "From commit",
|
|
118
|
+
"knowledge.patterns.field.playbook": "Playbook it was reconciled against",
|
|
119
|
+
"knowledge.patterns.field.size": "Lines · bytes",
|
|
120
|
+
"knowledge.patterns.field.counts": "Conventions · invariants",
|
|
121
|
+
"knowledge.patterns.unheadered": "This file has no readable header, so there is no date to show. A date is never guessed from when the file was last saved.",
|
|
122
|
+
"knowledge.patterns.conflicts": "Where the project and the playbook disagree",
|
|
123
|
+
"knowledge.patterns.literalNote": "This exact text is put in front of every agent that writes code here. If you cannot read it, you cannot trust it.",
|
|
124
|
+
"knowledge.patterns.paidWhy": "Learning a language's conventions reads a lot of your code, so it costs model tokens — a command to copy, not a button.",
|
|
125
|
+
"knowledge.gotchas.headroom": "{n} of {max} kept",
|
|
126
|
+
"knowledge.gotchas.preview": "Show what would be archived",
|
|
127
|
+
"knowledge.gotchas.pruneWould": "{n} entry(ies) would be moved to the archive:",
|
|
128
|
+
"knowledge.gotchas.pruneNone": "Nothing would be archived — you are under the limit.",
|
|
129
|
+
"knowledge.archive.title": "Archive",
|
|
130
|
+
"knowledge.archive.note": "Nothing is ever deleted here. Entries pushed out by the limit are moved, and they keep their id forever.",
|
|
131
|
+
"knowledge.archive.load": "Show the archive",
|
|
132
|
+
"knowledge.archive.empty": "Nothing has been archived yet.",
|
|
133
|
+
"knowledge.peers.title": "What ORC knows from next door",
|
|
134
|
+
"knowledge.peers.note": "Linked repos, read-only. Every word here is what the other repo reported — this side never recalculates it. Editing the links happens on Crosslink; there is one picture of the boundary, and it lives there.",
|
|
135
|
+
"knowledge.peers.open": "Open Crosslink",
|
|
136
|
+
"knowledge.peers.none": "No repos are linked yet.",
|
|
137
|
+
"knowledge.peers.col.repo": "Repo",
|
|
138
|
+
"knowledge.peers.col.state": "State",
|
|
139
|
+
"knowledge.peers.col.tier": "Freshness",
|
|
140
|
+
"knowledge.peers.col.tags": "Tags it offers"
|
|
141
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"learn.title": "Learn",
|
|
3
|
+
"learn.sub": "The same walkthrough as `orc onboarding`, in the panel — no GitHub README needed.",
|
|
4
|
+
"learn.contents": "Contents",
|
|
5
|
+
"learn.progress": "{n} of {total}",
|
|
6
|
+
"learn.prev": "← Previous",
|
|
7
|
+
"learn.next": "Next →",
|
|
8
|
+
"learn.copySection": "Copy this section",
|
|
9
|
+
"learn.copied": "Section copied",
|
|
10
|
+
"learn.search": "Search the walkthrough…",
|
|
11
|
+
"learn.noMatch": "Nothing in the walkthrough matches that.",
|
|
12
|
+
"learn.matches": "{n} section matches",
|
|
13
|
+
"learn.matchesPlural": "{n} sections match",
|
|
14
|
+
"learn.cmdHint": "Commands are highlighted. Click one to copy it.",
|
|
15
|
+
"learn.restart": "Back to the start"
|
|
16
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"maintenance.title": "Maintenance",
|
|
3
|
+
"maintenance.sub": "update · upgrade · doctor --fix. Preview first, approve, then it runs — never automatically.",
|
|
4
|
+
"maintenance.banner": "Nothing on this panel runs on its own. Each action shows the CLI's own read-only preview first, and the exact command it will run.",
|
|
5
|
+
"maintenance.network": "Reaches the network and replaces the installed package.",
|
|
6
|
+
"maintenance.advanced": "Advanced",
|
|
7
|
+
"maintenance.advancedNote": "Everything above targets THIS project. What is below reaches outside it, so it is boxed off and previewed the same way.",
|
|
8
|
+
"maintenance.globalNote": "Targets the GLOBAL install in ~/.claude, not this project.",
|
|
9
|
+
"maintenance.globalWarn": "This writes to the GLOBAL install in ~/.claude — every project on this machine sees the result. The preview below was read from that same global install, not from this project.",
|
|
10
|
+
"maintenance.checking": "checking for a newer release…",
|
|
11
|
+
"maintenance.checkAgain": "Check again",
|
|
12
|
+
"maintenance.checkFailed": "check failed.",
|
|
13
|
+
"maintenance.couldNotCheck": "Could not check.",
|
|
14
|
+
"maintenance.preview": "Preview…",
|
|
15
|
+
"maintenance.lastRun": "Last run",
|
|
16
|
+
"maintenance.nothingRun": "Nothing has been run from this panel yet.",
|
|
17
|
+
"maintenance.noOutput": "(no output yet)",
|
|
18
|
+
"maintenance.running": "running",
|
|
19
|
+
"maintenance.failed": "failed",
|
|
20
|
+
"maintenance.previewTitle": "Preview — {command}",
|
|
21
|
+
"maintenance.previewFrom": "Preview came from: {command} (read-only).",
|
|
22
|
+
"maintenance.waitingRuns": "{n} run(s) are still waiting.",
|
|
23
|
+
"maintenance.waitingBody": "Updating changes the skills those runs will resume into: {slugs}",
|
|
24
|
+
"maintenance.waitingAck": "I understand — continue anyway",
|
|
25
|
+
"maintenance.dirtyTree": "The working tree has uncommitted changes. `orc upgrade` replaces the package while they are still there.",
|
|
26
|
+
"maintenance.installed": "installed",
|
|
27
|
+
"maintenance.available": "available",
|
|
28
|
+
"maintenance.availableUnknown": "could not check (offline?)",
|
|
29
|
+
"maintenance.source": "source",
|
|
30
|
+
"maintenance.checkedAt": "version read from",
|
|
31
|
+
"maintenance.updateAvailable": "update available",
|
|
32
|
+
"maintenance.yes": "yes",
|
|
33
|
+
"maintenance.no": "no",
|
|
34
|
+
"maintenance.upgradeNote": "This is what would be installed. `Check only` re-reads the version without changing anything.",
|
|
35
|
+
"maintenance.installedPayload": "installed payload",
|
|
36
|
+
"maintenance.thisCli": "this cli",
|
|
37
|
+
"maintenance.findings": "findings",
|
|
38
|
+
"maintenance.healthy": "orc doctor reports a healthy install — this would be a no-op re-copy.",
|
|
39
|
+
"maintenance.wouldDelete": "These {n} file(s) would be DELETED:",
|
|
40
|
+
"maintenance.wouldDeleteNone": "No orphan files were detected — nothing would be deleted.",
|
|
41
|
+
"maintenance.checkOnly": "Check only",
|
|
42
|
+
"maintenance.checkOnlyDone": "Version check done — see the panel above. Nothing was changed.",
|
|
43
|
+
"maintenance.applyPrune": "Delete and update",
|
|
44
|
+
"maintenance.applyUpgrade": "Upgrade now",
|
|
45
|
+
"maintenance.apply": "Apply",
|
|
46
|
+
"maintenance.started": "Running: {command}",
|
|
47
|
+
"maintenance.willRestart": "This changes the code the panel runs. When it finishes, the panel starts again on the same address and this page reloads.",
|
|
48
|
+
"maintenance.restarting": "Done. Starting the panel again on the same address, then reloading this page.",
|
|
49
|
+
"maintenance.restartFailed": "The panel could not start again on its own. It is still working, but it still runs the old code. Run these two commands:",
|
|
50
|
+
"maintenance.restartTimeout": "The panel did not answer again in time.",
|
|
51
|
+
"maintenance.startFail": "Could not start it."
|
|
52
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mockrun.title": "Mocked Skill Use",
|
|
3
|
+
"mockrun.sub": "What each lane looks like when it runs — written out, so you never have to pay for a run to find out.",
|
|
4
|
+
"mockrun.intro": "{n} walkthroughs ship with ORC. Nothing here was executed: every screen, file and number is written the way the real lane writes it. Read one before you run it.",
|
|
5
|
+
"mockrun.contents": "All walkthroughs",
|
|
6
|
+
"mockrun.search": "Search the walkthroughs…",
|
|
7
|
+
"mockrun.noMatch": "No walkthrough matches that.",
|
|
8
|
+
"mockrun.matches": "{n} walkthrough matches",
|
|
9
|
+
"mockrun.matchesPlural": "{n} walkthroughs match",
|
|
10
|
+
"mockrun.back": "← All walkthroughs",
|
|
11
|
+
"mockrun.lines": "{n} line",
|
|
12
|
+
"mockrun.linesPlural": "{n} lines",
|
|
13
|
+
"mockrun.kindAnnotated": "annotated",
|
|
14
|
+
"mockrun.copyCmd": "Copy the terminal command",
|
|
15
|
+
"mockrun.codeBlock": "Code block",
|
|
16
|
+
"mockrun.missing": "There is no walkthrough called {slug}.",
|
|
17
|
+
"mockrun.none": "No walkthroughs are installed.",
|
|
18
|
+
"mockrun.noneHint": "They ship inside the ORC package. A reinstall (`orc upgrade`) restores them."
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nav.overview": "Overview",
|
|
3
|
+
"nav.settings": "Settings",
|
|
4
|
+
"nav.runs": "Runs",
|
|
5
|
+
"nav.knowledge": "Knowledge",
|
|
6
|
+
"nav.stats": "Stats",
|
|
7
|
+
"nav.flow": "Flow",
|
|
8
|
+
"nav.crosslink": "Crosslink",
|
|
9
|
+
"nav.learn": "Learn",
|
|
10
|
+
"nav.mockrun": "Mocked Skill Use",
|
|
11
|
+
"nav.experiment": "Experiment",
|
|
12
|
+
"nav.maintenance": "Maintenance",
|
|
13
|
+
"nav.pact": "Promises",
|
|
14
|
+
"nav.boundary": "Boundary",
|
|
15
|
+
"nav.handoff": "Self-serve",
|
|
16
|
+
"nav.challenge": "Challenge",
|
|
17
|
+
"nav.extra": "Extra",
|
|
18
|
+
"nav.docs": "Docs"
|
|
19
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"overview.title": "Overview",
|
|
3
|
+
"overview.sub": "Install health, knowledge state and what is waiting for you.",
|
|
4
|
+
"overview.tile.install": "Install",
|
|
5
|
+
"overview.tile.installHealthy": "Healthy",
|
|
6
|
+
"overview.tile.installIssues": "{n} issue",
|
|
7
|
+
"overview.tile.installIssuesPlural": "{n} issues",
|
|
8
|
+
"overview.tile.installNote": "payload {payload} · cli {cli}",
|
|
9
|
+
"overview.tile.wiki": "Wiki",
|
|
10
|
+
"overview.tile.wikiNote": "{docs} docs · last scan {scan}",
|
|
11
|
+
"overview.tile.wikiNone": "no registered wiki",
|
|
12
|
+
"overview.tile.wikiUnknown": "tier unknown",
|
|
13
|
+
"overview.tile.waiting": "Runs waiting",
|
|
14
|
+
"overview.tile.waitingNote": "{n} recorded in total",
|
|
15
|
+
"overview.tile.version": "ORC version",
|
|
16
|
+
"overview.tile.versionChecking": "Comparing against the install source.",
|
|
17
|
+
"overview.tile.versionFailed": "The version check did not complete.",
|
|
18
|
+
"overview.tile.patterns": "Code patterns",
|
|
19
|
+
"overview.tile.patternsNone": "none cached yet",
|
|
20
|
+
"overview.attention.title": "Worth doing",
|
|
21
|
+
"overview.attention.allClear": "Nothing needs your attention.",
|
|
22
|
+
"overview.attention.allClearHint": "Install healthy, knowledge fresh, no run left waiting.",
|
|
23
|
+
"overview.attention.nothingToDo": "Nothing to do — this clears itself on the next run.",
|
|
24
|
+
"overview.item.diyStale.title": "The DIY flow needs recompiling",
|
|
25
|
+
"overview.item.diyStale.body": "A STALE compile refuses to run. Recompile it on the Flow panel — that is where `orc diy compile` lives, not Maintenance.",
|
|
26
|
+
"overview.item.diyStale.cta": "Recompile on Flow",
|
|
27
|
+
"overview.item.wikiAging.title": "The wiki is AGING — a refresh is worth it soon",
|
|
28
|
+
"overview.item.wikiAging.body": "Docs are drifting from the files they cover. A refresh keeps the fast lane usable and keeps planning grounded. Refreshing costs a model, so it runs in Claude Code, never here.",
|
|
29
|
+
"overview.item.wikiAging.cta": "See what changed",
|
|
30
|
+
"overview.item.wikiStale.title": "The wiki is STALE",
|
|
31
|
+
"overview.item.wikiStale.body": "At least one doc is far behind the files it covers. /orc-fast will fall back to orc-mini until this is refreshed.",
|
|
32
|
+
"overview.item.wikiStale.cta": "See what changed",
|
|
33
|
+
"overview.item.wikiNone.title": "No project wiki yet",
|
|
34
|
+
"overview.item.wikiNone.body": "The wiki is what makes the fast lane and grounded planning possible. Build it with /orc-wiki in a Claude session.",
|
|
35
|
+
"overview.item.wikiNone.cta": "Open Knowledge",
|
|
36
|
+
"overview.item.wikiUnregistered.title": "The wiki is not registered",
|
|
37
|
+
"overview.item.wikiUnregistered.body": "Docs exist but nothing can read them. Registration is derived from the docs, so `orc wiki sync` is free and instant — never a re-scan.",
|
|
38
|
+
"overview.item.wikiUnregistered.cta": "Open Knowledge",
|
|
39
|
+
"overview.item.patterns.title": "No code pattern cached",
|
|
40
|
+
"overview.item.patterns.body": "Without one, executors write generic code instead of code that matches this repo. /orc-pattern codifies it once and every later run reuses it.",
|
|
41
|
+
"overview.item.patterns.cta": "Open Knowledge",
|
|
42
|
+
"overview.item.waiting.title": "{n} run is still waiting",
|
|
43
|
+
"overview.item.waiting.titlePlural": "{n} runs are still waiting",
|
|
44
|
+
"overview.item.waiting.body": "A resume pointer is on disk. `orc resume` prints the prompt to paste into a fresh session.",
|
|
45
|
+
"overview.item.waiting.cta": "Open Runs",
|
|
46
|
+
"overview.item.update.title": "orc {latest} is available",
|
|
47
|
+
"overview.item.update.body": "You have {version}. Read the changelog first, then upgrade — nothing installs on its own.",
|
|
48
|
+
"overview.item.update.cta": "Open Maintenance",
|
|
49
|
+
"overview.item.doctor.cta": "Open Maintenance",
|
|
50
|
+
"overview.waiting.title": "Waiting for you",
|
|
51
|
+
"overview.waiting.note": "A resume pointer is on disk for these. `orc resume` prints the paste-into-a-fresh-session prompt.",
|
|
52
|
+
"overview.waiting.where": "open — see the Runs panel for where it stands",
|
|
53
|
+
"overview.waiting.since": "waiting since {age}",
|
|
54
|
+
"overview.doctor.title": "orc doctor",
|
|
55
|
+
"overview.doctor.fixable": "fixable",
|
|
56
|
+
"overview.doctor.manual": "manual",
|
|
57
|
+
"overview.paths.title": "Where things are",
|
|
58
|
+
"overview.paths.project": "project",
|
|
59
|
+
"overview.paths.config": "config",
|
|
60
|
+
"overview.paths.skills": "skills",
|
|
61
|
+
"overview.paths.runs": "runs",
|
|
62
|
+
"overview.paths.traces": "traces",
|
|
63
|
+
"overview.know.title": "Knowledge",
|
|
64
|
+
"overview.know.patterns": "patterns cached",
|
|
65
|
+
"overview.know.tags": "crosslink tags",
|
|
66
|
+
"overview.know.diy": "diy flow",
|
|
67
|
+
"overview.tile.none": "none",
|
|
68
|
+
"overview.tile.pact": "Promises",
|
|
69
|
+
"overview.tile.pactNote": "{n} recorded - {u} nothing cheap can check",
|
|
70
|
+
"overview.tile.pactNone": "Nothing recorded yet",
|
|
71
|
+
"overview.tile.boundary": "Boundary",
|
|
72
|
+
"overview.tile.boundaryNote": "{n} areas - {stale} stale",
|
|
73
|
+
"overview.tile.boundaryNone": "No areas mapped yet",
|
|
74
|
+
"overview.tile.debt": "Refresh owed",
|
|
75
|
+
"overview.tile.debtNote": "wiki {tier} - about {tok} to clear",
|
|
76
|
+
"overview.tile.debtNone": "Nothing owed",
|
|
77
|
+
"overview.item.exportStale.cta": "Recompile it",
|
|
78
|
+
"overview.item.pactBroken.cta": "Open Promises",
|
|
79
|
+
"overview.item.boundaryRefuse.cta": "Open Boundary",
|
|
80
|
+
"overview.item.docDrifted.cta": "Open Docs",
|
|
81
|
+
"overview.item.wikiDebt.cta": "Open Knowledge",
|
|
82
|
+
"overview.item.extraFindings.cta": "Open Extra",
|
|
83
|
+
"overview.extraOrphan.title": "A dispatch did not report back",
|
|
84
|
+
"overview.extraOrphan.note": "ORC sent work to a non-Claude worker and never heard the result. Its changes may still be on disk.",
|
|
85
|
+
"overview.extraOrphan.chip": "{n} dispatch",
|
|
86
|
+
"overview.extraOrphan.chipPlural": "{n} dispatches",
|
|
87
|
+
"overview.extraOrphan.slug": "never reported back",
|
|
88
|
+
"overview.extraOrphan.where": "Extra · Recovery"
|
|
89
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pact.title": "Promises",
|
|
3
|
+
"pact.sub": "The rules this project promised to follow, and which ones are in doubt right now.",
|
|
4
|
+
"pact.none": "No ledger yet",
|
|
5
|
+
"pact.noneHint": "A promise is never invented here. It comes from a decision you already settled - a run's invariants, a grill or brainstorm constraint, or your own words.",
|
|
6
|
+
"pact.cmdHarvestWhy": "Harvesting reads your runs and asks you about each promise, so it costs model tokens. This panel can re-check and re-render for free, but it cannot hold that conversation.",
|
|
7
|
+
"pact.cmdReconcileWhy": "Deciding whether a promise still stands is a conversation, not a command. This panel re-checks; the lane reconciles.",
|
|
8
|
+
"pact.summary": "Ledger",
|
|
9
|
+
"pact.field.ledger": "Ledger file",
|
|
10
|
+
"pact.field.doc": "Readable copy",
|
|
11
|
+
"pact.docMissing": "PACT.md has not been rendered yet. Press Re-render PACT.md - it is derived from the ledger and costs nothing.",
|
|
12
|
+
"pact.uncheckableNote": "UNCHECKABLE is the honest state, not a failure: it means nothing cheap proves this promise. It never counts against you.",
|
|
13
|
+
"pact.field.anchors": "Lives in",
|
|
14
|
+
"pact.field.check": "Proved by",
|
|
15
|
+
"pact.field.checkManual": "nothing cheap - a person has to look",
|
|
16
|
+
"pact.field.origin": "Came from",
|
|
17
|
+
"pact.field.confidence": "Confidence",
|
|
18
|
+
"pact.field.verified": "Last verified at",
|
|
19
|
+
"pact.lastCheckFailed": "The check last ran on {at} and failed.",
|
|
20
|
+
"pact.alsoFlagged": "Also flagged by",
|
|
21
|
+
"pact.alsoBoundary": "{area} is not somewhere ORC will act alone",
|
|
22
|
+
"pact.alsoAftermath": "the run {slug} shows churn in this area",
|
|
23
|
+
"pact.recheckOne": "Re-check this one",
|
|
24
|
+
"pact.recheckAll": "Re-check 1 promise",
|
|
25
|
+
"pact.recheckAllPlural": "Re-check {n} promises",
|
|
26
|
+
"pact.syncDoc": "Re-render PACT.md",
|
|
27
|
+
"pact.syncOk": "PACT.md re-rendered from the ledger",
|
|
28
|
+
"pact.history": "Earlier checks",
|
|
29
|
+
"pact.confirmTitle": "Re-check now?",
|
|
30
|
+
"pact.confirmBody": "This runs the promise's own check. Here is exactly what will run:",
|
|
31
|
+
"pact.confirmBodyPlural": "This runs each promise's own check. Here is exactly what will run:",
|
|
32
|
+
"pact.confirmNote": "These are commands you wrote, in your own repo. A promise whose check passes is re-anchored to the current commit; nothing else is changed, and nothing is ever retired for you.",
|
|
33
|
+
"pact.confirmGo": "Run the checks",
|
|
34
|
+
"pact.checkDone": "Checks finished - everything that passed was re-anchored",
|
|
35
|
+
"pact.checkFound": "Checks finished - at least one promise does not hold"
|
|
36
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"runs.title": "Runs",
|
|
3
|
+
"runs.sub": "Everything ORC has recorded, newest first. Click a run to open it in place.",
|
|
4
|
+
"runs.empty": "No runs recorded yet.",
|
|
5
|
+
"runs.filterAll": "All",
|
|
6
|
+
"runs.filterWaiting": "Waiting",
|
|
7
|
+
"runs.filterDone": "Done",
|
|
8
|
+
"runs.filterOther": "Other",
|
|
9
|
+
"runs.search": "Filter by slug or lane…",
|
|
10
|
+
"runs.count": "{shown} of {total}",
|
|
11
|
+
"runs.noMatch": "No run matches that filter.",
|
|
12
|
+
"runs.collapseAll": "Close all",
|
|
13
|
+
"runs.openFail": "Could not open that run.",
|
|
14
|
+
"runs.tab.resume": "Resume",
|
|
15
|
+
"runs.tab.state": "State of play",
|
|
16
|
+
"runs.tab.checkpoint": "Checkpoint",
|
|
17
|
+
"runs.tab.trace": "Trace",
|
|
18
|
+
"runs.tab.mock": "Mock example",
|
|
19
|
+
"runs.tab.files": "Files",
|
|
20
|
+
"runs.resume.note": "Paste this into a fresh Claude Code session to pick the run back up.",
|
|
21
|
+
"runs.resume.copy": "Copy prompt",
|
|
22
|
+
"runs.resume.copied": "Resume prompt copied",
|
|
23
|
+
"runs.trace.note": "The tail of this run's behavior trace. Traces are permanent and never auto-pruned.",
|
|
24
|
+
"runs.mock.none": "Not generated for this run.",
|
|
25
|
+
"runs.mock.noneHint": "That is normal: mock examples are written only after a green verify, and only when config `mock_example` is `on` (or you accept the `ask` offer).",
|
|
26
|
+
"runs.mock.readonly": "Read-only. This panel never runs a mock example — it is arbitrary project code.",
|
|
27
|
+
"runs.field.slug": "slug",
|
|
28
|
+
"runs.field.status": "status",
|
|
29
|
+
"runs.field.lane": "lane",
|
|
30
|
+
"runs.field.phase": "phase",
|
|
31
|
+
"runs.field.wave": "wave",
|
|
32
|
+
"runs.field.folder": "folder",
|
|
33
|
+
"runs.field.updated": "updated",
|
|
34
|
+
"runs.field.files": "files",
|
|
35
|
+
"runs.field.written": "written",
|
|
36
|
+
"runs.emptyFolder": "(empty folder)",
|
|
37
|
+
"runs.after.signals": "What happened afterwards",
|
|
38
|
+
"runs.filterClosed": "Closed",
|
|
39
|
+
"runs.close.button": "Mark as done",
|
|
40
|
+
"runs.close.reopen": "Reopen",
|
|
41
|
+
"runs.close.hint": "This run still has a resume pointer, so everything counts it as waiting.",
|
|
42
|
+
"runs.close.confirmTitle": "Mark this run as done?",
|
|
43
|
+
"runs.close.confirmBody": "You are saying you are finished with {slug}. It stops counting as waiting, and `orc resume` stops offering it.",
|
|
44
|
+
"runs.close.moves": "RESUME.md is MOVED to RESUME.closed.md and the reason is recorded. Nothing is deleted, and Reopen puts it back.",
|
|
45
|
+
"runs.close.reasonPlaceholder": "why you are finished with it",
|
|
46
|
+
"runs.close.needReason": "A reason is required — a run closed with no recorded reason is a state nobody can audit.",
|
|
47
|
+
"runs.close.done": "Marked as done.",
|
|
48
|
+
"runs.close.reopened": "Reopened — it is waiting again.",
|
|
49
|
+
"runs.close.failed": "That did not go through.",
|
|
50
|
+
"runs.close.was": "closed: {reason}"
|
|
51
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"settings.title": "Settings",
|
|
3
|
+
"settings.sub": "Every key `orc config` knows. Each change shells the real command, so the CLI's validators decide.",
|
|
4
|
+
"settings.profiles": "Profiles",
|
|
5
|
+
"settings.recommend": "Recommend a profile",
|
|
6
|
+
"settings.filter": "Filter keys… (press / )",
|
|
7
|
+
"settings.filterAria": "Filter settings by key or description",
|
|
8
|
+
"settings.changedOnly": "Changed only ({n})",
|
|
9
|
+
"settings.changedTitle": "Show only keys whose value differs from the default.",
|
|
10
|
+
"settings.changedNone": "Nothing is overridden yet — every key is at its default.",
|
|
11
|
+
"settings.collapseAll": "Collapse all",
|
|
12
|
+
"settings.expandAll": "Expand all",
|
|
13
|
+
"settings.matches": "{n} match",
|
|
14
|
+
"settings.matchesPlural": "{n} matches",
|
|
15
|
+
"settings.keys": "{n} key",
|
|
16
|
+
"settings.keysPlural": "{n} keys",
|
|
17
|
+
"settings.ofTotal": "{n} of {total}",
|
|
18
|
+
"settings.readFail": "Could not read the config.",
|
|
19
|
+
"settings.file.title": "Override file",
|
|
20
|
+
"settings.file.file": "file",
|
|
21
|
+
"settings.file.state": "state",
|
|
22
|
+
"settings.file.exists": "exists — only changed keys are written here",
|
|
23
|
+
"settings.file.absent": "not created yet (every key is at its default)",
|
|
24
|
+
"settings.file.traceNote": "Behavior-trace logging is permanently ON and is not configurable. Every run writes a trace; only its folder (log_dir) is a setting.",
|
|
25
|
+
"settings.tier.common": "Common",
|
|
26
|
+
"settings.tier.fable5": "Fable 5 role override",
|
|
27
|
+
"settings.tier.advanced": "Advanced",
|
|
28
|
+
"settings.tierDesc.common": "The keys most runs actually touch. If you change one thing, it is probably here.",
|
|
29
|
+
"settings.tierDesc.fable5": "Per-role Fable 5 overrides. The whole block goes inert while opus5_only is on — that is the precedence rule, not a bug.",
|
|
30
|
+
"settings.tierDesc.advanced": "Everything else ORC knows. The defaults are deliberate; change one when you have a reason for it.",
|
|
31
|
+
"settings.inert": "inert",
|
|
32
|
+
"settings.shadowed": "shadowed",
|
|
33
|
+
"settings.handEdited.title": "Hand-edited keys",
|
|
34
|
+
"settings.handEdited.note": "These are not in the config registry, so `orc config set` refuses them and this panel will not write them. rubric_bands_override is the designed case: it is hand-written by intent. Edit the YAML file directly.",
|
|
35
|
+
"settings.handEdited.readonly": "read-only here — hand-edit orc.config.yaml",
|
|
36
|
+
"settings.ladder.title": "Score → model ladder",
|
|
37
|
+
"settings.ladder.opus5": "opus5_only is ON — executors use the fixed 3-band effort ladder. It outranks the default table, rubric_bands_override, and the whole fable5_* block.",
|
|
38
|
+
"settings.ladder.override": "A hand-written rubric_bands_override is in the file. It replaces the default table (and is itself outranked by opus5_only).",
|
|
39
|
+
"settings.ladder.default": "The default 8-band table. Tables resolve highest-wins: opus5_only > rubric_bands_override > this one.",
|
|
40
|
+
"settings.ladder.note": "Read-only — a diagram, not an editor. This comes from the CLI's own table, so the panel adds no extra copy of it.",
|
|
41
|
+
"profiles.title": "Config profiles",
|
|
42
|
+
"profiles.note": "A profile writes only existing, validated keys — nothing it sets is something you could not set yourself.",
|
|
43
|
+
"profiles.apply": "Apply",
|
|
44
|
+
"profiles.wouldChange": "would change: {list}",
|
|
45
|
+
"profiles.noChange": "this repo is already on that profile — nothing would change",
|
|
46
|
+
"recommend.title": "Recommended profile",
|
|
47
|
+
"recommend.note": "Read-only: this looked at the repo and suggests one profile. Nothing was changed.",
|
|
48
|
+
"recommend.applyIt": "Apply {name}"
|
|
49
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"stats.title": "Stats",
|
|
3
|
+
"stats.sub": "Counted from the trace filenames — no model, instant, free.",
|
|
4
|
+
"stats.empty": "No traces yet.",
|
|
5
|
+
"stats.emptyHint": "{dir} — run any ORC lane and they appear here.",
|
|
6
|
+
"stats.runs": "Runs",
|
|
7
|
+
"stats.dispatches": "Subagents dispatched",
|
|
8
|
+
"stats.downgrades": "Model downgrades",
|
|
9
|
+
"stats.downgradesNote": "a dispatch that ran below its pin",
|
|
10
|
+
"stats.lanes": "Lanes",
|
|
11
|
+
"stats.agents": "Subagents",
|
|
12
|
+
"stats.health": "Health",
|
|
13
|
+
"stats.unfinished": "runs that never finished",
|
|
14
|
+
"stats.unknownLane": "traces with no lane in the name",
|
|
15
|
+
"stats.logDir": "log dir",
|
|
16
|
+
"stats.note": "Counts only what traces record. /orc-retro and /orc-explain never write one, so they never appear here. Nothing auto-prunes traces.",
|
|
17
|
+
"stats.tab.usage": "Usage",
|
|
18
|
+
"stats.tab.cost": "Cost",
|
|
19
|
+
"cost.plan": "Which plan",
|
|
20
|
+
"cost.planPlaceholder": "path to a plan file",
|
|
21
|
+
"cost.browse": "Browse",
|
|
22
|
+
"cost.forecast": "Forecast",
|
|
23
|
+
"cost.planOnly": "A forecast needs a plan, not a sentence. Forecasting from a description is guessing, and a guess that looks calculated is worse than no answer.",
|
|
24
|
+
"cost.title": "What this run would cost",
|
|
25
|
+
"cost.sub": "{tasks} tasks, {waves} waves.",
|
|
26
|
+
"cost.noForecast": "No forecast yet",
|
|
27
|
+
"cost.noForecastHint": "Pick a plan file above. With no past runs to learn from there is nothing to forecast, and numbers will not be invented.",
|
|
28
|
+
"cost.calibrateWhy": "This reads the traces and usage data already on your disk. No model, no network, no cost.",
|
|
29
|
+
"cost.notPossible": "not possible for this plan",
|
|
30
|
+
"cost.legend.in": "fresh input",
|
|
31
|
+
"cost.legend.cw": "cache write",
|
|
32
|
+
"cost.legend.cr": "cache read",
|
|
33
|
+
"cost.legend.out": "output",
|
|
34
|
+
"cost.cacheNote": "Cache reads are usually the largest part of the bar and about a tenth of the price. That is why they are shown separately instead of folded into one number.",
|
|
35
|
+
"cost.lowConfidence": "1 band has fewer than {min} past runs behind it, so the top of its range is soft.",
|
|
36
|
+
"cost.lowConfidencePlural": "{n} bands have fewer than {min} past runs behind them, so the top of their ranges is soft.",
|
|
37
|
+
"cost.priceStale": "The price table is dated {as_of} and is {days} days old. Treat every money figure here as approximate.",
|
|
38
|
+
"cost.noTranscripts": "No local usage data was readable, so this is measured from ORC's own traces only. Money and quota are unavailable.",
|
|
39
|
+
"cost.unattributed": "1 block of usage could not be matched to a task. It is counted here anyway, never dropped.",
|
|
40
|
+
"cost.unattributedPlural": "{n} blocks of usage could not be matched to a task. They are counted here anyway, never dropped.",
|
|
41
|
+
"cost.contextTitle": "Context risk",
|
|
42
|
+
"cost.contextIntro": "A run does not only cost money - it can run out of room and get compacted, which quietly lowers quality and shows up in no spend tool.",
|
|
43
|
+
"cost.contextRow": "{agent} - about {peak} of a {window} window ({pct}%)",
|
|
44
|
+
"cost.contextOpenUsage": "See what is in the slice",
|
|
45
|
+
"cost.contextHint": "Three ways out: split the task, drop a page nobody reads from the slice, or move it to a band with more room.",
|
|
46
|
+
"cost.bands": "Per band",
|
|
47
|
+
"cost.col.band": "band",
|
|
48
|
+
"cost.col.model": "model",
|
|
49
|
+
"cost.col.n": "tasks",
|
|
50
|
+
"cost.col.in": "in",
|
|
51
|
+
"cost.col.cw": "cache-w",
|
|
52
|
+
"cost.col.cr": "cache-r",
|
|
53
|
+
"cost.col.samples": "samples",
|
|
54
|
+
"cost.col.out": "out",
|
|
55
|
+
"cost.bandsNote": "A row with few samples is shown faded. Every figure is a middle estimate from past runs, not a quote.",
|
|
56
|
+
"cost.laneWhy": "Want the full breakdown, the lane comparison and the what-to-do-about-it question? That is the lane.",
|
|
57
|
+
"cost.unit.tokens": "Tokens",
|
|
58
|
+
"cost.unit.quota": "Quota",
|
|
59
|
+
"cost.unit.usd": "USD",
|
|
60
|
+
"cost.quotaNa": "plan not set",
|
|
61
|
+
"cost.ratesTitle": "What your past runs cost",
|
|
62
|
+
"cost.rates.calibrated": "Measured",
|
|
63
|
+
"cost.rates.joined": "Dispatches matched",
|
|
64
|
+
"cost.rates.transcripts": "Usage files read",
|
|
65
|
+
"cost.rates.unreadable": "none readable",
|
|
66
|
+
"cost.rates.unattributed": "Unmatched blocks",
|
|
67
|
+
"cost.docs": "Documents",
|
|
68
|
+
"cost.docsNote": "A /orc-doc document spans several runs, so `orc budget actual` cannot answer for one. Open a row for its run map and what it has cost so far."
|
|
69
|
+
}
|