@litfamily/litopencode 1.0.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/.gitattributes +8 -0
- package/ATTRIBUTION.md +56 -0
- package/CHANGELOG.md +267 -0
- package/CODE_OF_CONDUCT.md +30 -0
- package/CONTRIBUTING.md +82 -0
- package/LICENSE +21 -0
- package/README-Ko-KR.md +252 -0
- package/README.md +252 -0
- package/SECURITY.md +36 -0
- package/SUPPORT.md +37 -0
- package/bin/litopencode +3 -0
- package/bin/litopencode.cjs +10 -0
- package/dist/activation-managed-prompts.d.ts +2 -0
- package/dist/activation-managed-prompts.js +51 -0
- package/dist/activation-primary-prompts.d.ts +2 -0
- package/dist/activation-primary-prompts.js +176 -0
- package/dist/activation-probe.d.ts +3 -0
- package/dist/activation-probe.js +19 -0
- package/dist/activation-prompt-utils.d.ts +6 -0
- package/dist/activation-prompt-utils.js +36 -0
- package/dist/activation-routing.d.ts +5 -0
- package/dist/activation-routing.js +340 -0
- package/dist/activation-workflow-prompts.d.ts +26 -0
- package/dist/activation-workflow-prompts.js +295 -0
- package/dist/activation.d.ts +24 -0
- package/dist/activation.js +152 -0
- package/dist/agents/defaults.d.ts +15 -0
- package/dist/agents/defaults.js +112 -0
- package/dist/agents/registry.d.ts +65 -0
- package/dist/agents/registry.js +319 -0
- package/dist/agents/specialists.d.ts +49 -0
- package/dist/agents/specialists.js +307 -0
- package/dist/agents/types.d.ts +55 -0
- package/dist/agents/types.js +4 -0
- package/dist/agents.d.ts +4 -0
- package/dist/agents.js +3 -0
- package/dist/benchmark.d.ts +94 -0
- package/dist/benchmark.js +172 -0
- package/dist/bounded-authority-hooks.d.ts +19 -0
- package/dist/bounded-authority-hooks.js +157 -0
- package/dist/bounded-authority.d.ts +184 -0
- package/dist/bounded-authority.js +825 -0
- package/dist/cache-metrics.d.ts +54 -0
- package/dist/cache-metrics.js +81 -0
- package/dist/cli/args.d.ts +5 -0
- package/dist/cli/args.js +415 -0
- package/dist/cli/auto-update.d.ts +117 -0
- package/dist/cli/auto-update.js +604 -0
- package/dist/cli/command-alias-ownership.d.ts +2 -0
- package/dist/cli/command-alias-ownership.js +14 -0
- package/dist/cli/command-aliases.d.ts +12 -0
- package/dist/cli/command-aliases.js +112 -0
- package/dist/cli/doctor.d.ts +2 -0
- package/dist/cli/doctor.js +175 -0
- package/dist/cli/host-capabilities.d.ts +12 -0
- package/dist/cli/host-capabilities.js +25 -0
- package/dist/cli/host-limits.d.ts +21 -0
- package/dist/cli/host-limits.js +83 -0
- package/dist/cli/install-config.d.ts +13 -0
- package/dist/cli/install-config.js +201 -0
- package/dist/cli/install-report.d.ts +2 -0
- package/dist/cli/install-report.js +180 -0
- package/dist/cli/install-tui.d.ts +12 -0
- package/dist/cli/install-tui.js +174 -0
- package/dist/cli/install.d.ts +2 -0
- package/dist/cli/install.js +264 -0
- package/dist/cli/json.d.ts +4 -0
- package/dist/cli/json.js +31 -0
- package/dist/cli/loop.d.ts +3 -0
- package/dist/cli/loop.js +135 -0
- package/dist/cli/lsp-capability.d.ts +17 -0
- package/dist/cli/lsp-capability.js +92 -0
- package/dist/cli/managed-skill-assets.d.ts +23 -0
- package/dist/cli/managed-skill-assets.js +117 -0
- package/dist/cli/model-catalog.d.ts +21 -0
- package/dist/cli/model-catalog.js +107 -0
- package/dist/cli/model-policy.d.ts +3 -0
- package/dist/cli/model-policy.js +143 -0
- package/dist/cli/model-routing.d.ts +5 -0
- package/dist/cli/model-routing.js +208 -0
- package/dist/cli/native-canonical-backup.d.ts +9 -0
- package/dist/cli/native-canonical-backup.js +96 -0
- package/dist/cli/native-canonical-cache.d.ts +9 -0
- package/dist/cli/native-canonical-cache.js +37 -0
- package/dist/cli/native-skill-install.d.ts +2 -0
- package/dist/cli/native-skill-install.js +128 -0
- package/dist/cli/native-skill-integrity.d.ts +25 -0
- package/dist/cli/native-skill-integrity.js +178 -0
- package/dist/cli/native-skill-tree.d.ts +12 -0
- package/dist/cli/native-skill-tree.js +104 -0
- package/dist/cli/native-skills.d.ts +22 -0
- package/dist/cli/native-skills.js +105 -0
- package/dist/cli/plugin-mutation.d.ts +4 -0
- package/dist/cli/plugin-mutation.js +89 -0
- package/dist/cli/scientific-visualization-dependencies.d.ts +18 -0
- package/dist/cli/scientific-visualization-dependencies.js +91 -0
- package/dist/cli/skill-loop.d.ts +3 -0
- package/dist/cli/skill-loop.js +649 -0
- package/dist/cli/types.d.ts +188 -0
- package/dist/cli/types.js +1 -0
- package/dist/cli/update-check.d.ts +2 -0
- package/dist/cli/update-check.js +15 -0
- package/dist/cli/update-notifier.d.ts +70 -0
- package/dist/cli/update-notifier.js +717 -0
- package/dist/cli/vendor-path-migration.d.ts +9 -0
- package/dist/cli/vendor-path-migration.js +96 -0
- package/dist/cli.d.ts +7 -0
- package/dist/cli.js +250 -0
- package/dist/commands.d.ts +331 -0
- package/dist/commands.js +600 -0
- package/dist/config-parser.d.ts +5 -0
- package/dist/config-parser.js +274 -0
- package/dist/config.d.ts +72 -0
- package/dist/config.js +157 -0
- package/dist/deliverable-hedge-guard.d.ts +26 -0
- package/dist/deliverable-hedge-guard.js +302 -0
- package/dist/durable-plan.d.ts +23 -0
- package/dist/durable-plan.js +349 -0
- package/dist/features.d.ts +828 -0
- package/dist/features.js +1109 -0
- package/dist/hooks.d.ts +17 -0
- package/dist/hooks.js +83 -0
- package/dist/ignition.d.ts +14 -0
- package/dist/ignition.js +33 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +30 -0
- package/dist/inert-data.d.ts +2 -0
- package/dist/inert-data.js +13 -0
- package/dist/knowledge.d.ts +98 -0
- package/dist/knowledge.js +961 -0
- package/dist/ledger.d.ts +181 -0
- package/dist/ledger.js +1179 -0
- package/dist/lit-fetch-classify.d.ts +8 -0
- package/dist/lit-fetch-classify.js +107 -0
- package/dist/lit-fetch-content.d.ts +2 -0
- package/dist/lit-fetch-content.js +43 -0
- package/dist/lit-fetch-http.d.ts +10 -0
- package/dist/lit-fetch-http.js +82 -0
- package/dist/lit-fetch-result.d.ts +2 -0
- package/dist/lit-fetch-result.js +65 -0
- package/dist/lit-fetch-ssrf.d.ts +9 -0
- package/dist/lit-fetch-ssrf.js +77 -0
- package/dist/lit-fetch-url.d.ts +3 -0
- package/dist/lit-fetch-url.js +28 -0
- package/dist/lit-fetch.d.ts +69 -0
- package/dist/lit-fetch.js +84 -0
- package/dist/lit-mark.d.ts +17 -0
- package/dist/lit-mark.js +129 -0
- package/dist/logger.d.ts +9 -0
- package/dist/logger.js +21 -0
- package/dist/model-route-policy.d.ts +25 -0
- package/dist/model-route-policy.js +129 -0
- package/dist/reader-facing-output.d.ts +3 -0
- package/dist/reader-facing-output.js +28 -0
- package/dist/rules/discovery.d.ts +36 -0
- package/dist/rules/discovery.js +270 -0
- package/dist/rules/engine.d.ts +43 -0
- package/dist/rules/engine.js +236 -0
- package/dist/rules/frontmatter.d.ts +16 -0
- package/dist/rules/frontmatter.js +179 -0
- package/dist/rules/glob.d.ts +12 -0
- package/dist/rules/glob.js +233 -0
- package/dist/rules/hooks.d.ts +25 -0
- package/dist/rules/hooks.js +75 -0
- package/dist/rules/output-style.d.ts +1 -0
- package/dist/rules/output-style.js +20 -0
- package/dist/scientific-visualization-banner.d.ts +1 -0
- package/dist/scientific-visualization-banner.js +2 -0
- package/dist/search-workflow-ideas.d.ts +67 -0
- package/dist/search-workflow-ideas.js +128 -0
- package/dist/secret-shapes.d.ts +9 -0
- package/dist/secret-shapes.js +63 -0
- package/dist/server.d.ts +6 -0
- package/dist/server.js +129 -0
- package/dist/session-lineage.d.ts +8 -0
- package/dist/session-lineage.js +12 -0
- package/dist/skill-loop/apply.d.ts +19 -0
- package/dist/skill-loop/apply.js +483 -0
- package/dist/skill-loop/config.d.ts +50 -0
- package/dist/skill-loop/config.js +215 -0
- package/dist/skill-loop/curator.d.ts +18 -0
- package/dist/skill-loop/curator.js +232 -0
- package/dist/skill-loop/ledger.d.ts +39 -0
- package/dist/skill-loop/ledger.js +344 -0
- package/dist/skill-loop/proposals.d.ts +48 -0
- package/dist/skill-loop/proposals.js +290 -0
- package/dist/skill-loop/storage.d.ts +72 -0
- package/dist/skill-loop/storage.js +817 -0
- package/dist/skill-loop/time.d.ts +2 -0
- package/dist/skill-loop/time.js +23 -0
- package/dist/skill-loop/transaction.d.ts +62 -0
- package/dist/skill-loop/transaction.js +836 -0
- package/dist/skill-loop/usage.d.ts +31 -0
- package/dist/skill-loop/usage.js +146 -0
- package/dist/skill-observer.d.ts +22 -0
- package/dist/skill-observer.js +1154 -0
- package/dist/skill-renames.d.ts +5 -0
- package/dist/skill-renames.js +8 -0
- package/dist/skills.d.ts +307 -0
- package/dist/skills.js +450 -0
- package/dist/stable-identity.d.ts +14 -0
- package/dist/stable-identity.js +15 -0
- package/dist/state.d.ts +25 -0
- package/dist/state.js +38 -0
- package/dist/strict-json.d.ts +2 -0
- package/dist/strict-json.js +94 -0
- package/dist/tool-guards.d.ts +34 -0
- package/dist/tool-guards.js +210 -0
- package/dist/tool-kit.d.ts +32 -0
- package/dist/tool-kit.js +75 -0
- package/dist/tools.d.ts +43 -0
- package/dist/tools.js +381 -0
- package/dist/uiux-visual-catalog.d.ts +50 -0
- package/dist/uiux-visual-catalog.js +103 -0
- package/dist/user-facing-markdown.d.ts +5 -0
- package/dist/user-facing-markdown.js +93 -0
- package/dist/workflow-families.d.ts +16 -0
- package/dist/workflow-families.js +95 -0
- package/docs/assets/cover.webp +0 -0
- package/docs/assets/litopencode-continuity-1600.webp +0 -0
- package/docs/assets/litopencode-ignition-1600.webp +0 -0
- package/docs/assets/readme/badge-license.svg +1 -0
- package/docs/assets/readme/badge-version.svg +1 -0
- package/docs/assets/readme/litopencode-clay-icon.png +0 -0
- package/docs/assets/readme/litopencode-wordmark.svg +5 -0
- package/docs/lit-mark.md +46 -0
- package/docs/migration.md +162 -0
- package/docs/privacy.md +82 -0
- package/docs/reference-Ko-KR.md +309 -0
- package/docs/reference.md +444 -0
- package/output-styles/asd-ste100-ko.md +41 -0
- package/output-styles/asd-ste100.md +40 -0
- package/output-styles/eli5-ko.md +13 -0
- package/output-styles/eli5.md +11 -0
- package/package.json +57 -0
- package/qa/fixtures/litfamily-harness-speed-v1.json +38 -0
- package/qa/harness-speed-contract.mjs +209 -0
- package/qa/harness-speed-v2-contract.mjs +213 -0
- package/qa/harness-speed-verdict.mjs +105 -0
- package/skills/agent-roster/SKILL.md +262 -0
- package/skills/autoconference/LICENSE +21 -0
- package/skills/autoconference/PROVENANCE.md +20 -0
- package/skills/autoconference/SKILL.md +125 -0
- package/skills/autoconference/assets/conference_template.md +76 -0
- package/skills/autoconference/assets/report_template.md +53 -0
- package/skills/autoconference/assets/synthesis_template.md +39 -0
- package/skills/autoconference/modes/analyze.md +255 -0
- package/skills/autoconference/modes/core.md +112 -0
- package/skills/autoconference/modes/debate.md +373 -0
- package/skills/autoconference/modes/plan.md +310 -0
- package/skills/autoconference/modes/resume.md +48 -0
- package/skills/autoconference/modes/ship.md +57 -0
- package/skills/autoconference/modes/survey.md +109 -0
- package/skills/autoconference/references/agent-prompts.md +134 -0
- package/skills/autoconference/references/conference-protocol.md +102 -0
- package/skills/autoconference/references/convergence-guide.md +167 -0
- package/skills/autoconference/references/core-principles.md +83 -0
- package/skills/autoconference/references/crash-recovery.md +104 -0
- package/skills/autoconference/references/results-logging.md +198 -0
- package/skills/autoconference/references/upstream-family-contract.md +130 -0
- package/skills/autoconference/references/visualization-guide.md +105 -0
- package/skills/autoconference/scripts/check_conference.sh +371 -0
- package/skills/autoconference/scripts/init_conference.py +625 -0
- package/skills/autoconference/scripts/style_presets.py +104 -0
- package/skills/autoresearch/LICENSE +21 -0
- package/skills/autoresearch/PROVENANCE.md +20 -0
- package/skills/autoresearch/SKILL.md +131 -0
- package/skills/autoresearch/assets/report_template.md +50 -0
- package/skills/autoresearch/assets/research_template.md +38 -0
- package/skills/autoresearch/assets/results_template.tsv +1 -0
- package/skills/autoresearch/modes/core.md +216 -0
- package/skills/autoresearch/modes/debug.md +235 -0
- package/skills/autoresearch/modes/fix.md +173 -0
- package/skills/autoresearch/modes/learn.md +91 -0
- package/skills/autoresearch/modes/plan.md +291 -0
- package/skills/autoresearch/modes/predict.md +266 -0
- package/skills/autoresearch/modes/reason.md +170 -0
- package/skills/autoresearch/modes/scenario.md +164 -0
- package/skills/autoresearch/modes/security.md +282 -0
- package/skills/autoresearch/modes/ship.md +49 -0
- package/skills/autoresearch/references/core-principles.md +80 -0
- package/skills/autoresearch/references/evaluator-contract.md +126 -0
- package/skills/autoresearch/references/investigation-techniques.md +205 -0
- package/skills/autoresearch/references/owasp-checklist.md +161 -0
- package/skills/autoresearch/references/persona-templates.md +232 -0
- package/skills/autoresearch/references/results-logging.md +96 -0
- package/skills/autoresearch/references/scenario-dimensions.md +178 -0
- package/skills/autoresearch/references/stride-model.md +196 -0
- package/skills/autoresearch/references/stuck-detection.md +107 -0
- package/skills/autoresearch/references/type-checklists.md +163 -0
- package/skills/autoresearch/references/upstream-family-contract.md +125 -0
- package/skills/autoresearch/references/visualization-guide.md +95 -0
- package/skills/autoresearch/scripts/check_progress.sh +272 -0
- package/skills/autoresearch/scripts/init_research.py +330 -0
- package/skills/autoresearch/scripts/run_with_deadline.py +164 -0
- package/skills/autoresearch/scripts/style_presets.py +104 -0
- package/skills/browser-drive/SKILL.md +133 -0
- package/skills/browser-drive/references/snapshot-act-loop.md +37 -0
- package/skills/browser-drive/scripts/capability-probe.mjs +262 -0
- package/skills/comment-checker/SKILL.md +171 -0
- package/skills/debugging/SKILL.md +202 -0
- package/skills/debugging/references/README.md +15 -0
- package/skills/debugging/references/escalation.md +43 -0
- package/skills/debugging/references/runtimes/README.md +17 -0
- package/skills/debugging/references/runtimes/bundled-js-binary.md +44 -0
- package/skills/debugging/references/runtimes/go.md +37 -0
- package/skills/debugging/references/runtimes/native-binary.md +44 -0
- package/skills/debugging/references/runtimes/node.md +43 -0
- package/skills/debugging/references/runtimes/python.md +41 -0
- package/skills/debugging/references/runtimes/rust.md +37 -0
- package/skills/debugging/references/tools.md +72 -0
- package/skills/deep-interview/SKILL.md +201 -0
- package/skills/doctor-installer/SKILL.md +252 -0
- package/skills/durable-litgoal/SKILL.md +248 -0
- package/skills/frontend-ui-ux/SKILL.md +70 -0
- package/skills/frontend-ui-ux/data/LICENSE +21 -0
- package/skills/frontend-ui-ux/data/PROVENANCE.json +1088 -0
- package/skills/frontend-ui-ux/data/THIRD-PARTY-NOTICE.txt +14 -0
- package/skills/frontend-ui-ux/data/design-intelligence.json +1 -0
- package/skills/frontend-ui-ux/references/_canonical-corpus/ATTRIBUTION.md +217 -0
- package/skills/frontend-ui-ux/references/_canonical-corpus/LICENSE +21 -0
- package/skills/frontend-ui-ux/references/_canonical-corpus/LICENSE-Apache-2.0.txt +201 -0
- package/skills/frontend-ui-ux/references/_canonical-corpus/manifest.json +867 -0
- package/skills/frontend-ui-ux/references/adaptive-layout.md +85 -0
- package/skills/frontend-ui-ux/references/brand-and-imagery.md +79 -0
- package/skills/frontend-ui-ux/references/complete-contract.md +282 -0
- package/skills/frontend-ui-ux/references/composition.md +87 -0
- package/skills/frontend-ui-ux/references/creative-directions.md +83 -0
- package/skills/frontend-ui-ux/references/design/README.md +248 -0
- package/skills/frontend-ui-ux/references/design/_INDEX.md +191 -0
- package/skills/frontend-ui-ux/references/design/airbnb.md +393 -0
- package/skills/frontend-ui-ux/references/design/airtable.md +92 -0
- package/skills/frontend-ui-ux/references/design/apple.md +250 -0
- package/skills/frontend-ui-ux/references/design/aside.md +209 -0
- package/skills/frontend-ui-ux/references/design/binance.md +348 -0
- package/skills/frontend-ui-ux/references/design/bmw.md +183 -0
- package/skills/frontend-ui-ux/references/design/brutalist-skill.md +92 -0
- package/skills/frontend-ui-ux/references/design/bugatti.md +271 -0
- package/skills/frontend-ui-ux/references/design/cal.md +262 -0
- package/skills/frontend-ui-ux/references/design/claude.md +315 -0
- package/skills/frontend-ui-ux/references/design/clay.md +307 -0
- package/skills/frontend-ui-ux/references/design/clickhouse.md +284 -0
- package/skills/frontend-ui-ux/references/design/clone-from-url.md +65 -0
- package/skills/frontend-ui-ux/references/design/cohere.md +269 -0
- package/skills/frontend-ui-ux/references/design/coinbase.md +132 -0
- package/skills/frontend-ui-ux/references/design/composio.md +310 -0
- package/skills/frontend-ui-ux/references/design/cursor.md +312 -0
- package/skills/frontend-ui-ux/references/design/design-system-architecture.md +244 -0
- package/skills/frontend-ui-ux/references/design/elevenlabs.md +268 -0
- package/skills/frontend-ui-ux/references/design/expo.md +284 -0
- package/skills/frontend-ui-ux/references/design/ferrari.md +317 -0
- package/skills/frontend-ui-ux/references/design/figma.md +223 -0
- package/skills/frontend-ui-ux/references/design/framer.md +249 -0
- package/skills/frontend-ui-ux/references/design/gpt-tasteskill.md +74 -0
- package/skills/frontend-ui-ux/references/design/hashicorp.md +281 -0
- package/skills/frontend-ui-ux/references/design/ibm.md +335 -0
- package/skills/frontend-ui-ux/references/design/image-to-code-skill.md +1228 -0
- package/skills/frontend-ui-ux/references/design/imagegen-brandkit.md +798 -0
- package/skills/frontend-ui-ux/references/design/imagegen-frontend-mobile.md +1465 -0
- package/skills/frontend-ui-ux/references/design/imagegen-frontend-web.md +987 -0
- package/skills/frontend-ui-ux/references/design/intercom.md +149 -0
- package/skills/frontend-ui-ux/references/design/kraken.md +128 -0
- package/skills/frontend-ui-ux/references/design/lamborghini.md +291 -0
- package/skills/frontend-ui-ux/references/design/layout-skill.md +107 -0
- package/skills/frontend-ui-ux/references/design/lazyweb.md +77 -0
- package/skills/frontend-ui-ux/references/design/linear.app.md +370 -0
- package/skills/frontend-ui-ux/references/design/lovable.md +301 -0
- package/skills/frontend-ui-ux/references/design/mastercard.md +368 -0
- package/skills/frontend-ui-ux/references/design/meta.md +369 -0
- package/skills/frontend-ui-ux/references/design/minimalist-skill.md +85 -0
- package/skills/frontend-ui-ux/references/design/minimax.md +260 -0
- package/skills/frontend-ui-ux/references/design/mintlify.md +329 -0
- package/skills/frontend-ui-ux/references/design/miro.md +111 -0
- package/skills/frontend-ui-ux/references/design/mistral.ai.md +264 -0
- package/skills/frontend-ui-ux/references/design/mongodb.md +269 -0
- package/skills/frontend-ui-ux/references/design/nike.md +366 -0
- package/skills/frontend-ui-ux/references/design/notion.md +312 -0
- package/skills/frontend-ui-ux/references/design/nvidia.md +296 -0
- package/skills/frontend-ui-ux/references/design/ollama.md +270 -0
- package/skills/frontend-ui-ux/references/design/opencode.ai.md +284 -0
- package/skills/frontend-ui-ux/references/design/output-skill.md +49 -0
- package/skills/frontend-ui-ux/references/design/pinterest.md +233 -0
- package/skills/frontend-ui-ux/references/design/playstation.md +367 -0
- package/skills/frontend-ui-ux/references/design/posthog.md +259 -0
- package/skills/frontend-ui-ux/references/design/raycast.md +271 -0
- package/skills/frontend-ui-ux/references/design/react-dev-tooling-skill.md +230 -0
- package/skills/frontend-ui-ux/references/design/redesign-skill.md +178 -0
- package/skills/frontend-ui-ux/references/design/renault.md +314 -0
- package/skills/frontend-ui-ux/references/design/replicate.md +264 -0
- package/skills/frontend-ui-ux/references/design/resend.md +306 -0
- package/skills/frontend-ui-ux/references/design/revolut.md +188 -0
- package/skills/frontend-ui-ux/references/design/runwayml.md +247 -0
- package/skills/frontend-ui-ux/references/design/sanity.md +360 -0
- package/skills/frontend-ui-ux/references/design/sentry.md +265 -0
- package/skills/frontend-ui-ux/references/design/shopify.md +353 -0
- package/skills/frontend-ui-ux/references/design/soft-skill.md +98 -0
- package/skills/frontend-ui-ux/references/design/spacex.md +197 -0
- package/skills/frontend-ui-ux/references/design/spotify.md +249 -0
- package/skills/frontend-ui-ux/references/design/starbucks.md +583 -0
- package/skills/frontend-ui-ux/references/design/stitch-design-example.md +121 -0
- package/skills/frontend-ui-ux/references/design/stitch-skill.md +184 -0
- package/skills/frontend-ui-ux/references/design/stripe.md +325 -0
- package/skills/frontend-ui-ux/references/design/supabase.md +258 -0
- package/skills/frontend-ui-ux/references/design/superhuman.md +255 -0
- package/skills/frontend-ui-ux/references/design/taste-skill.md +1206 -0
- package/skills/frontend-ui-ux/references/design/tesla.md +289 -0
- package/skills/frontend-ui-ux/references/design/theverge.md +342 -0
- package/skills/frontend-ui-ux/references/design/together.ai.md +266 -0
- package/skills/frontend-ui-ux/references/design/uber.md +298 -0
- package/skills/frontend-ui-ux/references/design/vercel.md +313 -0
- package/skills/frontend-ui-ux/references/design/vodafone.md +426 -0
- package/skills/frontend-ui-ux/references/design/voltagent.md +326 -0
- package/skills/frontend-ui-ux/references/design/warp.md +256 -0
- package/skills/frontend-ui-ux/references/design/webflow.md +95 -0
- package/skills/frontend-ui-ux/references/design/wired.md +281 -0
- package/skills/frontend-ui-ux/references/design/wise.md +176 -0
- package/skills/frontend-ui-ux/references/design/x.ai.md +260 -0
- package/skills/frontend-ui-ux/references/design/zapier.md +331 -0
- package/skills/frontend-ui-ux/references/designpowers/EVIDENCE.md +97 -0
- package/skills/frontend-ui-ux/references/designpowers/README.md +48 -0
- package/skills/frontend-ui-ux/references/designpowers/UPSTREAM.md +80 -0
- package/skills/frontend-ui-ux/references/designpowers/lane-a-direction.md +64 -0
- package/skills/frontend-ui-ux/references/designpowers/lane-b-execution.md +65 -0
- package/skills/frontend-ui-ux/references/designpowers/lane-c-review.md +65 -0
- package/skills/frontend-ui-ux/references/designpowers/lane-d-memory.md +83 -0
- package/skills/frontend-ui-ux/references/designpowers/orchestration.md +80 -0
- package/skills/frontend-ui-ux/references/designpowers/routing.md +79 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/LICENSE +21 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/accessibility-reviewer.md +83 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/content-writer.md +132 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-builder.md +109 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-critic.md +89 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-lead.md +113 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-scout.md +78 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-strategist.md +121 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/heuristic-evaluator.md +268 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/inspiration-scout.md +107 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/agents/motion-designer.md +120 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/accessible-content/reference.md +101 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/adaptive-interfaces/reference.md +109 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/cognitive-accessibility/reference.md +107 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-debate/reference.md +199 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-debt-tracker/reference.md +174 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-handoff/reference.md +125 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-md/reference.md +106 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-retrospective/reference.md +266 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-review/reference.md +123 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-system-alignment/reference.md +120 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/designpowers-critique/reference.md +164 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/heuristic-evaluation/reference.md +85 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/inclusive-personas/reference.md +98 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/inspiration-scouting/reference.md +165 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/interaction-design/reference.md +122 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/motion-choreography/reference.md +81 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/research-planning/reference.md +96 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/responsive-patterns/reference.md +77 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/synthetic-user-testing/reference.md +192 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/taste-feedback/reference.md +165 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/taste-report/reference.md +78 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/token-architecture/reference.md +75 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/ui-composition/reference.md +117 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/usability-testing/reference.md +78 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/verification-before-shipping/reference.md +125 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/voice-and-tone/reference.md +79 -0
- package/skills/frontend-ui-ux/references/designpowers/vendor/skills/writing-design-plans/reference.md +119 -0
- package/skills/frontend-ui-ux/references/evidence-review.md +103 -0
- package/skills/frontend-ui-ux/references/implementation-platforms.md +94 -0
- package/skills/frontend-ui-ux/references/inclusive-interface.md +85 -0
- package/skills/frontend-ui-ux/references/interaction-motion.md +93 -0
- package/skills/frontend-ui-ux/references/operating-lanes.md +80 -0
- package/skills/frontend-ui-ux/references/perfection/README.md +160 -0
- package/skills/frontend-ui-ux/references/perfection/react-perf-tooling.md +127 -0
- package/skills/frontend-ui-ux/references/performance-delivery.md +77 -0
- package/skills/frontend-ui-ux/references/product-direction.md +84 -0
- package/skills/frontend-ui-ux/references/redesign-playbook.md +88 -0
- package/skills/frontend-ui-ux/references/system-foundations.md +86 -0
- package/skills/frontend-ui-ux/references/taste-direction.md +55 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/README.md +659 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/charts.csv +26 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/colors.csv +162 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/icons.csv +106 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/landing.csv +35 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/products.csv +162 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/react-performance.csv +45 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/astro.csv +54 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/flutter.csv +53 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/html-tailwind.csv +56 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/jetpack-compose.csv +53 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nextjs.csv +53 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nuxt-ui.csv +51 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nuxtjs.csv +59 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/react-native.csv +52 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/react.csv +54 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/shadcn.csv +61 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/svelte.csv +54 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/swiftui.csv +51 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/vue.csv +50 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/styles.csv +85 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/typography.csv +74 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/ui-reasoning.csv +162 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/ux-guidelines.csv +100 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/data/web-interface.csv +31 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/scripts/core.py +262 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/scripts/design_system.py +1148 -0
- package/skills/frontend-ui-ux/references/ui-ux-db/scripts/search.py +114 -0
- package/skills/frontend-ui-ux/references/visual-language.md +84 -0
- package/skills/frontend-ui-ux/references/visual-reconstruction.md +87 -0
- package/skills/frontend-ui-ux/schemas/design-contract-v1alpha1.json +570 -0
- package/skills/frontend-ui-ux/schemas/design-contract-v1beta1.json +32 -0
- package/skills/frontend-ui-ux/schemas/design-contract-v1beta2.json +34 -0
- package/skills/frontend-ui-ux/scripts/bounded-json.mjs +45 -0
- package/skills/frontend-ui-ux/scripts/canonical-json.mjs +26 -0
- package/skills/frontend-ui-ux/scripts/contract-error.mjs +15 -0
- package/skills/frontend-ui-ux/scripts/csv.mjs +64 -0
- package/skills/frontend-ui-ux/scripts/dataset.mjs +65 -0
- package/skills/frontend-ui-ux/scripts/design-contract.mjs +609 -0
- package/skills/frontend-ui-ux/scripts/import-design-intelligence.mjs +193 -0
- package/skills/frontend-ui-ux/scripts/retrieval.mjs +92 -0
- package/skills/frontend-ui-ux/scripts/stable-file-read.mjs +237 -0
- package/skills/frontend-ui-ux/scripts/stdin-json.mjs +16 -0
- package/skills/frontend-ui-ux/scripts/strict-json.mjs +102 -0
- package/skills/frontend-ui-ux/scripts/uiux.mjs +86 -0
- package/skills/frontend-ui-ux/scripts/verify-canonical-corpus.mjs +266 -0
- package/skills/lit-burnoff/SKILL.md +227 -0
- package/skills/lit-burnoff-file/SKILL.md +175 -0
- package/skills/lit-code/SKILL.md +266 -0
- package/skills/lit-code/references/README.md +18 -0
- package/skills/lit-code/references/go/README.md +12 -0
- package/skills/lit-code/references/go/concurrency.md +42 -0
- package/skills/lit-code/references/go/error-handling.md +47 -0
- package/skills/lit-code/references/go/testing.md +55 -0
- package/skills/lit-code/references/go/tooling.md +35 -0
- package/skills/lit-code/references/go/type-patterns.md +50 -0
- package/skills/lit-code/references/python/README.md +12 -0
- package/skills/lit-code/references/python/async.md +50 -0
- package/skills/lit-code/references/python/error-handling.md +44 -0
- package/skills/lit-code/references/python/testing.md +50 -0
- package/skills/lit-code/references/python/tooling.md +38 -0
- package/skills/lit-code/references/python/type-patterns.md +46 -0
- package/skills/lit-code/references/rust/README.md +12 -0
- package/skills/lit-code/references/rust/concurrency.md +45 -0
- package/skills/lit-code/references/rust/error-handling.md +43 -0
- package/skills/lit-code/references/rust/tooling.md +36 -0
- package/skills/lit-code/references/rust/type-patterns.md +46 -0
- package/skills/lit-code/references/rust/unsafe.md +47 -0
- package/skills/lit-code/references/typescript/README.md +11 -0
- package/skills/lit-code/references/typescript/error-handling.md +56 -0
- package/skills/lit-code/references/typescript/testing.md +42 -0
- package/skills/lit-code/references/typescript/tsconfig-strict.md +40 -0
- package/skills/lit-code/references/typescript/type-patterns.md +60 -0
- package/skills/lit-commit/SKILL.md +222 -0
- package/skills/lit-comprehend/SKILL.md +278 -0
- package/skills/lit-comprehend/assets/explainer-scaffold.html +104 -0
- package/skills/lit-comprehend/references/artifact-template.md +114 -0
- package/skills/lit-comprehend/references/micro-worlds.md +115 -0
- package/skills/lit-comprehend/scripts/verify-explainer.ts +339 -0
- package/skills/lit-crucible/SKILL.md +212 -0
- package/skills/lit-fetch/SKILL.md +242 -0
- package/skills/lit-handoff/SKILL.md +199 -0
- package/skills/lit-init/SKILL.md +214 -0
- package/skills/lit-korean/SKILL.md +231 -0
- package/skills/lit-plan/SKILL.md +351 -0
- package/skills/lit-plan/scripts/scaffold-plan.mjs +275 -0
- package/skills/lit-recap/SKILL.md +233 -0
- package/skills/lit-scientific-visualization/SKILL.md +175 -0
- package/skills/litresearch/SKILL.md +436 -0
- package/skills/litwork/SKILL.md +227 -0
- package/skills/lsp/SKILL.md +186 -0
- package/skills/lsp-setup/SKILL.md +187 -0
- package/skills/lsp-setup/references/README.md +40 -0
- package/skills/lsp-setup/references/bash.md +31 -0
- package/skills/lsp-setup/references/c-cpp.md +43 -0
- package/skills/lsp-setup/references/csharp.md +29 -0
- package/skills/lsp-setup/references/dart.md +25 -0
- package/skills/lsp-setup/references/elixir.md +30 -0
- package/skills/lsp-setup/references/go.md +33 -0
- package/skills/lsp-setup/references/haskell.md +27 -0
- package/skills/lsp-setup/references/java.md +28 -0
- package/skills/lsp-setup/references/julia.md +28 -0
- package/skills/lsp-setup/references/kotlin.md +25 -0
- package/skills/lsp-setup/references/lua.md +26 -0
- package/skills/lsp-setup/references/php.md +30 -0
- package/skills/lsp-setup/references/python.md +33 -0
- package/skills/lsp-setup/references/ruby.md +34 -0
- package/skills/lsp-setup/references/rust.md +34 -0
- package/skills/lsp-setup/references/swift.md +26 -0
- package/skills/lsp-setup/references/terraform.md +26 -0
- package/skills/lsp-setup/references/typescript.md +35 -0
- package/skills/lsp-setup/references/yaml.md +27 -0
- package/skills/lsp-setup/references/zig.md +28 -0
- package/skills/managed-skill-manifest.json +1386 -0
- package/skills/native-goal-verdict/SKILL.md +216 -0
- package/skills/refactor/SKILL.md +221 -0
- package/skills/reference-benchmark-claims/SKILL.md +204 -0
- package/skills/release-guardrails/SKILL.md +245 -0
- package/skills/review-work/SKILL.md +301 -0
- package/skills/rules/SKILL.md +196 -0
- package/skills/search-workflow-ideas/SKILL.md +223 -0
- package/skills/skill-observer/SKILL.md +148 -0
- package/skills/skill-observer/references/review-contract.md +95 -0
- package/skills/skill-rename-aliases.json +10 -0
- package/skills/start-work/SKILL.md +334 -0
- package/skills/structural-search/SKILL.md +234 -0
- package/skills/tool-guards/SKILL.md +223 -0
- package/skills/visual-qa/SKILL.md +61 -0
- package/skills/visual-qa/references/capture-playbook.md +105 -0
- package/skills/visual-qa/references/complete-contract.md +411 -0
- package/skills/visual-qa/schemas/evidence-manifest-v1alpha1.json +201 -0
- package/skills/visual-qa/schemas/evidence-manifest-v1beta1.json +141 -0
- package/skills/visual-qa/schemas/review-receipt-v1alpha1.json +113 -0
- package/skills/visual-qa/scripts/artifact.mjs +123 -0
- package/skills/visual-qa/scripts/bounded-json.mjs +47 -0
- package/skills/visual-qa/scripts/canonical-json.mjs +28 -0
- package/skills/visual-qa/scripts/capabilities.mjs +66 -0
- package/skills/visual-qa/scripts/contract-text.mjs +15 -0
- package/skills/visual-qa/scripts/design-contract.mjs +611 -0
- package/skills/visual-qa/scripts/evidence-evaluate.mjs +521 -0
- package/skills/visual-qa/scripts/evidence.mjs +271 -0
- package/skills/visual-qa/scripts/png-decode.mjs +146 -0
- package/skills/visual-qa/scripts/png.mjs +154 -0
- package/skills/visual-qa/scripts/review.mjs +188 -0
- package/skills/visual-qa/scripts/stdin-json.mjs +16 -0
- package/skills/visual-qa/scripts/strict-json.mjs +102 -0
- package/skills/visual-qa/scripts/tui.mjs +149 -0
- package/skills/visual-qa/scripts/visual-qa.mjs +90 -0
- package/skills/wikify/LICENSE +21 -0
- package/skills/wikify/PROVENANCE.md +18 -0
- package/skills/wikify/SKILL.md +176 -0
- package/skills/wikify/assets/home-template.md +44 -0
- package/skills/wikify/assets/maintenance-report-template.md +46 -0
- package/skills/wikify/assets/paper-source-note-template.md +137 -0
- package/skills/wikify/assets/source-note-template.md +45 -0
- package/skills/wikify/assets/wiki-rules-template.md +117 -0
- package/skills/wikify/modes/ingest.md +57 -0
- package/skills/wikify/modes/init.md +44 -0
- package/skills/wikify/modes/lint.md +60 -0
- package/skills/wikify/modes/query.md +38 -0
- package/skills/wikify/modes/save.md +45 -0
- package/skills/wikify/references-upstream-contract.md +758 -0
- package/skills/workflow-loop/SKILL.md +387 -0
- package/tools/check-pack-payload.mjs +410 -0
- package/tools/check-payload-substance.mjs +738 -0
- package/tools/check-version-lockstep.mjs +238 -0
- package/tools/gen-canonical-frontend-manifest.mjs +66 -0
- package/tools/gen-managed-skill-manifest.mjs +135 -0
- package/tools/harness-speed-local.mjs +261 -0
- package/tools/payload-reference-exemptions.json +49 -0
- package/tools/payload-substance-allowlist.json +46 -0
- package/tools/payload-substance-parity.json +571 -0
- package/tools/qa-real-surface-fixtures.mjs +428 -0
- package/tools/qa-real-surface-harness.mjs +173 -0
- package/tools/run-behavior-replacement-probes.mjs +296 -0
- package/tools/run-build.mjs +101 -0
- package/tools/run-harness-speed-local.mjs +52 -0
- package/tools/run-harness-speed-v2.mjs +36 -0
- package/tools/run-installed-resource-tamper-probe.mjs +62 -0
- package/tools/run-negative-gate-matrix.mjs +516 -0
- package/tools/run-rules-glob-differential.mjs +232 -0
- package/tools/run-typecheck.mjs +25 -0
- package/tools/run-uiux-visual-qa-scenarios.mjs +234 -0
- package/tools/run-wikify-surface-probe.mjs +170 -0
- package/tools/scan-legacy-tokens.mjs +431 -0
- package/tools/version-manifests.json +60 -0
- package/tsconfig.build.json +12 -0
- package/tsconfig.json +13 -0
- package/vendor/NOTICE.md +21 -0
- package/vendor/handoff/SKILL.md +199 -0
- package/vendor/handoff/evals/evals.json +154 -0
- package/vendor/handoff/examples/HANDOFF-example-generic-auth-refactor.md +97 -0
- package/vendor/handoff/templates/HANDOFF.md +121 -0
- package/vendor/licenses/022_handoff-MIT.txt +21 -0
- package/vendor/licenses/045_scientific-visualization-MIT.txt +21 -0
- package/vendor/provenance/022_handoff.md +19 -0
- package/vendor/provenance/045_scientific-visualization.md +36 -0
- package/vendor/scientific-visualization/SKILL.md +283 -0
- package/vendor/scientific-visualization/assets/color_palettes.py +197 -0
- package/vendor/scientific-visualization/assets/nature.mplstyle +75 -0
- package/vendor/scientific-visualization/assets/presentation.mplstyle +74 -0
- package/vendor/scientific-visualization/assets/publication.mplstyle +78 -0
- package/vendor/scientific-visualization/evals/evals.json +158 -0
- package/vendor/scientific-visualization/references/color_palettes.md +380 -0
- package/vendor/scientific-visualization/references/journal_requirements.md +359 -0
- package/vendor/scientific-visualization/references/matplotlib_examples.md +608 -0
- package/vendor/scientific-visualization/references/mdanalysis_martini_visualization.md +85 -0
- package/vendor/scientific-visualization/references/publication_guidelines.md +217 -0
- package/vendor/scientific-visualization/references/seaborn_for_publications.md +293 -0
- package/vendor/scientific-visualization/scripts/figure_export.py +238 -0
- package/vendor/scientific-visualization/scripts/style_presets.py +467 -0
- package/vendor/scientific-visualization/tests/test_figure_export.py +51 -0
- package/vendor/scientific-visualization/tests/test_style_presets.py +114 -0
package/dist/features.js
ADDED
|
@@ -0,0 +1,1109 @@
|
|
|
1
|
+
import { frontendUiUxFeature, visualQaFeature } from "./uiux-visual-catalog.js";
|
|
2
|
+
export const litOpenCodeFeatures = Object.freeze([
|
|
3
|
+
{
|
|
4
|
+
id: "autoresearch",
|
|
5
|
+
title: "Autoresearch Family",
|
|
6
|
+
summary: "Installs one recursively managed ten-mode family and exposes hyphen-native planning-gated OpenCode command/chat routes without adding tools or agents.",
|
|
7
|
+
bindings: [
|
|
8
|
+
{ kind: "command", id: "autoresearch-family", surface: "OpenCode command aliases /autoresearch and /autoresearch-<mode>", description: "Selects a nested mode and injects the bounded lifecycle contract." },
|
|
9
|
+
{ kind: "hook", id: "chat.message", surface: "OpenCode chat.message hook", description: "Recognizes only a leading family invocation outside slash, quote, fence, blockquote, and inline-code data." },
|
|
10
|
+
{ kind: "config", id: "skills/autoresearch/SKILL.md", surface: "LitOpenCode native-installed managed skill", description: "Ships ten modes, templates, references, local helpers, provenance, and license as one exact tree." }
|
|
11
|
+
],
|
|
12
|
+
verification: ["node --test test/workflow-family-skills.test.mjs", "node --test test/cli-install-surface.test.mjs"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
id: "autoconference",
|
|
16
|
+
title: "Autoconference Family",
|
|
17
|
+
summary: "Installs one seven-mode conference family that requires live OpenCode task capability and keeps children depth-one and packet-only.",
|
|
18
|
+
bindings: [
|
|
19
|
+
{ kind: "command", id: "autoconference-family", surface: "OpenCode command aliases /autoconference and /autoconference-<mode>", description: "Selects a nested conference mode behind planning and capability gates." },
|
|
20
|
+
{ kind: "hook", id: "chat.message", surface: "OpenCode chat.message hook", description: "Recognizes only leading family invocations and injects the fail-closed capability contract." },
|
|
21
|
+
{ kind: "config", id: "skills/autoconference/SKILL.md", surface: "LitOpenCode native-installed managed skill", description: "Ships seven modes and the complete conference packet/protocol closure as one exact tree." }
|
|
22
|
+
],
|
|
23
|
+
verification: ["node --test test/workflow-family-skills.test.mjs", "node --test test/subagent-recursion.test.mjs"]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: "wikify",
|
|
27
|
+
title: "Wikify Family",
|
|
28
|
+
summary: "Installs one five-mode local-wiki family with reviewed project-local structured knowledge and deterministic accepted-record relevance.",
|
|
29
|
+
bindings: [
|
|
30
|
+
{ kind: "command", id: "wikify-family", surface: "OpenCode command aliases /wikify-init through /wikify-lint", description: "Operates on structured local claims while raw arguments stay inert and unpersisted." },
|
|
31
|
+
{ kind: "hook", id: "chat.message", surface: "OpenCode chat.message hook", description: "Injects accepted deterministic local relevance only when records match; no match stays silent." },
|
|
32
|
+
{ kind: "hook", id: "tool.execute.after", surface: "OpenCode tool.execute.after hook", description: "Captures only an already-structured metadata event after validation and never parses tool output." },
|
|
33
|
+
{ kind: "tool", id: "wikify", surface: "OpenCode Wikify tool", description: "Captures review-needed claims and performs explicit save, review, query, or status operations." },
|
|
34
|
+
{ kind: "config", id: "knowledge.capture", surface: "LitOpenCode project config", description: "Enables capture by default and provides a project-local false opt-out without disabling query." },
|
|
35
|
+
{ kind: "config", id: "skills/wikify/SKILL.md", surface: "LitOpenCode native-installed managed skill", description: "Ships five modes and five templates with provenance and exact-tree installation." }
|
|
36
|
+
],
|
|
37
|
+
verification: ["node --test test/wikify-knowledge.test.mjs", "node tools/run-wikify-surface-probe.mjs", "node --test test/workflow-family-skills.test.mjs"]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
id: "planning-start-work-loop",
|
|
41
|
+
title: "Planning And Work Loop",
|
|
42
|
+
summary: "Coordinates plan-first work, scoped implementation, independent verification, and evidence-backed progress.",
|
|
43
|
+
bindings: [
|
|
44
|
+
{
|
|
45
|
+
kind: "command",
|
|
46
|
+
id: "litwork",
|
|
47
|
+
surface: "OpenCode command /litwork",
|
|
48
|
+
description: "Resumes the work loop and writes a command activation event to the durable ledger."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
kind: "command",
|
|
52
|
+
id: "start-work",
|
|
53
|
+
surface: "OpenCode command /start-work",
|
|
54
|
+
description: "Starts or resumes plan-backed implementation with evidence checkpoints."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
kind: "agent",
|
|
58
|
+
id: "lit-plan",
|
|
59
|
+
surface: "OpenCode agent lit-plan",
|
|
60
|
+
description: "Provides the primary planning surface for executable, verified work slices."
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
kind: "agent",
|
|
64
|
+
id: "lit-loop",
|
|
65
|
+
surface: "OpenCode agent lit-loop",
|
|
66
|
+
description: "Provides the primary execution-loop surface for scoped edits and command-backed delivery."
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
verification: ["node --test test/litwork.test.mjs", "node --test test/agent-roster.test.mjs"]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
id: "lit-litwork-activation",
|
|
73
|
+
title: "Lit Activation Surface",
|
|
74
|
+
summary: "Exposes LitOpenCode activation through command and tool surfaces backed by observable ledger events.",
|
|
75
|
+
bindings: [
|
|
76
|
+
{
|
|
77
|
+
kind: "command",
|
|
78
|
+
id: "lit",
|
|
79
|
+
surface: "OpenCode command /lit",
|
|
80
|
+
description: "Activates the model probe line and records command activation."
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
kind: "tool",
|
|
84
|
+
id: "lit",
|
|
85
|
+
surface: "OpenCode tool lit",
|
|
86
|
+
description: "Initializes the runtime ledger and reports status."
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
kind: "tool",
|
|
90
|
+
id: "litwork",
|
|
91
|
+
surface: "OpenCode tool litwork",
|
|
92
|
+
description: "Starts or inspects the current work loop through durable ledger operations."
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
kind: "hook",
|
|
96
|
+
id: "command.execute.before",
|
|
97
|
+
surface: "OpenCode hook command.execute.before",
|
|
98
|
+
description: "Injects activation text before supported slash commands execute."
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
kind: "hook",
|
|
102
|
+
id: "chat.message",
|
|
103
|
+
surface: "OpenCode hook chat.message",
|
|
104
|
+
description: "Injects mode-aware LitOpenCode guidance for standalone lit routes, while requiring start-work chat handoff to be an explicit leading invocation."
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
verification: ["node --test test/litwork.test.mjs"]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: "start-work",
|
|
111
|
+
title: "Start Work",
|
|
112
|
+
summary: "Provides the plan-backed implementation start surface used to begin or resume verified work.",
|
|
113
|
+
bindings: [
|
|
114
|
+
{
|
|
115
|
+
kind: "command",
|
|
116
|
+
id: "start-work",
|
|
117
|
+
surface: "OpenCode command /start-work",
|
|
118
|
+
description: "Activates the start-work directive."
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
kind: "tool",
|
|
122
|
+
id: "start-work",
|
|
123
|
+
surface: "OpenCode tool start-work",
|
|
124
|
+
description: "Records start-work activation and reports durable ledger status."
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
verification: ["node --test test/litwork.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
id: "review-work",
|
|
131
|
+
title: "Review Work",
|
|
132
|
+
summary: "Provides read-only draft-plan achievability review and five-lane completed-work review with evidence-backed verdicts.",
|
|
133
|
+
bindings: [
|
|
134
|
+
{
|
|
135
|
+
kind: "command",
|
|
136
|
+
id: "review-work",
|
|
137
|
+
surface: "OpenCode command /review-work",
|
|
138
|
+
description: "Reviews either a draft plan or completed work without implementing the reviewed artifact."
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
kind: "tool",
|
|
142
|
+
id: "review-work",
|
|
143
|
+
surface: "OpenCode tool review-work",
|
|
144
|
+
description: "Records review-work activation and exposes draft-plan or completed-work review guidance."
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
verification: ["node --test test/litwork.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
id: "litresearch",
|
|
151
|
+
title: "LitResearch",
|
|
152
|
+
summary: "Provides an evidence-backed, root-owned research surface with bounded task waves, append-only evidence receipts, sequential fallback, scientific-record statuses, and uncertainty tracking.",
|
|
153
|
+
bindings: [
|
|
154
|
+
{
|
|
155
|
+
kind: "command",
|
|
156
|
+
id: "litresearch",
|
|
157
|
+
surface: "OpenCode command /litresearch",
|
|
158
|
+
description: "Activates the litresearch directive through the compact command alias."
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
kind: "command",
|
|
162
|
+
id: "lit-research",
|
|
163
|
+
surface: "OpenCode command /lit-research",
|
|
164
|
+
description: "Activates the litresearch directive through the hyphenated command alias."
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
kind: "config",
|
|
168
|
+
id: "skills/litresearch/SKILL.md",
|
|
169
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
170
|
+
description: "Documents root-owned bounded waves, durable claim/evidence receipts, public route failure gates, scientific-record review states, and safety boundaries."
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
kind: "hook",
|
|
174
|
+
id: "chat.message",
|
|
175
|
+
surface: "OpenCode hook chat.message",
|
|
176
|
+
description: "Routes bare litresearch and natural lit research prompts to the research guidance."
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
verification: ["node --test test/litwork.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
id: "durable-ledger",
|
|
183
|
+
title: "Durable LitGoal Ledger",
|
|
184
|
+
summary: "Persists loop events under .litopencode/litgoal with atomic writes and temp-file recovery.",
|
|
185
|
+
bindings: [
|
|
186
|
+
{
|
|
187
|
+
kind: "tool",
|
|
188
|
+
id: "litwork.status",
|
|
189
|
+
surface: "OpenCode tool litwork action=status",
|
|
190
|
+
description: "Reads durable ledger events for status output."
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
kind: "config",
|
|
194
|
+
id: ".litopencode/litgoal",
|
|
195
|
+
surface: "litopencode runtime state path",
|
|
196
|
+
description: "Owns the durable ledger directory used by commands, tools, and goal operations."
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
verification: ["node --test test/ledger.test.mjs", "node --test test/litwork.test.mjs"]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: "bounded-authority-lifecycle",
|
|
203
|
+
title: "Bounded Authority Lifecycle",
|
|
204
|
+
summary: "Owns schema-3 init, pause, trusted resume, cancel, complete, progress continuation, CAS, reconciliation, and bounded durable compaction without broadening authority.",
|
|
205
|
+
bindings: [
|
|
206
|
+
{
|
|
207
|
+
kind: "command",
|
|
208
|
+
id: "start-work.lifecycle",
|
|
209
|
+
surface: "OpenCode command /start-work",
|
|
210
|
+
description: "Accepts strict init, resume, cancel, complete, and status directives from the trusted slash-command route."
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
kind: "hook",
|
|
214
|
+
id: "event",
|
|
215
|
+
surface: "OpenCode event hook",
|
|
216
|
+
description: "Parses exact fenced assistant progress and emits one structured continuation for each genuinely new active-work checkpoint."
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
kind: "hook",
|
|
220
|
+
id: "chat.message",
|
|
221
|
+
surface: "OpenCode hook chat.message",
|
|
222
|
+
description: "Accepts only exact root-user start-work resume directives; copied, quoted, slash, and delegated text remains inert."
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
kind: "tool",
|
|
226
|
+
id: "start-work",
|
|
227
|
+
surface: "OpenCode tool start-work",
|
|
228
|
+
description: "Keeps generic agent-callable resume unavailable, so only trusted user routes can consume a matching boundary grant."
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
kind: "config",
|
|
232
|
+
id: "boundedAuthority",
|
|
233
|
+
surface: "litopencode.json boundedAuthority settings",
|
|
234
|
+
description: "Bounds event history, state history, idempotence receipts, and context-file bytes."
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
verification: [
|
|
238
|
+
"node --test test/bounded-authority-lifecycle.test.mjs",
|
|
239
|
+
"node --test test/bounded-authority-hooks.test.mjs",
|
|
240
|
+
"node --test test/cli-install-surface.test.mjs"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
id: "agent-roster",
|
|
245
|
+
title: "Agent Roster",
|
|
246
|
+
summary: "Registers the three primary LitOpenCode agents, recommended role aliases, and specialist roster as static OpenCode agent definitions.",
|
|
247
|
+
bindings: [
|
|
248
|
+
{
|
|
249
|
+
kind: "hook",
|
|
250
|
+
id: "config",
|
|
251
|
+
surface: "OpenCode config hook",
|
|
252
|
+
description: "Merges LitOpenCode agent definitions into the host config without overwriting existing agents."
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
kind: "agent",
|
|
256
|
+
id: "primary-defaults",
|
|
257
|
+
surface: "OpenCode agent registry",
|
|
258
|
+
description: "Provides the lit-plan, lit-implement, and lit-loop primary default agents, with lit-plan guarded against edit/bash/task execution until start-work hands off to lit-implement."
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
kind: "agent",
|
|
262
|
+
id: "recommended-roles",
|
|
263
|
+
surface: "OpenCode agent registry",
|
|
264
|
+
description: "Provides architect, forge, oracle, prover, sentinel, and librarian role aliases."
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
kind: "agent",
|
|
268
|
+
id: "specialists",
|
|
269
|
+
surface: "OpenCode agent registry",
|
|
270
|
+
description: "Provides the adapted specialist set for advanced discovery, review, planning, and persistence."
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
verification: ["node --test test/agent-roster.test.mjs"]
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
id: "lit-plan",
|
|
277
|
+
title: "Lit Plan",
|
|
278
|
+
summary: "Documents proportionate objective-achievable checklists on the OpenCode planning-only surface, including approval gates, read-only boundaries, and start-work handoff.",
|
|
279
|
+
bindings: [
|
|
280
|
+
{
|
|
281
|
+
kind: "agent",
|
|
282
|
+
id: "lit-plan",
|
|
283
|
+
surface: "OpenCode agent lit-plan",
|
|
284
|
+
description: "Produces ordered action/output/verification checklists; edit/bash/task remain denied and execution waits for explicit user confirmation."
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
kind: "command",
|
|
288
|
+
id: "lit-plan",
|
|
289
|
+
surface: "OpenCode command /lit-plan",
|
|
290
|
+
description: "Injects lit-plan guidance with the installed static skill body."
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
kind: "config",
|
|
294
|
+
id: "skills/lit-plan/SKILL.md",
|
|
295
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
296
|
+
description: "Documents adaptive checklist detail, gated unknowns, decision branches, DoneClaim evidence, and the start-work handoff."
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
verification: ["node --test test/litwork.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
id: "reference-benchmark-claims",
|
|
303
|
+
title: "Reference Benchmark Claims",
|
|
304
|
+
summary: "Exposes the benchmark-backed claim policy that blocks universal REFERENCE superiority claims unless they are scoped to a measured OpenCode-native suite.",
|
|
305
|
+
bindings: [
|
|
306
|
+
{
|
|
307
|
+
kind: "config",
|
|
308
|
+
id: "litOpenCodeReferenceBenchmark",
|
|
309
|
+
surface: "litopencode exported benchmark policy API",
|
|
310
|
+
description: "Defines finite task categories, required artifacts, scoring dimensions, and pass thresholds."
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
kind: "config",
|
|
314
|
+
id: "classifyReferenceSuperiorityClaim",
|
|
315
|
+
surface: "litopencode exported claim guard API",
|
|
316
|
+
description: "Blocks unconditional all-task superiority wording and returns the safe benchmark-scoped alternative."
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
kind: "config",
|
|
320
|
+
id: "benchmarkGateAllowsStrongClaim",
|
|
321
|
+
surface: "litopencode exported benchmark gate API",
|
|
322
|
+
description: "Allows strong REFERENCE comparison wording only after the finite benchmark thresholds pass."
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
verification: ["node --test test/benchmark-claims.test.mjs", "node --test test/packed-artifact.test.mjs"]
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
id: "native-goal-verdict",
|
|
329
|
+
title: "Native Goal Verdict",
|
|
330
|
+
summary: "Documents that the local OpenCode CLI and plugin type surface do not expose a native goal primitive; LitOpenCode therefore owns durable goal state under .litopencode/litgoal.",
|
|
331
|
+
bindings: [
|
|
332
|
+
{
|
|
333
|
+
kind: "cli",
|
|
334
|
+
id: "opencode --help",
|
|
335
|
+
surface: "OpenCode CLI command list",
|
|
336
|
+
description: "The verified local CLI exposes plugin, agent, run, session, and related commands, but no goal command."
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
kind: "hook",
|
|
340
|
+
id: "@opencode-ai/plugin Hooks",
|
|
341
|
+
surface: "OpenCode plugin type surface",
|
|
342
|
+
description: "The verified Hooks type exposes config, tool, chat, command, permission, shell, provider, auth, event, and dispose surfaces, but no native goal hook."
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
kind: "config",
|
|
346
|
+
id: ".litopencode/litgoal",
|
|
347
|
+
surface: "LitOpenCode durable goal ledger",
|
|
348
|
+
description: "LitOpenCode uses its own ledger as the host-adapted goal state surface when the host has no native goal primitive."
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
verification: ["opencode --help", "node --test test/runtime-skills.test.mjs", "node --test test/docs.test.mjs"]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
id: "doctor-install",
|
|
355
|
+
title: "Doctor And Installer CLI",
|
|
356
|
+
summary: "Reports package, route config, and state health and installs or previews the OpenCode plugin plus LitOpenCode route config mutation.",
|
|
357
|
+
bindings: [
|
|
358
|
+
{
|
|
359
|
+
kind: "cli",
|
|
360
|
+
id: "litopencode doctor",
|
|
361
|
+
surface: "litopencode CLI doctor command",
|
|
362
|
+
description: "Reports package metadata, config source, litopencode.json route validity, effective agent routes, runtime paths, and state presence without writes."
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
kind: "cli",
|
|
366
|
+
id: "npm exec --package @litfamily/litopencode -- litopencode install",
|
|
367
|
+
surface: "litopencode CLI install command",
|
|
368
|
+
description: "Delegates default setup to OpenCode's plugin installer, creates litopencode.json when missing, preserves existing route config, or previews both mutations with --dry-run."
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
kind: "config",
|
|
372
|
+
id: "permissionMode: safe|balanced|yolo",
|
|
373
|
+
surface: "LitOpenCode route config and OpenCode config hook",
|
|
374
|
+
description: "Explicit permission preference modes: safe leaves OpenCode ask-first behavior, balanced allows routine automation while keeping dangerous bash patterns on ask, and yolo allows bash/edit/webfetch/external_directory globally. Both relaxed modes grant task delegation only to execution-capable primary agents, keep lit-plan and subagents task-denied so the planner stays read-only and child delegation stays depth-one, and preserve lit-plan edit/bash/task deny guards."
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
verification: ["node --test test/cli.test.mjs", "node --test test/config-state.test.mjs"]
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
id: "search-workflow-ideas",
|
|
381
|
+
title: "Search Workflow Ideas",
|
|
382
|
+
summary: "Exposes brand-clean, static public-source retrieval guidance with route fallback, explicit verdicts, SSRF boundaries, evidence traces, and A/B checks.",
|
|
383
|
+
bindings: [
|
|
384
|
+
{
|
|
385
|
+
kind: "config",
|
|
386
|
+
id: "litOpenCodeSearchWorkflowIdeas",
|
|
387
|
+
surface: "litopencode exported workflow catalog API",
|
|
388
|
+
description: "Provides immutable public-source retrieval workflow ideas for agents and package consumers."
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
kind: "config",
|
|
392
|
+
id: "findLitOpenCodeSearchWorkflowIdea",
|
|
393
|
+
surface: "litopencode exported workflow lookup API",
|
|
394
|
+
description: "Looks up a single workflow idea by id without changing hooks, tools, commands, or installer behavior."
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
verification: ["node --test test/search-workflow-ideas.test.mjs", "node --test test/packed-artifact.test.mjs"]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
id: "lit-fetch",
|
|
401
|
+
title: "Lit Fetch",
|
|
402
|
+
summary: "Fetches public HTTP(S) sources with SSRF guards, manual redirect validation, access verdicts, byte limits, and trace output.",
|
|
403
|
+
bindings: [
|
|
404
|
+
{
|
|
405
|
+
kind: "command",
|
|
406
|
+
id: "lit-fetch",
|
|
407
|
+
surface: "OpenCode command /lit-fetch",
|
|
408
|
+
description: "Selects the canonical skill through explicit command or bounded chat activation."
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
kind: "config",
|
|
412
|
+
id: "fetchPublicSource",
|
|
413
|
+
surface: "litopencode exported public-source fetch API",
|
|
414
|
+
description: "Retrieves public sources and returns ok, verdict, finalUrl, content, and trace fields."
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
kind: "cli",
|
|
418
|
+
id: "litopencode fetch-public",
|
|
419
|
+
surface: "litopencode CLI fetch-public command",
|
|
420
|
+
description: "Runs the public-source fetch runtime from the terminal with --json output for automation."
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
verification: ["node --test test/lit-fetch.test.mjs", "node --test test/cli.test.mjs", "node --test test/packed-artifact.test.mjs"]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
id: "guardrails",
|
|
427
|
+
title: "Release Guardrails",
|
|
428
|
+
summary: "Keeps release-sensitive checks visible through npm-script and CI gates before package publication work.",
|
|
429
|
+
bindings: [
|
|
430
|
+
{
|
|
431
|
+
kind: "cli",
|
|
432
|
+
id: "npm run scan:legacy-tokens",
|
|
433
|
+
surface: "npm guard command",
|
|
434
|
+
description: "Fails on guarded vocabulary unless an exact line-level exception is documented."
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
kind: "cli",
|
|
438
|
+
id: "npm run check:version",
|
|
439
|
+
surface: "npm guard command",
|
|
440
|
+
description: "Verifies package metadata and lockfile version lockstep."
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
kind: "cli",
|
|
444
|
+
id: "npm run check:pack-payload",
|
|
445
|
+
surface: "npm guard command",
|
|
446
|
+
description: "Verifies the dry pack manifest excludes local state, evidence, archives, and fixtures."
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
verification: ["npm run scan:legacy-tokens", "npm run check:version", "npm run check:pack-payload"]
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
id: "lit-init",
|
|
453
|
+
title: "Lit Init",
|
|
454
|
+
summary: "Documents the OpenCode-adapted workflow for creating sparse, evidence-backed AGENTS.md knowledge hierarchies.",
|
|
455
|
+
bindings: [
|
|
456
|
+
{
|
|
457
|
+
kind: "config",
|
|
458
|
+
id: "skills/lit-init/SKILL.md",
|
|
459
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
460
|
+
description: "Provides the lit-init workflow for repository discovery, directory scoring, careful AGENTS.md edits, and verification."
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
kind: "command",
|
|
464
|
+
id: "lit-init",
|
|
465
|
+
surface: "OpenCode command /lit-init",
|
|
466
|
+
description: "Makes the lit-init workflow directly invocable as an installed OpenCode command alias."
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
kind: "agent",
|
|
470
|
+
id: "read-only exploration lanes",
|
|
471
|
+
surface: "OpenCode task delegation and file-reading tools",
|
|
472
|
+
description: "Uses read-only exploration lanes plus local file inspection before any AGENTS.md file is created or updated."
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
verification: ["node --test test/runtime-skills.test.mjs", "node --test test/docs.test.mjs", "node --test test/static-workflow-command.test.mjs"]
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
id: "lit-crucible",
|
|
479
|
+
title: "Lit Crucible",
|
|
480
|
+
summary: "Documents an adversarial planning workflow that pressure-tests assumptions before handing a surviving insight bundle to lit-plan.",
|
|
481
|
+
bindings: [
|
|
482
|
+
{
|
|
483
|
+
kind: "config",
|
|
484
|
+
id: "skills/lit-crucible/SKILL.md",
|
|
485
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
486
|
+
description: "Provides the lit-crucible adversarial planning contract, critique loop, and lit-plan handoff boundary."
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
kind: "command",
|
|
490
|
+
id: "lit-crucible",
|
|
491
|
+
surface: "OpenCode command /lit-crucible",
|
|
492
|
+
description: "Makes Lit Crucible directly invocable as a planning-only installed OpenCode command alias."
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
kind: "agent",
|
|
496
|
+
id: "independent planning lanes",
|
|
497
|
+
surface: "OpenCode task delegation and planning agents",
|
|
498
|
+
description: "Uses independent read-only lanes to find risks, alternatives, tests, and cleanup obligations before planning."
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
verification: ["node --test test/runtime-skills.test.mjs", "node --test test/docs.test.mjs", "node --test test/static-workflow-command.test.mjs"]
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
id: "refactor",
|
|
505
|
+
title: "Refactor",
|
|
506
|
+
summary: "Documents a behavior-preserving restructuring workflow that keeps scope bounded and verifies before/after behavior through OpenCode-visible checks.",
|
|
507
|
+
bindings: [
|
|
508
|
+
{
|
|
509
|
+
kind: "config",
|
|
510
|
+
id: "skills/refactor/SKILL.md",
|
|
511
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
512
|
+
description: "Provides refactor entry criteria, invariants, red/green verification, diff review, and rollback boundaries."
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
kind: "command",
|
|
516
|
+
id: "refactor",
|
|
517
|
+
surface: "OpenCode command /refactor",
|
|
518
|
+
description: "Makes behavior-preserving restructuring directly invocable as an installed OpenCode command alias."
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
kind: "hook",
|
|
522
|
+
id: "chat.message",
|
|
523
|
+
surface: "OpenCode chat.message activation hook",
|
|
524
|
+
description: "Routes a bounded refactor mention in chat to the refactor activation prompt instead of the generic lit-loop fallback."
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
kind: "agent",
|
|
528
|
+
id: "lit-sentinel/lit-prover",
|
|
529
|
+
surface: "OpenCode review and verification subagents",
|
|
530
|
+
description: "Use independent review and proof lanes when a refactor touches multiple modules or behavior contracts."
|
|
531
|
+
}
|
|
532
|
+
],
|
|
533
|
+
verification: [
|
|
534
|
+
"node --test test/runtime-skills.test.mjs",
|
|
535
|
+
"node --test test/docs.test.mjs",
|
|
536
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
537
|
+
]
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
id: "lit-burnoff",
|
|
541
|
+
title: "Lit Burnoff",
|
|
542
|
+
summary: "Documents a cleanup workflow for removing AI-like artifacts from code, docs, and prose without changing supported behavior or meaning.",
|
|
543
|
+
bindings: [
|
|
544
|
+
{
|
|
545
|
+
kind: "config",
|
|
546
|
+
id: "skills/lit-burnoff/SKILL.md",
|
|
547
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
548
|
+
description: "Provides cleanup targets, preservation rules, reviewer checks, and no-overwrite safety boundaries."
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
kind: "command",
|
|
552
|
+
id: "lit-burnoff",
|
|
553
|
+
surface: "OpenCode command /lit-burnoff",
|
|
554
|
+
description: "Makes the machine-artifact cleanup workflow directly invocable as an installed OpenCode command alias."
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
kind: "hook",
|
|
558
|
+
id: "chat.message",
|
|
559
|
+
surface: "OpenCode chat.message activation hook",
|
|
560
|
+
description: "Routes a bounded lit-burnoff mention in chat to the cleanup activation prompt, including the trailing-instruction position."
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
kind: "cli",
|
|
564
|
+
id: "npm run scan:legacy-tokens",
|
|
565
|
+
surface: "npm guard command",
|
|
566
|
+
description: "Confirms cleanup wording did not introduce guarded vocabulary before release claims."
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
verification: [
|
|
570
|
+
"node --test test/runtime-skills.test.mjs",
|
|
571
|
+
"node --test test/docs.test.mjs",
|
|
572
|
+
"node --test test/static-workflow-command.test.mjs",
|
|
573
|
+
"npm run scan:legacy-tokens"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
id: "lit-burnoff-file",
|
|
578
|
+
title: "Lit Burnoff File",
|
|
579
|
+
summary: "Documents the single-file arm of machine-artifact cleanup, reached from the post-edit hook or an explicit single-file invocation, so one just-edited file is cleaned against its own diff.",
|
|
580
|
+
bindings: [
|
|
581
|
+
{
|
|
582
|
+
kind: "command",
|
|
583
|
+
id: "lit-burnoff-file",
|
|
584
|
+
surface: "OpenCode command /lit-burnoff-file",
|
|
585
|
+
description: "Selects the canonical skill through explicit command or bounded chat activation."
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
kind: "config",
|
|
589
|
+
id: "skills/lit-burnoff-file/SKILL.md",
|
|
590
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
591
|
+
description: "Provides the single-file cleanup pass, the diff-scoped review order, and the preservation rules that separate slop from intent."
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
kind: "hook",
|
|
595
|
+
id: "tool.execute.after",
|
|
596
|
+
surface: "OpenCode post-edit tool hook",
|
|
597
|
+
description: "Names lit-burnoff-file when exactly one source file was mutated by the host edit or write tool."
|
|
598
|
+
}
|
|
599
|
+
],
|
|
600
|
+
verification: [
|
|
601
|
+
"node --test test/runtime-skills.test.mjs",
|
|
602
|
+
"node --test test/docs.test.mjs",
|
|
603
|
+
"node --test test/tool-guards.test.mjs"
|
|
604
|
+
]
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
id: "comment-checker",
|
|
608
|
+
title: "Comment Checker",
|
|
609
|
+
summary: "Documents the post-edit comment review that judges only the comments this edit added or changed, with no external binary and no separate runner process.",
|
|
610
|
+
bindings: [
|
|
611
|
+
{
|
|
612
|
+
kind: "config",
|
|
613
|
+
id: "skills/comment-checker/SKILL.md",
|
|
614
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
615
|
+
description: "Provides the keep/delete/rewrite decision rules for added comment lines and the boundary that leaves untouched comments alone."
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
kind: "hook",
|
|
619
|
+
id: "tool.execute.after",
|
|
620
|
+
surface: "OpenCode post-edit tool hook",
|
|
621
|
+
description: "Names comment-checker when the host edit or write tool mutated a source-extension file."
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
verification: [
|
|
625
|
+
"node --test test/runtime-skills.test.mjs",
|
|
626
|
+
"node --test test/docs.test.mjs",
|
|
627
|
+
"node --test test/tool-guards.test.mjs"
|
|
628
|
+
]
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
id: "lit-code",
|
|
632
|
+
title: "Lit Code",
|
|
633
|
+
summary: "Documents minimum-first implementation discipline for OpenCode coding work, including tests, real-surface probes, delegation, and cleanup receipts.",
|
|
634
|
+
bindings: [
|
|
635
|
+
{
|
|
636
|
+
kind: "config",
|
|
637
|
+
id: "skills/lit-code/SKILL.md",
|
|
638
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
639
|
+
description: "Provides the coding workflow used by lit-loop and start-work when implementation is in scope."
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
kind: "command",
|
|
643
|
+
id: "lit-code",
|
|
644
|
+
surface: "OpenCode command /lit-code",
|
|
645
|
+
description: "Makes minimum-first implementation discipline directly invocable as an installed OpenCode command alias."
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
kind: "hook",
|
|
649
|
+
id: "chat.message",
|
|
650
|
+
surface: "OpenCode chat.message activation hook",
|
|
651
|
+
description: "Routes a bounded lit-code mention in chat to the implementation-discipline activation prompt."
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
kind: "agent",
|
|
655
|
+
id: "lit-loop/lit-implement",
|
|
656
|
+
surface: "OpenCode implementation agents",
|
|
657
|
+
description: "Apply lit-code guidance while preserving unrelated files and verifying real user-facing behavior."
|
|
658
|
+
}
|
|
659
|
+
],
|
|
660
|
+
verification: [
|
|
661
|
+
"node --test test/runtime-skills.test.mjs",
|
|
662
|
+
"node --test test/docs.test.mjs",
|
|
663
|
+
"node --test test/static-workflow-command.test.mjs",
|
|
664
|
+
"npm test"
|
|
665
|
+
]
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
id: "debugging",
|
|
669
|
+
title: "Debugging",
|
|
670
|
+
summary: "Documents hypothesis-first defect investigation: reproduce before theorising, predict an observation before testing it, and prove the mechanism before editing.",
|
|
671
|
+
bindings: [
|
|
672
|
+
{
|
|
673
|
+
kind: "config",
|
|
674
|
+
id: "skills/debugging/SKILL.md",
|
|
675
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
676
|
+
description: "Provides the reproduce/observe/hypothesise/predict/test loop, the bisect ladder, and the rule that a passing test is not a root cause."
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
kind: "command",
|
|
680
|
+
id: "debugging",
|
|
681
|
+
surface: "OpenCode command /debugging",
|
|
682
|
+
description: "Makes hypothesis-first defect investigation directly invocable as an installed OpenCode command alias."
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
kind: "hook",
|
|
686
|
+
id: "chat.message",
|
|
687
|
+
surface: "OpenCode chat.message activation hook",
|
|
688
|
+
description: "Routes a bounded debugging mention in chat to the investigation activation prompt."
|
|
689
|
+
}
|
|
690
|
+
],
|
|
691
|
+
verification: [
|
|
692
|
+
"node --test test/runtime-skills.test.mjs",
|
|
693
|
+
"node --test test/docs.test.mjs",
|
|
694
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
695
|
+
]
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
id: "lit-commit",
|
|
699
|
+
title: "Lit Commit",
|
|
700
|
+
summary: "Documents safe git hygiene for OpenCode sessions, including dirty worktree handling, diff review, commits, PRs, and no-release boundaries.",
|
|
701
|
+
bindings: [
|
|
702
|
+
{
|
|
703
|
+
kind: "config",
|
|
704
|
+
id: "skills/lit-commit/SKILL.md",
|
|
705
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
706
|
+
description: "Provides git inspection, staging, commit, branch, and release-boundary guardrails."
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
kind: "command",
|
|
710
|
+
id: "lit-commit",
|
|
711
|
+
surface: "OpenCode command /lit-commit",
|
|
712
|
+
description: "Makes git hygiene guidance directly invocable as an installed OpenCode command alias."
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
kind: "hook",
|
|
716
|
+
id: "chat.message",
|
|
717
|
+
surface: "OpenCode chat.message activation hook",
|
|
718
|
+
description: "Routes a bounded lit-commit mention in chat to the git hygiene activation prompt."
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
kind: "cli",
|
|
722
|
+
id: "git status/git diff/git log",
|
|
723
|
+
surface: "git command-line inspection",
|
|
724
|
+
description: "Use read-only status, diff, and recent-history checks before any requested commit or PR step."
|
|
725
|
+
}
|
|
726
|
+
],
|
|
727
|
+
verification: [
|
|
728
|
+
"node --test test/runtime-skills.test.mjs",
|
|
729
|
+
"node --test test/docs.test.mjs",
|
|
730
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
731
|
+
]
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
id: "lsp",
|
|
735
|
+
title: "LSP",
|
|
736
|
+
summary: "Documents how to use a language server that the OpenCode host already provides, and states plainly that LitOpenCode bundles no server and starts no daemon.",
|
|
737
|
+
bindings: [
|
|
738
|
+
{
|
|
739
|
+
kind: "config",
|
|
740
|
+
id: "skills/lsp/SKILL.md",
|
|
741
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
742
|
+
description: "Provides the capability probe, the diagnostics-before-edit order, and the boundary that no language server ships with this package."
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
kind: "command",
|
|
746
|
+
id: "lsp",
|
|
747
|
+
surface: "OpenCode command /lsp",
|
|
748
|
+
description: "Makes host language-server usage guidance directly invocable as an installed OpenCode command alias."
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
kind: "hook",
|
|
752
|
+
id: "chat.message",
|
|
753
|
+
surface: "OpenCode chat.message activation hook",
|
|
754
|
+
description: "Routes a bounded lsp mention in chat to the language-server activation prompt."
|
|
755
|
+
}
|
|
756
|
+
],
|
|
757
|
+
verification: [
|
|
758
|
+
"node --test test/runtime-skills.test.mjs",
|
|
759
|
+
"node --test test/docs.test.mjs",
|
|
760
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
id: "lsp-setup",
|
|
765
|
+
title: "LSP Setup",
|
|
766
|
+
summary: "Documents the exact complement of lsp: what to do when no language server is configured for the edited file type, without installing anything silently.",
|
|
767
|
+
bindings: [
|
|
768
|
+
{
|
|
769
|
+
kind: "config",
|
|
770
|
+
id: "skills/lsp-setup/SKILL.md",
|
|
771
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
772
|
+
description: "Provides the unconfigured-extension path: name the gap, offer the host config change, and fall back to compiler or test evidence."
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
kind: "command",
|
|
776
|
+
id: "lsp-setup",
|
|
777
|
+
surface: "OpenCode command /lsp-setup",
|
|
778
|
+
description: "Makes the unconfigured-language-server path directly invocable as an installed OpenCode command alias."
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
kind: "hook",
|
|
782
|
+
id: "chat.message",
|
|
783
|
+
surface: "OpenCode chat.message activation hook",
|
|
784
|
+
description: "Routes a bounded lsp-setup mention in chat to the language-server configuration activation prompt."
|
|
785
|
+
}
|
|
786
|
+
],
|
|
787
|
+
verification: [
|
|
788
|
+
"node --test test/runtime-skills.test.mjs",
|
|
789
|
+
"node --test test/docs.test.mjs",
|
|
790
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
791
|
+
]
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
id: "rules",
|
|
795
|
+
title: "Rules",
|
|
796
|
+
summary: "Ships and documents the bounded two-lane repository rules engine for OpenCode sessions, with static and edited-path delivery.",
|
|
797
|
+
bindings: [
|
|
798
|
+
{
|
|
799
|
+
kind: "config",
|
|
800
|
+
id: "skills/rules/SKILL.md",
|
|
801
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
802
|
+
description: "Documents discovery locations, precedence, glob scoping, bounded delivery, and the untrusted repository-data boundary."
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
kind: "command",
|
|
806
|
+
id: "rules",
|
|
807
|
+
surface: "OpenCode command /rules",
|
|
808
|
+
description: "Explains the shipped two-lane engine and makes repository rule discovery directly invocable as an installed command alias."
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
kind: "hook",
|
|
812
|
+
id: "experimental.chat.system.transform",
|
|
813
|
+
surface: "OpenCode experimental.chat.system.transform hook",
|
|
814
|
+
description: "Delivers repository-wide static rules once per session within the static lane budget."
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
kind: "hook",
|
|
818
|
+
id: "tool.execute.after",
|
|
819
|
+
surface: "OpenCode tool.execute.after hook",
|
|
820
|
+
description: "Discovers upward from edited paths and delivers matching glob-scoped dynamic rules within the dynamic lane budget."
|
|
821
|
+
}
|
|
822
|
+
],
|
|
823
|
+
verification: [
|
|
824
|
+
"node --test test/runtime-skills.test.mjs",
|
|
825
|
+
"node --test test/docs.test.mjs",
|
|
826
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
827
|
+
]
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
id: "deep-interview",
|
|
831
|
+
title: "Deep Interview",
|
|
832
|
+
summary: "Documents the pre-planning interview that converts a broad or underspecified request into a decision-complete brief before lit-plan is allowed to start.",
|
|
833
|
+
bindings: [
|
|
834
|
+
{
|
|
835
|
+
kind: "config",
|
|
836
|
+
id: "skills/deep-interview/SKILL.md",
|
|
837
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
838
|
+
description: "Provides the explore-before-ask rule, the one-fork-per-question rule, the stop condition, and the brief handed to lit-plan."
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
kind: "command",
|
|
842
|
+
id: "deep-interview",
|
|
843
|
+
surface: "OpenCode command /deep-interview",
|
|
844
|
+
description: "Makes the pre-planning interview directly invocable as a planning-only installed OpenCode command alias."
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
kind: "hook",
|
|
848
|
+
id: "chat.message",
|
|
849
|
+
surface: "OpenCode chat.message activation hook",
|
|
850
|
+
description: "Routes a bounded deep-interview mention in chat to the pre-planning interview activation prompt."
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
verification: [
|
|
854
|
+
"node --test test/runtime-skills.test.mjs",
|
|
855
|
+
"node --test test/docs.test.mjs",
|
|
856
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
857
|
+
]
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
id: "skill-observer",
|
|
861
|
+
title: "Skill Observer",
|
|
862
|
+
summary: "Connects proposal-only observation to an explicit approval, content-addressed rollback, deterministic curator, and the OpenCode user skill root without granting hooks mutation authority.",
|
|
863
|
+
bindings: [
|
|
864
|
+
{
|
|
865
|
+
kind: "config",
|
|
866
|
+
id: "skills/skill-observer/SKILL.md",
|
|
867
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
868
|
+
description: "Provides the three signals, shared review contract, pending-only review rules, explicit apply gate, ownership marker, rollback, and curator modes."
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
kind: "command",
|
|
872
|
+
id: "skill-observer",
|
|
873
|
+
surface: "OpenCode command /skill-observer",
|
|
874
|
+
description: "Makes proposal-only skill observation directly invocable as an installed OpenCode command alias."
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
kind: "hook",
|
|
878
|
+
id: "chat.message",
|
|
879
|
+
surface: "OpenCode chat.message activation hook",
|
|
880
|
+
description: "Routes the explicit skill-observer name to its activation prompt, and nothing else: ordinary review or observation talk stays inert."
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
kind: "hook",
|
|
884
|
+
id: "tool.execute.after",
|
|
885
|
+
surface: "OpenCode post-tool result channel",
|
|
886
|
+
description: "Performs bounded counter and pending-state writes only, then appends one bounded review notice on the following tool result without invoking a model."
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
kind: "config",
|
|
890
|
+
id: "skills/managed-skill-manifest.json",
|
|
891
|
+
surface: "OpenCode managed native skill installer",
|
|
892
|
+
description: "Pins and installs skill-observer/SKILL.md together with references/review-contract.md so the live review sees the verified contract bytes."
|
|
893
|
+
}
|
|
894
|
+
],
|
|
895
|
+
verification: [
|
|
896
|
+
"node --test test/skill-observer.test.mjs",
|
|
897
|
+
"node --test test/runtime-skills.test.mjs",
|
|
898
|
+
"node --test test/static-workflow-command.test.mjs",
|
|
899
|
+
"node --test test/skill-loop.test.mjs"
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
id: "browser-drive",
|
|
904
|
+
title: "Browser Drive",
|
|
905
|
+
summary: "Documents driving a real page through an external driver behind an identity probe, three named blockers, a snapshot-then-act loop, and an explicit-name-only chat route.",
|
|
906
|
+
bindings: [
|
|
907
|
+
{
|
|
908
|
+
kind: "config",
|
|
909
|
+
id: "skills/browser-drive/SKILL.md",
|
|
910
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
911
|
+
description: "Provides the driver identity probe, the three blocker codes, the snapshot-then-act loop, and the boundary against visual-qa."
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
kind: "command",
|
|
915
|
+
id: "browser-drive",
|
|
916
|
+
surface: "OpenCode command /browser-drive",
|
|
917
|
+
description: "Makes page-driving guidance directly invocable as an installed OpenCode command alias."
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
kind: "hook",
|
|
921
|
+
id: "chat.message",
|
|
922
|
+
surface: "OpenCode chat.message activation hook",
|
|
923
|
+
description: "Routes the explicit browser-drive name to its activation prompt, and nothing else: a passing mention of a browser or a URL stays inert."
|
|
924
|
+
}
|
|
925
|
+
],
|
|
926
|
+
verification: [
|
|
927
|
+
"node --test test/browser-drive.test.mjs",
|
|
928
|
+
"node --test test/runtime-skills.test.mjs",
|
|
929
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
930
|
+
]
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
id: "structural-search",
|
|
934
|
+
title: "Structural Search",
|
|
935
|
+
summary: "Documents syntax-shaped search and rewrite behind an identity probe, a three-state engine verdict, a labeled textual fallback, and a bounded rewrite boundary.",
|
|
936
|
+
bindings: [
|
|
937
|
+
{
|
|
938
|
+
kind: "config",
|
|
939
|
+
id: "skills/structural-search/SKILL.md",
|
|
940
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
941
|
+
description: "Provides the engine identity probe, the structural-versus-semantic split, the labeled fallback, and the four preconditions a rewrite must meet."
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
kind: "command",
|
|
945
|
+
id: "structural-search",
|
|
946
|
+
surface: "OpenCode command /structural-search",
|
|
947
|
+
description: "Makes syntax-shaped search guidance directly invocable as an installed OpenCode command alias."
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
kind: "hook",
|
|
951
|
+
id: "chat.message",
|
|
952
|
+
surface: "OpenCode chat.message activation hook",
|
|
953
|
+
description: "Routes a search or rewrite verb aimed at a syntax shape to the structural-search activation prompt."
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
verification: [
|
|
957
|
+
"node --test test/runtime-skills.test.mjs",
|
|
958
|
+
"node --test test/docs.test.mjs",
|
|
959
|
+
"node --test test/static-workflow-command.test.mjs"
|
|
960
|
+
]
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
id: "lit-korean",
|
|
964
|
+
title: "Lit Korean",
|
|
965
|
+
summary: "Documents a static review workflow for making Korean prose sound natural while reducing overwrought phrasing and preserving meaning.",
|
|
966
|
+
bindings: [
|
|
967
|
+
{
|
|
968
|
+
kind: "config",
|
|
969
|
+
id: "litOpenCodeRuntimeSkills",
|
|
970
|
+
surface: "litopencode exported runtime skill catalog",
|
|
971
|
+
description: "Exposes the lit-korean skill as discoverable static guidance without adding hooks, tools, or rewriting behavior."
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
kind: "command",
|
|
975
|
+
id: "lit-korean",
|
|
976
|
+
surface: "OpenCode command /lit-korean",
|
|
977
|
+
description: "Makes Korean prose naturalization guidance visible as an installed OpenCode command alias."
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
kind: "command",
|
|
981
|
+
id: "text-neutralization",
|
|
982
|
+
surface: "OpenCode command /text-neutralization",
|
|
983
|
+
description: "Makes restrained Korean prose neutralization guidance visible as an installed OpenCode command alias."
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
kind: "config",
|
|
987
|
+
id: "skills/lit-korean/SKILL.md",
|
|
988
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
989
|
+
description: "Provides the prose-review checklist, safety notes, and verification route for agents and package consumers."
|
|
990
|
+
}
|
|
991
|
+
],
|
|
992
|
+
verification: ["node --test test/runtime-skills.test.mjs", "node --test test/docs.test.mjs"]
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
id: "lit-recap",
|
|
996
|
+
title: "Lit Recap",
|
|
997
|
+
summary: "Provides a read-only Korean-default work recap synthesized from the durable LitOpenCode ledger and current session context without writing any state.",
|
|
998
|
+
bindings: [
|
|
999
|
+
{
|
|
1000
|
+
kind: "command",
|
|
1001
|
+
id: "lit-recap",
|
|
1002
|
+
surface: "OpenCode command /lit-recap",
|
|
1003
|
+
description: "Injects the static recap template without ledger writes, goal dispatch, or file creation."
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
kind: "config",
|
|
1007
|
+
id: "skills/lit-recap/SKILL.md",
|
|
1008
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
1009
|
+
description: "Documents the five-section recap format, brief digest, language switching, and read-only contract."
|
|
1010
|
+
}
|
|
1011
|
+
],
|
|
1012
|
+
verification: ["node --test test/lit-recap-command.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
id: "lit-comprehend",
|
|
1016
|
+
title: "Lit Comprehend",
|
|
1017
|
+
summary: "Builds a self-contained explainer artifact so the user can reason about work that was already done, with delta-anchored themes, intuition-first diagrams, micro-worlds, and an honesty ledger.",
|
|
1018
|
+
bindings: [
|
|
1019
|
+
{
|
|
1020
|
+
kind: "command",
|
|
1021
|
+
id: "lit-comprehend",
|
|
1022
|
+
surface: "OpenCode command /lit-comprehend",
|
|
1023
|
+
description: "Injects the lit-comprehend methodology and routes to the explainer-building workflow."
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
kind: "config",
|
|
1027
|
+
id: "skills/lit-comprehend/SKILL.md",
|
|
1028
|
+
surface: "LitOpenCode visible static skills corpus",
|
|
1029
|
+
description: "Documents the eight-step methodology, canonical sections, verifier contract, and output conventions."
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
kind: "hook",
|
|
1033
|
+
id: "chat.message",
|
|
1034
|
+
surface: "OpenCode chat.message activation hook",
|
|
1035
|
+
description: "Routes bounded lit-comprehend, comprehend, and $comprehend mentions in chat to the lit-comprehend activation prompt."
|
|
1036
|
+
}
|
|
1037
|
+
],
|
|
1038
|
+
verification: ["node --test test/comprehend-command.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
id: "lit-handoff",
|
|
1042
|
+
title: "Lit Handoff",
|
|
1043
|
+
summary: "Provides exact slash and bare-chat handoff activation backed by a package-vendored, hash-verified source contract.",
|
|
1044
|
+
bindings: [
|
|
1045
|
+
{
|
|
1046
|
+
kind: "command",
|
|
1047
|
+
id: "lit-handoff",
|
|
1048
|
+
surface: "OpenCode command /lit-handoff",
|
|
1049
|
+
description: "Injects the exact lit-handoff model probe line, adapter, complete original contract, and resolved template."
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
kind: "hook",
|
|
1053
|
+
id: "chat.message",
|
|
1054
|
+
surface: "OpenCode exact bare handoff route",
|
|
1055
|
+
description: "Activates only when an entire non-code chat message is handoff."
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
kind: "config",
|
|
1059
|
+
id: "skills/lit-handoff/SKILL.md",
|
|
1060
|
+
surface: "Flat OpenCode native skill wrapper",
|
|
1061
|
+
description: "Preserves the adapter and package-vendored exact source, eval, example, and template with hash-aware doctor checks."
|
|
1062
|
+
}
|
|
1063
|
+
],
|
|
1064
|
+
verification: ["node --test test/lit-handoff.test.mjs", "node --test test/runtime-skills.test.mjs"]
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
id: "lit-scientific-visualization",
|
|
1068
|
+
title: "Scientific Visualization",
|
|
1069
|
+
summary: "Provides exact slash and bare-chat OpenCode routes to the complete publication-figure corpus with vendor integrity, dependency reporting, and a harness-rendered session mark and model-emitted probe line.",
|
|
1070
|
+
bindings: [
|
|
1071
|
+
{
|
|
1072
|
+
kind: "command",
|
|
1073
|
+
id: "lit-scientific-visualization",
|
|
1074
|
+
surface: "OpenCode command /lit-scientific-visualization",
|
|
1075
|
+
description: "Injects the exact model probe line and resolves scripts, assets, references, tests, and styles from the native skill root."
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
kind: "hook",
|
|
1079
|
+
id: "chat.message",
|
|
1080
|
+
surface: "OpenCode exact bare lit-scientific-visualization route",
|
|
1081
|
+
description: "Activates only when an entire non-code chat message is the exact skill id."
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
kind: "hook",
|
|
1085
|
+
id: "experimental.text.complete",
|
|
1086
|
+
surface: "OpenCode user-facing completion hook",
|
|
1087
|
+
description: "Renders the standard mark on the first session completion and micro marks later, keeping the model-emitted probe separate."
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
kind: "config",
|
|
1091
|
+
id: "skills/lit-scientific-visualization/SKILL.md",
|
|
1092
|
+
surface: "Flat OpenCode native skill wrapper",
|
|
1093
|
+
description: "Ships the exact 16-file authored payload in vendor/ plus adapter license, provenance, and notice."
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
kind: "cli",
|
|
1097
|
+
id: "litopencode doctor",
|
|
1098
|
+
surface: "LitOpenCode dependency and payload doctor",
|
|
1099
|
+
description: "Reports hash integrity independently from READY or DEGRADED Python capability without installing dependencies."
|
|
1100
|
+
}
|
|
1101
|
+
],
|
|
1102
|
+
verification: ["node --test test/lit-scientific-visualization.test.mjs", "npm run check:pack-payload"]
|
|
1103
|
+
},
|
|
1104
|
+
frontendUiUxFeature,
|
|
1105
|
+
visualQaFeature
|
|
1106
|
+
]);
|
|
1107
|
+
export function findLitOpenCodeFeature(id) {
|
|
1108
|
+
return litOpenCodeFeatures.find((feature) => feature.id === id);
|
|
1109
|
+
}
|