@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,254 @@
|
|
|
1
|
+
/* panels/docs.css — orc ui
|
|
2
|
+
The section ribbon, the health bars, the wave preview.
|
|
3
|
+
|
|
4
|
+
The <link> ORDER in app.html is the cascade order, and the numeric
|
|
5
|
+
prefix is that order. No @import: it would carry no session token and
|
|
6
|
+
401. */
|
|
7
|
+
|
|
8
|
+
/* ============================================================ DOCS (v0.48.0) */
|
|
9
|
+
|
|
10
|
+
/* --- THE RIBBON — the one picture this panel is for ---------------------- */
|
|
11
|
+
/* Each segment's width is `lines × PX` with a floor, solved in JS from the box
|
|
12
|
+
size, so the SVG carries an INTRINSIC width. The wrapper therefore SCROLLS
|
|
13
|
+
rather than squeezing a 40-section document into unreadable slivers — the
|
|
14
|
+
ch-rail rule, and the reason the viewBox is never stretched. Transparent
|
|
15
|
+
track, both syntaxes: neither falls back to the other. */
|
|
16
|
+
.doc-ribbon-wrap {
|
|
17
|
+
overflow-x: auto;
|
|
18
|
+
overflow-y: hidden;
|
|
19
|
+
padding-bottom: var(--sp-2);
|
|
20
|
+
scrollbar-width: thin;
|
|
21
|
+
scrollbar-color: var(--line) transparent;
|
|
22
|
+
}
|
|
23
|
+
.doc-ribbon-wrap::-webkit-scrollbar { height: 8px; }
|
|
24
|
+
.doc-ribbon-wrap::-webkit-scrollbar-track { background: transparent; }
|
|
25
|
+
.doc-ribbon-wrap::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
|
|
26
|
+
.doc-ribbon { display: block; }
|
|
27
|
+
|
|
28
|
+
.doc-seg { cursor: pointer; outline: none; }
|
|
29
|
+
.doc-seg-box { fill: var(--surface-3); stroke: var(--line-soft); stroke-width: 1; }
|
|
30
|
+
.doc-seg-n { fill: var(--text-faint); font: 500 9px/1 var(--mono, ui-monospace, monospace); }
|
|
31
|
+
.doc-seg:hover .doc-seg-box,
|
|
32
|
+
.doc-seg:focus-visible .doc-seg-box { stroke: var(--accent); stroke-width: 2; }
|
|
33
|
+
|
|
34
|
+
/* The six states the CLI can emit, and no others. An `open` section is drawn
|
|
35
|
+
in the warning colour because it is a REAL state of the document — something
|
|
36
|
+
nobody has decided yet — not a defect and not an absence. `unconfirmed` is
|
|
37
|
+
drawn the same way and for the same reason: it is an honest answer about a
|
|
38
|
+
file nobody validated, not a defect in it. */
|
|
39
|
+
.doc-seg-planned .doc-seg-box { fill: var(--surface-3); stroke-dasharray: 3 3; }
|
|
40
|
+
.doc-seg-written .doc-seg-box { fill: var(--accent-dim); stroke: var(--accent-dim); }
|
|
41
|
+
.doc-seg-checked .doc-seg-box { fill: var(--ok); stroke: var(--ok); }
|
|
42
|
+
.doc-seg-useredited .doc-seg-box,
|
|
43
|
+
.doc-seg-user-edited .doc-seg-box { fill: var(--warn-wash); stroke: var(--warn); }
|
|
44
|
+
.doc-seg-open .doc-seg-box { fill: var(--warn-wash); stroke: var(--warn); stroke-dasharray: 3 3; }
|
|
45
|
+
.doc-seg-unconfirmed .doc-seg-box { fill: var(--warn-wash); stroke: var(--warn); stroke-dasharray: 1 2; }
|
|
46
|
+
/* A findings marker is STATIC. A blinking error is a reduced-motion hazard and
|
|
47
|
+
reads as an urgency this panel has no right to imply. */
|
|
48
|
+
.doc-seg-mark { fill: var(--bad); }
|
|
49
|
+
|
|
50
|
+
/* Two SEPARATE animations, for the reason the flow stepper needed two: the
|
|
51
|
+
entrance places geometry ONCE and fills `backwards`, the pulse carries colour
|
|
52
|
+
forever. One animation doing both freezes the geometry when the other is
|
|
53
|
+
capped. */
|
|
54
|
+
.doc-seg { animation: doc-seg-in .26s ease-out backwards; }
|
|
55
|
+
@keyframes doc-seg-in { from { opacity: 0; transform: scaleY(.4); transform-origin: center; } to { opacity: 1; transform: none; } }
|
|
56
|
+
/* The travelling sheen loops across the WRITTEN segments only — a long, mostly
|
|
57
|
+
idle cycle, like the flow stepper's sweep. */
|
|
58
|
+
.doc-seg-written .doc-seg-box { animation: doc-sheen 9s ease-in-out infinite; }
|
|
59
|
+
@keyframes doc-sheen { 0%, 82% { opacity: .85; } 90% { opacity: 1; } 100% { opacity: .85; } }
|
|
60
|
+
/* A section the human edited gets a soft pulse in its OWN colour, so it reads
|
|
61
|
+
as "yours", never as "wrong". */
|
|
62
|
+
.doc-seg-user-edited .doc-seg-box { animation: doc-mine 3.4s ease-in-out infinite; }
|
|
63
|
+
@keyframes doc-mine { 0%, 100% { stroke-opacity: .55; } 50% { stroke-opacity: 1; } }
|
|
64
|
+
|
|
65
|
+
.doc-legend { gap: var(--sp-3); flex-wrap: wrap; }
|
|
66
|
+
.doc-legend-item { display: inline-flex; align-items: center; gap: 6px; }
|
|
67
|
+
.doc-legend-swatch {
|
|
68
|
+
width: 14px; height: 10px; border-radius: 2px;
|
|
69
|
+
background: var(--surface-3); border: 1px solid var(--line-soft);
|
|
70
|
+
}
|
|
71
|
+
.doc-legend-swatch.doc-seg-written { background: var(--accent-dim); border-color: var(--accent-dim); }
|
|
72
|
+
.doc-legend-swatch.doc-seg-checked { background: var(--ok); border-color: var(--ok); }
|
|
73
|
+
.doc-legend-swatch.doc-seg-user-edited { background: var(--warn-wash); border-color: var(--warn); }
|
|
74
|
+
.doc-legend-swatch.doc-seg-open { background: var(--warn-wash); border-color: var(--warn); border-style: dashed; }
|
|
75
|
+
.doc-legend-swatch.doc-seg-unconfirmed { background: var(--warn-wash); border-color: var(--warn); border-style: dotted; }
|
|
76
|
+
|
|
77
|
+
/* --- sections + reveal ---------------------------------------------------- */
|
|
78
|
+
.doc-rows { display: grid; gap: var(--sp-1); }
|
|
79
|
+
.doc-reveal {
|
|
80
|
+
border-left: 3px solid var(--line);
|
|
81
|
+
padding-left: var(--sp-3);
|
|
82
|
+
max-height: 340px;
|
|
83
|
+
overflow: auto;
|
|
84
|
+
scrollbar-width: thin;
|
|
85
|
+
scrollbar-color: var(--line) transparent;
|
|
86
|
+
}
|
|
87
|
+
.doc-reveal::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
88
|
+
.doc-reveal::-webkit-scrollbar-track { background: transparent; }
|
|
89
|
+
.doc-reveal::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
|
|
90
|
+
|
|
91
|
+
/* --- health bars ---------------------------------------------------------- */
|
|
92
|
+
.doc-bars { display: grid; gap: var(--sp-1); margin-top: var(--sp-2); }
|
|
93
|
+
.doc-bar-row { display: grid; grid-template-columns: minmax(0, 22ch) minmax(0, 1fr) 3ch; align-items: center; gap: var(--sp-2); }
|
|
94
|
+
.doc-bar-label { font-size: 12px; color: var(--text-dim); overflow-wrap: anywhere; }
|
|
95
|
+
.doc-bar { height: 10px; border-radius: 3px; overflow: hidden; background: var(--surface-3); }
|
|
96
|
+
.doc-bar-seg { width: var(--w); height: 100%; background: var(--warn); animation: doc-grow .45s ease-out backwards; }
|
|
97
|
+
@keyframes doc-grow { from { width: 0; } to { width: var(--w); } }
|
|
98
|
+
.doc-bar-n { text-align: right; font: 500 12px/1 var(--mono, ui-monospace, monospace); color: var(--text-dim); }
|
|
99
|
+
|
|
100
|
+
/* --- the wave preview ----------------------------------------------------- */
|
|
101
|
+
.doc-waves { display: grid; gap: var(--sp-3); margin-top: var(--sp-2); }
|
|
102
|
+
.doc-wave {
|
|
103
|
+
display: grid;
|
|
104
|
+
grid-template-columns: minmax(0, 9ch) minmax(0, 1fr);
|
|
105
|
+
gap: var(--sp-3);
|
|
106
|
+
align-items: start;
|
|
107
|
+
animation: doc-wave-in .3s ease-out backwards;
|
|
108
|
+
animation-delay: calc(var(--i) * 70ms);
|
|
109
|
+
}
|
|
110
|
+
@keyframes doc-wave-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
|
|
111
|
+
.doc-wave-n { font: 600 12px/1.6 var(--mono, ui-monospace, monospace); color: var(--text-faint); }
|
|
112
|
+
.doc-wave-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--sp-2); }
|
|
113
|
+
.doc-agent {
|
|
114
|
+
border: 1px solid var(--line-soft);
|
|
115
|
+
border-radius: var(--radius-sm);
|
|
116
|
+
padding: var(--sp-2) var(--sp-3);
|
|
117
|
+
display: grid;
|
|
118
|
+
gap: 6px;
|
|
119
|
+
}
|
|
120
|
+
.doc-agent.oversized { border-color: var(--bad); }
|
|
121
|
+
.doc-agent-name { font-size: 11px; color: var(--text-faint); overflow-wrap: anywhere; }
|
|
122
|
+
.doc-agent-secs { font-size: 12px; color: var(--text-dim); overflow-wrap: anywhere; }
|
|
123
|
+
|
|
124
|
+
/* --- the SECTION FILES (v0.49.0) ------------------------------------------
|
|
125
|
+
sections/ is the source of truth, so this list is the one that has to read
|
|
126
|
+
well before a single compile has ever run. A `planned` row KEEPS ITS SLOT:
|
|
127
|
+
"not written yet" is an answer, and a list that hides it cannot be designed. */
|
|
128
|
+
.doc-part {
|
|
129
|
+
border: 1px solid var(--line-soft); border-radius: var(--r-2);
|
|
130
|
+
background: var(--surface-2); padding: var(--sp-2); display: grid; gap: 4px;
|
|
131
|
+
}
|
|
132
|
+
.doc-part-head { display: flex; align-items: center; gap: var(--sp-2); }
|
|
133
|
+
.doc-subpart {
|
|
134
|
+
display: flex; align-items: center; gap: var(--sp-2);
|
|
135
|
+
padding-left: var(--sp-4); color: var(--text-dim); font-size: var(--fs-sm);
|
|
136
|
+
}
|
|
137
|
+
.doc-subpart-mark { color: var(--text-faint); font-family: var(--mono, ui-monospace, monospace); }
|
|
138
|
+
.doc-wave-strip { margin-bottom: var(--sp-2); flex-wrap: wrap; }
|
|
139
|
+
|
|
140
|
+
/* ── v0.49.2 — house rules, the run map, and what it cost ──────────────────
|
|
141
|
+
No colour token is defined here: every one comes from 00-tokens.css on bare
|
|
142
|
+
:root, which is what keeps the light/dark/system trio honest. */
|
|
143
|
+
|
|
144
|
+
.rule-group { margin-top: var(--sp-3); }
|
|
145
|
+
.rule-group-head {
|
|
146
|
+
font-family: var(--mono);
|
|
147
|
+
font-size: 12px;
|
|
148
|
+
color: var(--text-dim);
|
|
149
|
+
margin-bottom: var(--sp-2);
|
|
150
|
+
}
|
|
151
|
+
/* v0.49.5 — THE LEDGER IS A TEXT CONFIG, so the control is a textarea and not a
|
|
152
|
+
form. It is monospaced because the file has a shape (three headings) the user
|
|
153
|
+
is editing directly, and it resizes vertically because a P0 is as long as it
|
|
154
|
+
needs to be. */
|
|
155
|
+
.rule-editor {
|
|
156
|
+
display: block;
|
|
157
|
+
width: 100%;
|
|
158
|
+
box-sizing: border-box;
|
|
159
|
+
margin-top: var(--sp-3);
|
|
160
|
+
min-height: 320px;
|
|
161
|
+
resize: vertical;
|
|
162
|
+
padding: var(--sp-3);
|
|
163
|
+
font-family: var(--mono);
|
|
164
|
+
font-size: 12.5px;
|
|
165
|
+
line-height: 1.6;
|
|
166
|
+
tab-size: 2;
|
|
167
|
+
color: var(--text);
|
|
168
|
+
background: var(--surface-2);
|
|
169
|
+
border: 1px solid var(--line);
|
|
170
|
+
border-radius: var(--radius-sm);
|
|
171
|
+
/* Both syntaxes, because neither falls back to the other. */
|
|
172
|
+
scrollbar-width: thin;
|
|
173
|
+
scrollbar-color: var(--line) transparent;
|
|
174
|
+
}
|
|
175
|
+
.rule-editor::-webkit-scrollbar { width: 9px; }
|
|
176
|
+
.rule-editor::-webkit-scrollbar-track { background: transparent; }
|
|
177
|
+
.rule-editor::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
|
|
178
|
+
.rule-editor:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
|
|
179
|
+
.rule-path {
|
|
180
|
+
font-family: var(--mono);
|
|
181
|
+
font-size: 11px;
|
|
182
|
+
margin-top: var(--sp-2);
|
|
183
|
+
overflow-x: auto;
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
}
|
|
186
|
+
/* A frozen block, VERBATIM — the user's own words, wrapped but never re-flowed
|
|
187
|
+
into ORC's voice. */
|
|
188
|
+
.rule-block {
|
|
189
|
+
margin: 0;
|
|
190
|
+
padding: var(--sp-2) var(--sp-3);
|
|
191
|
+
border-left: 2px solid var(--line);
|
|
192
|
+
font-family: var(--mono);
|
|
193
|
+
font-size: 12px;
|
|
194
|
+
line-height: 1.6;
|
|
195
|
+
color: var(--text);
|
|
196
|
+
white-space: pre-wrap;
|
|
197
|
+
overflow-wrap: anywhere;
|
|
198
|
+
}
|
|
199
|
+
.rule-block-new { border-left-color: var(--warn); }
|
|
200
|
+
.rule-boundary { margin-top: var(--sp-3); border-top: 1px solid var(--line-soft); padding-top: var(--sp-2); }
|
|
201
|
+
.rule-drift { margin-top: var(--sp-3); }
|
|
202
|
+
.rule-drift-row {
|
|
203
|
+
font-family: var(--mono);
|
|
204
|
+
font-size: 12px;
|
|
205
|
+
color: var(--text-dim);
|
|
206
|
+
padding: 2px 0;
|
|
207
|
+
margin-top: var(--sp-2);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/* The wave table and the per-section cost table share one shape. Wide content
|
|
211
|
+
scrolls INSIDE its own box; the page body never scrolls sideways. */
|
|
212
|
+
.fc-table { margin-top: var(--sp-3); overflow-x: auto; }
|
|
213
|
+
.fc-row {
|
|
214
|
+
display: grid;
|
|
215
|
+
grid-template-columns: 78px minmax(0, 1fr) 72px 90px;
|
|
216
|
+
gap: var(--sp-3);
|
|
217
|
+
align-items: center;
|
|
218
|
+
padding: var(--sp-2) 0;
|
|
219
|
+
border-top: 1px solid var(--line-soft);
|
|
220
|
+
font-size: 12.5px;
|
|
221
|
+
}
|
|
222
|
+
.fc-wave { font-family: var(--mono); color: var(--text-dim); }
|
|
223
|
+
.fc-secs { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
224
|
+
.fc-lines, .fc-agents { font-family: var(--mono); color: var(--text-dim); text-align: right; }
|
|
225
|
+
/* A section nothing could be joined to KEEPS ITS SLOT and reads as unknown —
|
|
226
|
+
an em dash, never a zero. */
|
|
227
|
+
.fc-row-unknown .fc-agents { color: var(--text-faint); }
|
|
228
|
+
|
|
229
|
+
/* FOUR TOKEN KINDS, NEVER BLENDED. cache-read is usually the largest count at
|
|
230
|
+
about a tenth of the price, which is the whole reason it stays its own band. */
|
|
231
|
+
.tok-bar-wrap { margin-top: var(--sp-3); }
|
|
232
|
+
.tok-bar {
|
|
233
|
+
display: flex;
|
|
234
|
+
height: 12px;
|
|
235
|
+
border-radius: 6px;
|
|
236
|
+
overflow: hidden;
|
|
237
|
+
background: var(--surface-2);
|
|
238
|
+
}
|
|
239
|
+
.tok-seg { width: var(--w); min-width: 0; }
|
|
240
|
+
.tok-input { background: var(--accent); }
|
|
241
|
+
.tok-cache-write { background: var(--warn); }
|
|
242
|
+
.tok-cache-read { background: var(--idle); }
|
|
243
|
+
.tok-output { background: var(--ok); }
|
|
244
|
+
.tok-legend {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-wrap: wrap;
|
|
247
|
+
gap: var(--sp-3);
|
|
248
|
+
margin-top: var(--sp-2);
|
|
249
|
+
font-family: var(--mono);
|
|
250
|
+
font-size: 11.5px;
|
|
251
|
+
color: var(--text-dim);
|
|
252
|
+
}
|
|
253
|
+
.tok-legend-item { display: inline-flex; align-items: center; gap: 6px; }
|
|
254
|
+
.tok-dot { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* panels/experiment.css — orc ui
|
|
2
|
+
The lane list.
|
|
3
|
+
|
|
4
|
+
The <link> ORDER in app.html is the cascade order, and the numeric
|
|
5
|
+
prefix is that order. No @import: it would carry no session token and
|
|
6
|
+
401. */
|
|
7
|
+
|
|
8
|
+
/* --- Experiment ---------------------------------------------------------- */
|
|
9
|
+
|
|
10
|
+
.lane-list { display: flex; flex-direction: column; gap: var(--sp-2); }
|
|
11
|
+
.lane {
|
|
12
|
+
display: grid;
|
|
13
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
14
|
+
align-items: center;
|
|
15
|
+
gap: var(--sp-3);
|
|
16
|
+
padding: var(--sp-2) var(--sp-3);
|
|
17
|
+
border: 1px solid var(--line-soft);
|
|
18
|
+
border-radius: var(--radius-sm);
|
|
19
|
+
background: var(--surface-2);
|
|
20
|
+
transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
|
|
21
|
+
}
|
|
22
|
+
.lane:hover { border-color: var(--accent-dim); background: var(--surface-3); }
|
|
23
|
+
.lane-cmd { font-family: var(--mono); font-size: 13px; color: var(--accent); }
|