litclaude-ai 0.3.36 → 0.3.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +48 -0
- package/README.md +87 -38
- package/README_ko-KR.md +82 -34
- package/RELEASE_CHECKLIST.md +35 -10
- package/bin/litclaude-ai.js +31 -0
- package/docs/hooks.md +49 -1
- package/docs/workflow-compatibility-audit.md +31 -4
- package/package.json +3 -1
- package/plugins/litclaude/.claude-plugin/plugin.json +1 -1
- package/plugins/litclaude/bin/litclaude-hook.js +79 -3
- package/plugins/litclaude/bin/litclaude-mcp.js +1 -1
- package/plugins/litclaude/commands/autoconference.md +54 -0
- package/plugins/litclaude/commands/autoresearch.md +54 -0
- package/plugins/litclaude/commands/lit-comprehend.md +130 -0
- package/plugins/litclaude/commands/wikify.md +52 -0
- package/plugins/litclaude/lib/canonical-frontend-commitments.mjs +37 -0
- package/plugins/litclaude/lib/canonical-frontend-corpus.mjs +377 -0
- package/plugins/litclaude/lib/canonical-runtime-closures.mjs +356 -0
- package/plugins/litclaude/lib/canonical-runtime-commitments.mjs +69 -0
- package/plugins/litclaude/lib/canonical-skill-catalog.mjs +4 -0
- package/plugins/litclaude/lib/canonical-skill-resources.mjs +19 -3
- package/plugins/litclaude/lib/immutable-expected-file-map.mjs +41 -0
- package/plugins/litclaude/lib/secure-path-read.mjs +252 -0
- package/plugins/litclaude/skills/autoconference/SKILL.md +97 -0
- package/plugins/litclaude/skills/autoresearch/SKILL.md +103 -0
- package/plugins/litclaude/skills/frontend-ui-ux/SKILL.md +27 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/_canonical-corpus/legal/frontend-ATTRIBUTION.md +218 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/_canonical-corpus/legal/frontend-LICENSE-Apache-2.0.txt +201 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/_canonical-corpus/legal/root-LICENSE +21 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/_canonical-corpus/manifest.json +873 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/complete-contract.md +5 -3
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/README.md +248 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/_INDEX.md +191 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/airbnb.md +393 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/airtable.md +92 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/apple.md +250 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/aside.md +209 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/binance.md +348 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/bmw.md +183 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/brutalist-skill.md +92 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/bugatti.md +271 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/cal.md +262 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/claude.md +315 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/clay.md +307 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/clickhouse.md +284 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/clone-from-url.md +65 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/cohere.md +269 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/coinbase.md +132 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/composio.md +310 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/cursor.md +312 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/design-system-architecture.md +244 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/elevenlabs.md +268 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/expo.md +284 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/ferrari.md +317 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/figma.md +223 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/framer.md +249 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/gpt-tasteskill.md +74 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/hashicorp.md +281 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/ibm.md +335 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/image-to-code-skill.md +1228 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/imagegen-brandkit.md +798 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/imagegen-frontend-mobile.md +1465 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/imagegen-frontend-web.md +987 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/intercom.md +149 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/kraken.md +128 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/lamborghini.md +291 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/layout-skill.md +107 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/lazyweb.md +77 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/linear.app.md +370 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/lovable.md +301 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/mastercard.md +368 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/meta.md +369 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/minimalist-skill.md +85 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/minimax.md +260 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/mintlify.md +329 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/miro.md +111 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/mistral.ai.md +264 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/mongodb.md +269 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/nike.md +366 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/notion.md +312 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/nvidia.md +296 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/ollama.md +270 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/opencode.ai.md +284 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/output-skill.md +49 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/pinterest.md +233 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/playstation.md +367 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/posthog.md +259 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/raycast.md +271 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/react-dev-tooling-skill.md +230 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/redesign-skill.md +178 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/renault.md +314 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/replicate.md +264 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/resend.md +306 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/revolut.md +188 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/runwayml.md +247 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/sanity.md +360 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/sentry.md +265 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/shopify.md +353 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/soft-skill.md +98 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/spacex.md +197 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/spotify.md +249 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/starbucks.md +583 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/stitch-design-example.md +121 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/stitch-skill.md +184 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/stripe.md +325 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/supabase.md +258 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/superhuman.md +255 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/taste-skill.md +1206 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/tesla.md +289 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/theverge.md +342 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/together.ai.md +266 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/uber.md +298 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/vercel.md +313 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/vodafone.md +426 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/voltagent.md +326 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/warp.md +256 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/webflow.md +95 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/wired.md +281 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/wise.md +176 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/x.ai.md +260 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/design/zapier.md +331 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/EVIDENCE.md +97 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/README.md +48 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/UPSTREAM.md +80 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/lane-a-direction.md +64 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/lane-b-execution.md +65 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/lane-c-review.md +65 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/lane-d-memory.md +83 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/orchestration.md +80 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/routing.md +79 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/LICENSE +21 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/accessibility-reviewer.md +83 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/content-writer.md +132 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-builder.md +109 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-critic.md +89 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-lead.md +113 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-scout.md +78 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/design-strategist.md +121 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/heuristic-evaluator.md +268 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/inspiration-scout.md +107 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/agents/motion-designer.md +120 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/accessible-content/reference.md +101 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/adaptive-interfaces/reference.md +109 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/cognitive-accessibility/reference.md +107 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-debate/reference.md +199 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-debt-tracker/reference.md +174 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-handoff/reference.md +125 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-md/reference.md +106 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-retrospective/reference.md +266 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-review/reference.md +123 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/design-system-alignment/reference.md +120 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/designpowers-critique/reference.md +164 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/heuristic-evaluation/reference.md +85 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/inclusive-personas/reference.md +98 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/inspiration-scouting/reference.md +165 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/interaction-design/reference.md +122 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/motion-choreography/reference.md +81 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/research-planning/reference.md +96 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/responsive-patterns/reference.md +77 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/synthetic-user-testing/reference.md +192 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/taste-feedback/reference.md +165 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/taste-report/reference.md +78 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/token-architecture/reference.md +75 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/ui-composition/reference.md +117 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/usability-testing/reference.md +78 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/verification-before-shipping/reference.md +125 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/voice-and-tone/reference.md +79 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/designpowers/vendor/skills/writing-design-plans/reference.md +119 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/perfection/README.md +160 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/perfection/react-perf-tooling.md +127 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/README.md +659 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/charts.csv +26 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/colors.csv +162 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/icons.csv +106 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/landing.csv +35 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/products.csv +162 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/react-performance.csv +45 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/astro.csv +54 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/flutter.csv +53 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/html-tailwind.csv +56 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/jetpack-compose.csv +53 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nextjs.csv +53 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nuxt-ui.csv +51 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/nuxtjs.csv +59 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/react-native.csv +52 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/react.csv +54 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/shadcn.csv +61 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/svelte.csv +54 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/swiftui.csv +51 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/stacks/vue.csv +50 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/styles.csv +85 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/typography.csv +74 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/ui-reasoning.csv +162 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/ux-guidelines.csv +100 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/data/web-interface.csv +31 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/scripts/core.py +262 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/scripts/design_system.py +1148 -0
- package/plugins/litclaude/skills/frontend-ui-ux/references/ui-ux-db/scripts/search.py +114 -0
- package/plugins/litclaude/skills/lit-comprehend/SKILL.md +404 -0
- package/plugins/litclaude/skills/lit-comprehend/assets/explainer-scaffold.html +231 -0
- package/plugins/litclaude/skills/lit-comprehend/references/artifact-template.md +218 -0
- package/plugins/litclaude/skills/lit-comprehend/references/micro-worlds.md +195 -0
- package/plugins/litclaude/skills/lit-comprehend/scripts/verify-explainer.mjs +300 -0
- package/plugins/litclaude/skills/visual-qa/references/complete-contract.md +4 -2
- package/plugins/litclaude/skills/wikify/SKILL.md +93 -0
- package/plugins/litclaude/vendor/018_llm-wikify/LICENSE +21 -0
- package/plugins/litclaude/vendor/018_llm-wikify/SKILL.md +758 -0
- package/plugins/litclaude/vendor/018_llm-wikify/assets/home-template.md +44 -0
- package/plugins/litclaude/vendor/018_llm-wikify/assets/maintenance-report-template.md +46 -0
- package/plugins/litclaude/vendor/018_llm-wikify/assets/paper-source-note-template.md +137 -0
- package/plugins/litclaude/vendor/018_llm-wikify/assets/source-note-template.md +45 -0
- package/plugins/litclaude/vendor/018_llm-wikify/assets/wiki-rules-template.md +117 -0
- package/plugins/litclaude/vendor/018_llm-wikify/src/commands/ingest.md +11 -0
- package/plugins/litclaude/vendor/018_llm-wikify/src/commands/init.md +13 -0
- package/plugins/litclaude/vendor/018_llm-wikify/src/commands/lint.md +17 -0
- package/plugins/litclaude/vendor/018_llm-wikify/src/commands/query.md +9 -0
- package/plugins/litclaude/vendor/018_llm-wikify/src/commands/save.md +19 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/LICENSE +21 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/SKILL.md +123 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/assets/report_template.md +50 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/assets/research_template.md +38 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/assets/results_template.tsv +2 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/references/results-logging.md +53 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/scripts/autoresearch-loop.sh +276 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/scripts/check_progress.sh +147 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/scripts/init_research.py +201 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/scripts/style_presets.py +104 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/autoresearch/SKILL.md +208 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/autoresearch/evaluator-contract.md +106 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/autoresearch/stuck-detection.md +100 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/debug/SKILL.md +228 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/debug/investigation-techniques.md +254 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/fix/SKILL.md +164 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/learn/SKILL.md +84 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/plan/SKILL.md +278 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/predict/SKILL.md +259 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/predict/persona-templates.md +225 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/reason/SKILL.md +162 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/scenario/SKILL.md +156 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/scenario/dimensions.md +171 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/security/SKILL.md +275 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/security/owasp-checklist.md +154 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/security/stride-model.md +189 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/ship/SKILL.md +214 -0
- package/plugins/litclaude/vendor/060_autoresearch-skill/skills/ship/type-checklists.md +156 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/LICENSE +21 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/SKILL.md +123 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/assets/conference_template.md +76 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/assets/report_template.md +53 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/assets/synthesis_template.md +39 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/references/agent-prompts.md +554 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/references/conference-protocol.md +589 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/references/core-principles.md +76 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/references/results-logging.md +163 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/references/visualization-guide.md +97 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/scripts/autoconference-loop.sh +271 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/scripts/check_conference.sh +205 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/scripts/init_conference.py +473 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/scripts/style_presets.py +104 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/analyze/SKILL.md +256 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/autoconference/SKILL.md +345 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/autoconference/convergence-guide.md +160 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/autoconference/crash-recovery.md +204 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/debate/SKILL.md +370 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/plan/SKILL.md +294 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/resume/SKILL.md +289 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/ship/SKILL.md +392 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/skills/survey/SKILL.md +363 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/code-performance.md +59 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/debate-mode.md +50 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/prompt-optimization.md +58 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/quick-conference.md +48 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/research-synthesis.md +56 -0
- package/plugins/litclaude/vendor/064_autoconference-skill/templates/survey-mode.md +63 -0
- package/plugins/litclaude/vendor/NOTICE.md +23 -1
- package/plugins/litclaude/vendor/canonical-runtime-closures.json +443 -0
- package/scripts/doctor.mjs +14 -0
- package/scripts/validate-plugin.mjs +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased — `lit-comprehend` explainer artifacts
|
|
4
|
+
|
|
5
|
+
- Add the `lit-comprehend` skill, the `/litclaude:lit-comprehend` command, and the
|
|
6
|
+
`lit-comprehend` / `comprehend` / `lit comprehend` / `$lit-comprehend` /
|
|
7
|
+
`$comprehend` hook routes. The trigger surface is deliberately wider than the
|
|
8
|
+
skill id — bare `comprehend` is what users type, the same reasoning that keeps
|
|
9
|
+
bare `recap` routed to `lit-recap`.
|
|
10
|
+
- Gate execution instead of narrowing activation: being invoked is not permission
|
|
11
|
+
to build. When the invocation names the file or commit set directly (a path, a
|
|
12
|
+
git range, a branch, a PR) the skill proceeds; otherwise it proposes the scope,
|
|
13
|
+
its countable size, what it excluded, and the rough cost, offers a one-sentence
|
|
14
|
+
answer when the request deserves one, and waits. The proposal is derived from
|
|
15
|
+
`git status` / `git diff --stat` / durable state, never by reading the tree — a
|
|
16
|
+
gate that costs as much as the thing it gates is not a gate.
|
|
17
|
+
- Fix a routing defect found while wiring this: `lit comprehend` and
|
|
18
|
+
`litwork comprehend` matched the bare `lit` / `litwork` tokens first and
|
|
19
|
+
activated lit-loop, injecting the wrong skill body. The two-token phrase now
|
|
20
|
+
resolves ahead of the leading-bare check, with a regression test.
|
|
21
|
+
- Where `lit-recap` answers *what happened*, `lit-comprehend` builds the artifact
|
|
22
|
+
a reader needs to reason about the work: it anchors on what they already knew
|
|
23
|
+
and explains only the delta, walks the change in conceptual rather than file
|
|
24
|
+
order, ships an interactive micro-world, discloses what is **not** verified,
|
|
25
|
+
and closes with a quiz framed as a speed regulator rather than a grade.
|
|
26
|
+
- Bundle `assets/explainer-scaffold.html` so the CSS, diagram components, and
|
|
27
|
+
quiz engine are written once instead of per invocation, plus
|
|
28
|
+
`references/artifact-template.md` and `references/micro-worlds.md`.
|
|
29
|
+
- Add `scripts/verify-explainer.mjs` as a real verification gate. It fails a
|
|
30
|
+
phantom code quote, a quote attributed to a missing file, an external resource
|
|
31
|
+
reference, a missing canonical section, an artifact written inside the
|
|
32
|
+
worktree, a quiz option without feedback or with a positional tell, collapsed
|
|
33
|
+
code blocks, and ASCII-art diagrams — the defect classes that leave a reader
|
|
34
|
+
confidently wrong rather than merely uninformed.
|
|
35
|
+
- Pin the whole `skills/lit-comprehend` tree in the canonical resource manifest so
|
|
36
|
+
the installer, install-time integrity gate, `doctor`, and package payload
|
|
37
|
+
guard all cover the bundled scaffold and verifier.
|
|
38
|
+
|
|
39
|
+
## 0.3.37 - 2026-07-29 — canonical frontend corpus and workflow families
|
|
40
|
+
|
|
41
|
+
- Ship the exact canonical frontend library with byte-pinned manifests, legal
|
|
42
|
+
companions, independent commitments, bounded reads, and source-to-tar payload
|
|
43
|
+
verification while retaining the independent normalized design dataset.
|
|
44
|
+
- Add Claude-native `autoresearch`, `autoconference`, and `wikify` skills and
|
|
45
|
+
command routes for their supported modes, including an explicit blocked state
|
|
46
|
+
when root multi-agent capability is unavailable.
|
|
47
|
+
- Bind the three workflow-family adapters and their complete source closures to
|
|
48
|
+
canonical manifests, immutable commitments, installed integrity checks, and
|
|
49
|
+
package-payload verification.
|
|
50
|
+
|
|
3
51
|
## 0.3.36 - 2026-07-28 — G8 UI/UX capability and evidence hardening
|
|
4
52
|
|
|
5
53
|
- Promote the beta Design and Evidence schemas to runtime authority while
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
<p align="center">
|
|
11
11
|
<img src="https://img.shields.io/badge/npm-litclaude--ai-cb3837" />
|
|
12
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
12
|
+
<img src="https://img.shields.io/badge/version-0.3.37-2ea44f" />
|
|
13
13
|
<img src="https://img.shields.io/badge/Claude%20Code-plugin-blueviolet" />
|
|
14
14
|
<img src="https://img.shields.io/badge/license-MIT-blue" />
|
|
15
15
|
</p>
|
|
@@ -22,27 +22,16 @@
|
|
|
22
22
|
> `litclaude@litclaude-ai`, so normal `claude` launches can load the
|
|
23
23
|
> LitClaude skills and hooks without a long `--plugin-dir` command.
|
|
24
24
|
|
|
25
|
-
This checkout
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
for installed tamper detection. Permission modes now mutate global Claude settings
|
|
36
|
-
`permissions.allow` and `permissions.deny`: pre-existing entries are preserved, only
|
|
37
|
-
entries LitClaude inserted are ownership-tracked, and only those inserted entries are
|
|
38
|
-
removed on a later mode change or uninstall.
|
|
39
|
-
Future package releases still require explicit user approval. The v0.3.34 release material adds packaged evidence-first UI/UX design intelligence, strict Design/Evidence/Review contracts, bounded PNG and TUI inspection, tier-correct independent review, and adversarial zero-false-PASS coverage. The v0.3.33 release material adds a quiet nonblocking npm update notice with strict cache, concurrency, timestamp, opt-out, and official-registry boundaries; preserves the installed permission mode and HUD accent on optionless updates; and makes source, install, installed-doctor, and Claude-details checks share the exact canonical skill catalog so missing packaged skills fail with `DOCTOR_FAIL`. The v0.3.32 release material adds the code-owned schema-3 start-work lifecycle with canonical bounded authority, explicit single-use resume grants, PreToolUse enforcement, root/subagent lane identity, progress-bound Stop continuation receipts, and fail-closed release boundaries. The v0.3.31 release material hardens litgoal creation, replacement, completion, and autoloop receipts while making visual QA browser ownership, bounded waits, blocked states, and cleanup evidence explicit. The v0.3.30 release material strengthens LitResearch with root-owned scientific evidence records, DOI/PDF lifecycle receipts, bounded route coverage, and a connection-pinned public-source reader with inert-content and secret-redaction guarantees. The v0.3.29 release material bundles exact-source `lit-handoff` and `lit-scientific-visualization` skills with Claude-native commands, exact-bare hook invocation, visible LITBURN banners, installed-payload integrity checks, and read-only scientific dependency diagnostics. The v0.3.28 release material requires explicit leading start-work invocations so diagnostic or copied mentions remain inert. The v0.3.27 release material adds a structured, animated five-stage installer with a success or failure receipt while preserving deterministic automation output. The v0.3.26 release material adds adaptive objective-achievable planning, draft-plan review, and orchestration readiness hardening. The v0.3.25 release material aligns portable details, public-read, litgoal status JSON, and evidence wording. The v0.3.24 release material aligns auxiliary skill inventories and advisory probes. The v0.3.23
|
|
40
|
-
release materials inject the bundled skill bodies for bare `hyperplan`,
|
|
41
|
-
`litresearch`, `lit research`, `init-deep`, and explicit `$start-work` prompt-hook routes while
|
|
42
|
-
preserving the v0.3.19 adversarial planning skill, the v0.3.18 read-only `lit-recap` session recap surface, the v0.3.17 separate-worker native `/goal` launcher, the v0.3.16
|
|
43
|
-
WSL2/Windows Terminal truecolor HUD gradient fix, the v0.3.15 Korean AI slop
|
|
44
|
-
remover workflow, the v0.3.13 public-source reader runtime, litresearch
|
|
45
|
-
activation/read-only polish, and installer permission-preference discipline.
|
|
25
|
+
This checkout contains the current package source and local install metadata. That
|
|
26
|
+
does not imply public promotion, marketplace publication, or advertisement. Package
|
|
27
|
+
publication, version changes, tags, and releases always require separate explicit
|
|
28
|
+
user approval. Current usage and safety behavior are documented here; cumulative
|
|
29
|
+
release history belongs in [CHANGELOG.md](./CHANGELOG.md).
|
|
30
|
+
|
|
31
|
+
Permission modes mutate global Claude settings `permissions.allow` and
|
|
32
|
+
`permissions.deny`: pre-existing entries are preserved, only entries LitClaude
|
|
33
|
+
inserted are ownership-tracked, and only those inserted entries are removed on a
|
|
34
|
+
later mode change or uninstall.
|
|
46
35
|
|
|
47
36
|
## Features
|
|
48
37
|
|
|
@@ -52,22 +41,22 @@ activation/read-only polish, and installer permission-preference discipline.
|
|
|
52
41
|
Claude Code's native command surface and do not double-activate the hook
|
|
53
42
|
- **Deep interview mode** - type `/deep-interview` or `$deep-interview` to
|
|
54
43
|
turn broad intent into a spec before planning or implementation
|
|
55
|
-
- **
|
|
44
|
+
- **Workflow review discipline** - adds `review-work` 5-lane review discipline and
|
|
56
45
|
litgoal runtime docs without claiming a package publication has completed
|
|
57
|
-
- **
|
|
46
|
+
- **Dynamic workflow hardening** - adds stricter subagent assignment
|
|
58
47
|
contracts, `start-work-next`, context-pressure resume guidance, precise
|
|
59
48
|
mutated-file detection, and richer `workflow-check --json` readiness checks
|
|
60
|
-
- **
|
|
49
|
+
- **Build-decision gate** - a minimum-first check that runs before the
|
|
61
50
|
language gate and prefers the standard library, a native feature, or an
|
|
62
51
|
installed dependency over hand-rolled code, with a reuse review after writing
|
|
63
|
-
- **
|
|
52
|
+
- **Native route hardening** - `lit goal` / `lit workflow` / `lit team`
|
|
64
53
|
routes attempt native Claude surfaces honestly, report degraded mode when a
|
|
65
54
|
host trigger is unavailable, and avoid phantom goal/workflow/team success
|
|
66
|
-
- **
|
|
55
|
+
- **Resilient public-source research** - `lit research`, `lit search`,
|
|
67
56
|
and `lit query` use validator-first source checks, public API/feed preference,
|
|
68
57
|
route traces, metadata fallback, and explicit stop reasons without crossing
|
|
69
58
|
authentication, paywall, or private-data boundaries
|
|
70
|
-
- **
|
|
59
|
+
- **Public-source reader runtime** - `litclaude public-read <url> --json`
|
|
71
60
|
and MCP `public_source_read` provide a callable JS-only public page reader with
|
|
72
61
|
SSRF/private-host guards, auth/paywall stop reasons, metadata/JSON-LD fallback,
|
|
73
62
|
and route evidence for research lanes
|
|
@@ -87,13 +76,18 @@ activation/read-only polish, and installer permission-preference discipline.
|
|
|
87
76
|
- **Claude skills** - a richer LitClaude-owned corpus: `programming`,
|
|
88
77
|
`debugging`, `refactor`, `ai-slop-remover`, `remove-ai-slops`,
|
|
89
78
|
`korean-ai-slop-remover`, `review-work`, `frontend-ui-ux`,
|
|
90
|
-
`git-master`, `comment-checker`, `rules`, `lsp`, `lsp-setup`, `litgoal`,
|
|
79
|
+
`git-master`, `comment-checker`, `lit-comprehend`, `rules`, `lsp`, `lsp-setup`, `litgoal`,
|
|
91
80
|
`deep-interview`, `hyperplan`, `init-deep`, `litresearch`,
|
|
92
81
|
`lit-plan`, `lit-recap`, `lit-loop`, `litwork`, `start-work`, `structural-search`,
|
|
93
82
|
`teammode`, `lit-handoff`, `lit-scientific-visualization`, and `visual-qa`
|
|
83
|
+
- **Canonical workflow families** - one Claude-native `autoresearch` skill routes
|
|
84
|
+
core/debug/fix/learn/plan/predict/reason/scenario/security/ship; one
|
|
85
|
+
`autoconference` skill routes core/analyze/debate/plan/resume/ship/survey and
|
|
86
|
+
fails with `BLOCKED_MULTI_AGENT_UNAVAILABLE` when root multi-agent capability is
|
|
87
|
+
absent; one task-local `wikify` skill routes init/ingest/query/save/lint
|
|
94
88
|
- **Bundled owner-authorized skills** - `lit-handoff` reads the complete immutable
|
|
95
89
|
four-file handoff source and supports the exact bare `handoff` prompt;
|
|
96
|
-
`lit-scientific-visualization` reads
|
|
90
|
+
`lit-scientific-visualization` reads its complete immutable authored
|
|
97
91
|
source, resolves packaged scripts and assets, and reports missing Python or
|
|
98
92
|
matplotlib as `DEGRADED` without silently installing dependencies
|
|
99
93
|
- **Auxiliary Skill-discovery entries with chat routes** - `frontend-ui-ux`,
|
|
@@ -113,14 +107,31 @@ activation/read-only polish, and installer permission-preference discipline.
|
|
|
113
107
|
- **Auxiliary workflow packs** - ships `programming/references`,
|
|
114
108
|
`programming/scripts`, and `debugging/references` for deeper language and
|
|
115
109
|
runtime guidance
|
|
116
|
-
- **Interface reference packs** - ships
|
|
117
|
-
|
|
118
|
-
and `visual-qa/references` (a per-channel capture playbook). Every reference
|
|
110
|
+
- **Interface reference packs** - ships routed design decision documents under
|
|
111
|
+
`frontend-ui-ux/references` and `visual-qa/references` (a per-channel capture playbook). Every reference
|
|
119
112
|
file is hash-pinned, and `npm run validate:plugin` fails when a shipped
|
|
120
113
|
reference is not reachable from its own entrypoint. Natural UI/UX activation
|
|
121
114
|
stays within 4096 UTF-8 bytes by injecting a synthetic bounded hook pointer, not the exact
|
|
122
115
|
`SKILL.md` body; each preserved dense contract is opened lazily from
|
|
123
116
|
`references/complete-contract.md`.
|
|
117
|
+
- **Exact canonical frontend library** - the optional `design`, `designpowers`,
|
|
118
|
+
`perfection`, and `ui-ux-db` roots are byte-pinned by a path/size/SHA-256
|
|
119
|
+
manifest with exact legal companions and no-extra checks. They are inert data,
|
|
120
|
+
never executable authority, and remain independent of the unchanged
|
|
121
|
+
34-source/2,277-record normalized design-intelligence dataset. Legal companion
|
|
122
|
+
paths, source paths, sizes, hashes, and aggregate are independently pinned outside
|
|
123
|
+
the generated manifest; these clean legal files are scanned normally rather than
|
|
124
|
+
receiving the corpus exemption. The package guard compares size and SHA-256 for every
|
|
125
|
+
canonical frontend corpus file, legal companion, runtime closure, manifest, and family
|
|
126
|
+
adapter between its verified pre-pack snapshot and the produced temporary tarball; path
|
|
127
|
+
presence alone is insufficient. Each canonical verifier returns an immutable expected
|
|
128
|
+
file map bound to verified manifests or independent commitments, and capture checks its
|
|
129
|
+
bytes against that map so mutation in the verifier-to-capture interval fails. The same
|
|
130
|
+
map requires regular, non-executable canonical files in source, capture, and tar headers;
|
|
131
|
+
any execute bit fails, while secure non-executable modes such as `0600` remain valid.
|
|
132
|
+
Canonical frontend preflight applies an 8 MiB
|
|
133
|
+
per-file and 32 MiB aggregate read budget, and runtime closure preflight applies the
|
|
134
|
+
same 8 MiB per-file and 32 MiB aggregate budget before whole-file reads.
|
|
124
135
|
- **Workflow agents** - planner, executor, verifier, reviewer, librarian, and QA runner
|
|
125
136
|
- **Local marketplace registration** - Claude can resolve `claude plugin details litclaude@litclaude-ai`
|
|
126
137
|
- **MCP and LSP helpers** - plugin-local stdio MCP plus TypeScript-family LSP doctor
|
|
@@ -156,13 +167,30 @@ package name as the registry package, older published builds such as
|
|
|
156
167
|
`npx --yes litclaude-ai@0.1.11 install` could resolve the local same-name
|
|
157
168
|
source checkout and fail with `sh: litclaude-ai: command not found`. This
|
|
158
169
|
checkout intentionally does not track a `node_modules/.bin` shim. From a fresh
|
|
159
|
-
directory, the
|
|
170
|
+
directory, use `@latest` for the version currently published on npm:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
cd /tmp
|
|
174
|
+
npx --yes litclaude-ai@latest install
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
`0.3.37` is the version prepared by this checkout. Registry lookup is authoritative
|
|
178
|
+
for whether that exact version can be installed:
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
npm view litclaude-ai@0.3.37 version
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
If that lookup returns 0.3.37, the exact install is available:
|
|
160
185
|
|
|
161
186
|
```bash
|
|
162
187
|
cd /tmp
|
|
163
|
-
npx --yes litclaude-ai@0.3.
|
|
188
|
+
npx --yes litclaude-ai@0.3.37 install
|
|
164
189
|
```
|
|
165
190
|
|
|
191
|
+
Otherwise, wait for explicit human publication and repeat the lookup before using
|
|
192
|
+
the exact version.
|
|
193
|
+
|
|
166
194
|
Validate the installed plugin:
|
|
167
195
|
|
|
168
196
|
```bash
|
|
@@ -188,7 +216,7 @@ The installer also sets Claude Code's `statusLine` command to the packaged
|
|
|
188
216
|
LitClaude HUD. A typical no-color render starts like:
|
|
189
217
|
|
|
190
218
|
```text
|
|
191
|
-
[🔥LITCLAUDE v0.3.
|
|
219
|
+
[🔥LITCLAUDE v0.3.37] | O4.8 │ ctx [▎░░] 9%/1000k │ 5h [▏░] 4% ↻2h15m │ 1w [▊░] 35% ↻3d6h │ git main +3 ✓
|
|
192
220
|
```
|
|
193
221
|
|
|
194
222
|
The `↻` suffix is a compact rate-limit reset countdown. It is separated from
|
|
@@ -306,6 +334,12 @@ handoff
|
|
|
306
334
|
/litclaude:lit-handoff
|
|
307
335
|
lit-scientific-visualization
|
|
308
336
|
/litclaude:lit-scientific-visualization <publication figure request>
|
|
337
|
+
autoresearch <mode> <objective>
|
|
338
|
+
/litclaude:autoresearch <mode> <objective>
|
|
339
|
+
autoconference <mode> <objective>
|
|
340
|
+
/litclaude:autoconference <mode> <objective>
|
|
341
|
+
wikify <init|ingest|query|save|lint> <scope or question>
|
|
342
|
+
/litclaude:wikify <init|ingest|query|save|lint> <scope or question>
|
|
309
343
|
```
|
|
310
344
|
|
|
311
345
|
Expected behavior: LitClaude's prompt hook adds mode-specific `LITWORK MODE
|
|
@@ -365,7 +399,7 @@ synthesis. Optional display setup is `claude --teammate-mode auto` or
|
|
|
365
399
|
`"teammateMode": "auto"`; if the env gate is absent, LitClaude says so and
|
|
366
400
|
offers subagent/Dynamic workflow fallback without pretending teammates launched.
|
|
367
401
|
|
|
368
|
-
|
|
402
|
+
`/dynamic-workflow` is the consolidated
|
|
369
403
|
bootstrap route for broad delegated work. It attempts native goal binding when a
|
|
370
404
|
supported goal tool surface exists, reports degraded `BLOCKED:` mode when it
|
|
371
405
|
does not, keeps `/goal` user-controlled, and maps subagent delegation to
|
|
@@ -427,7 +461,7 @@ instead of replaying stale blocking output. Subagent hooks
|
|
|
427
461
|
bind root-session, child-lane, and Claude-owned worktree identity; active lanes
|
|
428
462
|
gate completion.
|
|
429
463
|
|
|
430
|
-
|
|
464
|
+
`review-work` is the dedicated review route. It is a
|
|
431
465
|
5-lane review: scope/diff verification, tests/evidence execution,
|
|
432
466
|
package/payload and code quality, security/provenance, and real-surface/docs
|
|
433
467
|
readiness. The lanes bind to
|
|
@@ -603,6 +637,21 @@ npm run qa:real-surface
|
|
|
603
637
|
npm run pack:dry-run
|
|
604
638
|
```
|
|
605
639
|
|
|
640
|
+
`npm run scan:legacy-tokens` enumerates the repository once, captures every
|
|
641
|
+
enumerated file's exact bytes into an immutable in-memory snapshot, and scans
|
|
642
|
+
only that captured snapshot. Its report includes the snapshot file count and a
|
|
643
|
+
deterministic SHA-256 digest over the sorted inventory and bytes. A clean result
|
|
644
|
+
is scoped to those captured bytes: it does not prove the mutable live tree
|
|
645
|
+
remained clean after capture. Run the scanner again for a later tree state;
|
|
646
|
+
package and tarball guards independently verify their exact payloads. The tarball
|
|
647
|
+
guard compares every enrolled canonical file's size and SHA-256 with its verified
|
|
648
|
+
pre-pack snapshot, including corpus, legal, runtime closure, manifest, and adapter
|
|
649
|
+
files. Its immutable expected file map comes from the completed canonical verifiers,
|
|
650
|
+
so the verifier-to-capture interval cannot silently redefine expected bytes. It also
|
|
651
|
+
checks regular, non-executable source and tar semantics without requiring exact `0644`;
|
|
652
|
+
secure `0600` remains valid. Capture is bounded to 8 MiB per file and 32 MiB in aggregate; either limit returns a typed
|
|
653
|
+
failure instead of attempting an unbounded whole-repository allocation.
|
|
654
|
+
|
|
606
655
|
`validate:plugin` and `qa:tmux` are local checks. If Claude Code is not
|
|
607
656
|
available on the machine, the smoke harness records a controlled skip with the
|
|
608
657
|
version probe evidence instead of failing mysteriously.
|
package/README_ko-KR.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
<p align="center">
|
|
11
11
|
<img src="https://img.shields.io/badge/npm-litclaude--ai-cb3837" />
|
|
12
|
-
<img src="https://img.shields.io/badge/version-0.3.
|
|
12
|
+
<img src="https://img.shields.io/badge/version-0.3.37-2ea44f" />
|
|
13
13
|
<img src="https://img.shields.io/badge/Claude%20Code-plugin-blueviolet" />
|
|
14
14
|
<img src="https://img.shields.io/badge/license-MIT-blue" />
|
|
15
15
|
</p>
|
|
@@ -26,22 +26,14 @@
|
|
|
26
26
|
> 설치되므로, 매번 긴 `--plugin-dir` 없이 일반 `claude` 실행에서
|
|
27
27
|
> LitClaude skill과 hook을 불러올 수 있습니다.
|
|
28
28
|
|
|
29
|
-
현재 checkout
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
launcher와 v0.3.16 WSL2/Windows Terminal truecolor HUD gradient fix, v0.3.15
|
|
38
|
-
Korean AI slop remover workflow, v0.3.13 public-source reader runtime,
|
|
39
|
-
litresearch activation/read-only polish를 유지합니다.
|
|
40
|
-
|
|
41
|
-
v0.3.36 release material은 beta Design/Evidence schema authority, bounded lazy
|
|
42
|
-
hook context, contract-bound route/state/viewport PNG coverage,
|
|
43
|
-
provenance·freshness·root·capability 증거의 fail-closed blocker로 G8 UI/UX
|
|
44
|
-
capability/evidence path를 강화합니다.
|
|
29
|
+
현재 checkout에는 현재 package source와 local install metadata가 있습니다. 이것은
|
|
30
|
+
홍보, 공개 marketplace 등록, package publication을 의미하지 않습니다. publish, version
|
|
31
|
+
변경, tag, release는 항상 별도의 명시적 사용자 승인이 필요합니다. 현재 사용법과 안전
|
|
32
|
+
경계는 이 문서에서 설명하고, 누적 변경 이력은 [CHANGELOG.md](./CHANGELOG.md)에 둡니다.
|
|
33
|
+
|
|
34
|
+
Permission mode는 global Claude settings의 `permissions.allow`와 `permissions.deny`를
|
|
35
|
+
변경합니다. 기존 항목은 보존하고, LitClaude가 실제로 추가한 항목만 소유권을 기록하며,
|
|
36
|
+
mode 변경이나 uninstall 때도 그 항목만 제거합니다.
|
|
45
37
|
|
|
46
38
|
## 기능
|
|
47
39
|
|
|
@@ -51,22 +43,22 @@ capability/evidence path를 강화합니다.
|
|
|
51
43
|
Claude Code native command surface에서 처리되어 hook이 중복 활성화하지 않습니다.
|
|
52
44
|
- **Deep interview mode** - `/deep-interview` 또는 `$deep-interview`로 넓고
|
|
53
45
|
모호한 의도를 먼저 spec으로 정리한 뒤 계획/구현으로 넘김
|
|
54
|
-
- **
|
|
46
|
+
- **Workflow review discipline** - package publish가 끝났다고 말하지 않으면서
|
|
55
47
|
`review-work` 5-lane review discipline과 litgoal runtime 문서를 추가
|
|
56
|
-
- **
|
|
48
|
+
- **Dynamic workflow hardening** - 더 엄격한 subagent assignment
|
|
57
49
|
contract, `start-work-next`, context-pressure resume guidance, 정확한
|
|
58
50
|
mutated-file 감지, 강화된 `workflow-check --json` readiness check를 추가
|
|
59
|
-
- **
|
|
51
|
+
- **Build-decision gate** - language gate 앞에서 minimum-first check를
|
|
60
52
|
돌려 표준 라이브러리·네이티브 기능·이미 설치된 의존성을 직접 작성보다 먼저
|
|
61
53
|
쓰게 하고, 작성 후 reuse review를 추가
|
|
62
|
-
- **
|
|
54
|
+
- **Native route hardening** - `lit goal` / `lit workflow` / `lit team`
|
|
63
55
|
route가 Claude native surface를 정직하게 시도하고, host trigger가 없으면
|
|
64
56
|
degraded mode를 보고하며 가짜 goal/workflow/team 성공을 피함
|
|
65
|
-
- **
|
|
57
|
+
- **Public-source research 강화** - `lit research`, `lit search`,
|
|
66
58
|
`lit query`가 public API/feed 우선, validator-first 검증, route trace,
|
|
67
59
|
metadata fallback, 명확한 stop reason을 사용하고 인증/페이월/개인 데이터
|
|
68
60
|
경계를 넘지 않음
|
|
69
|
-
- **
|
|
61
|
+
- **Public-source reader runtime** - `litclaude public-read <url> --json`와
|
|
70
62
|
MCP `public_source_read`가 SSRF/private-host guard, auth/paywall stop reason,
|
|
71
63
|
metadata/JSON-LD fallback, route evidence를 제공하는 JS-only public page reader를 추가
|
|
72
64
|
- **5-lane review** - `/review-work`가 scope/diff verification,
|
|
@@ -85,12 +77,17 @@ capability/evidence path를 강화합니다.
|
|
|
85
77
|
- **Claude skills** - LitClaude 스타일을 더 풍부하게 옮긴 corpus:
|
|
86
78
|
`programming`, `debugging`, `refactor`, `ai-slop-remover`, `remove-ai-slops`,
|
|
87
79
|
`korean-ai-slop-remover`, `review-work`, `frontend-ui-ux`,
|
|
88
|
-
`git-master`, `comment-checker`, `rules`, `lsp`, `lsp-setup`, `litgoal`,
|
|
80
|
+
`git-master`, `comment-checker`, `lit-comprehend`, `rules`, `lsp`, `lsp-setup`, `litgoal`,
|
|
89
81
|
`deep-interview`, `hyperplan`, `init-deep`, `litresearch`,
|
|
90
82
|
`lit-plan`, `lit-recap`, `lit-loop`, `start-work`, `lit-handoff`,
|
|
91
83
|
`structural-search`, `teammode`, `lit-scientific-visualization`, `visual-qa`
|
|
84
|
+
- **Canonical workflow family** - Claude-native `autoresearch`는
|
|
85
|
+
core/debug/fix/learn/plan/predict/reason/scenario/security/ship을,
|
|
86
|
+
`autoconference`는 core/analyze/debate/plan/resume/ship/survey를 라우팅하며 root
|
|
87
|
+
multi-agent capability가 없으면 `BLOCKED_MULTI_AGENT_UNAVAILABLE`로 멈춥니다.
|
|
88
|
+
task-local `wikify`는 init/ingest/query/save/lint를 라우팅합니다.
|
|
92
89
|
- **원본 보존 bundled skills** - `lit-handoff`는 승인된 4개 handoff 원본
|
|
93
|
-
파일을, `lit-scientific-visualization`은 승인된 authored
|
|
90
|
+
파일을, `lit-scientific-visualization`은 승인된 authored 원본을
|
|
94
91
|
byte-identical하게 포함합니다. Python 또는 matplotlib이 없으면 자동
|
|
95
92
|
설치하지 않고 해당 capability를 `DEGRADED`로 보고합니다.
|
|
96
93
|
- **Auxiliary Skill-discovery entries + chat route** - `frontend-ui-ux`,
|
|
@@ -112,14 +109,28 @@ capability/evidence path를 강화합니다.
|
|
|
112
109
|
- **Auxiliary workflow packs** - `programming/references`,
|
|
113
110
|
`programming/scripts`, `debugging/references`까지 포함해서 언어별,
|
|
114
111
|
런타임별 세부 지침을 보존
|
|
115
|
-
- **Interface reference packs** -
|
|
116
|
-
|
|
112
|
+
- **Interface reference packs** - 라우팅된 디자인 결정 문서가 있는
|
|
113
|
+
`frontend-ui-ux/references`와
|
|
117
114
|
`visual-qa/references`(채널별 capture playbook)를 포함합니다. 모든 reference
|
|
118
115
|
파일은 hash-pinned이고, entrypoint에서 도달할 수 없는 reference가 있으면
|
|
119
|
-
`npm run validate:plugin`이 실패합니다.
|
|
120
|
-
검증합니다. 자연어 UI/UX hook은 정확한 `SKILL.md` 본문이 아니라 synthetic bounded hook pointer를
|
|
116
|
+
`npm run validate:plugin`이 실패합니다. canonical manifest가 shipped resource 무결성을 검증합니다. 자연어 UI/UX hook은 정확한 `SKILL.md` 본문이 아니라 synthetic bounded hook pointer를
|
|
121
117
|
주입하고 상세 `references/complete-contract.md`는 필요할 때만 읽습니다. prompt-time rule을 합친 최종
|
|
122
118
|
`additionalContext`도 UTF-8 기준 **4096 바이트 이하**입니다.
|
|
119
|
+
- **Exact canonical frontend library** - `design`, `designpowers`, `perfection`,
|
|
120
|
+
`ui-ux-db`는 path/size/SHA-256 manifest, exact legal companion, no-extra gate로
|
|
121
|
+
byte-pinned됩니다. 모두 inert data이며 실행 권한이 아닙니다. 기존
|
|
122
|
+
34-source/2,277-record normalized design-intelligence dataset은 변경 없이 독립적으로 유지됩니다.
|
|
123
|
+
Legal 파일의 path, source path, size, hash, aggregate는 generated manifest 외부에서
|
|
124
|
+
독립적으로 고정되며, 이 파일들은 corpus 예외를 받지 않고 일반 검사됩니다.
|
|
125
|
+
Package guard는 검증된 pre-pack snapshot과 생성된 임시 tarball을 비교해 canonical frontend
|
|
126
|
+
corpus, legal companion, runtime closure, manifest, family adapter 전 파일의 size와 SHA-256을
|
|
127
|
+
확인합니다. Path 존재만으로는 통과할 수 없습니다. 각 verifier는 검증된 manifest 또는
|
|
128
|
+
독립 commitment에 묶인 immutable expected file map을 반환하며, capture는 바이트를 이 map과
|
|
129
|
+
대조하므로 verifier-to-capture interval의 변경도 실패합니다. 같은 map은 source, capture,
|
|
130
|
+
tar header의 regular non-executable semantics를 요구합니다. Execute bit가 하나라도 있으면
|
|
131
|
+
실패하지만 exact `0644`는 요구하지 않으므로 secure `0600`은 유효합니다.
|
|
132
|
+
Canonical frontend preflight는 whole-file read 전에 파일당 8 MiB와 전체 32 MiB를,
|
|
133
|
+
runtime closure preflight도 파일당 8 MiB와 전체 32 MiB를 한도로 적용합니다.
|
|
123
134
|
- **Beta Design/Evidence authority** - UI 작성의 권위 스키마는
|
|
124
135
|
`litfamily.design-contract/v1beta1`, 시각 증거의 권위 스키마는
|
|
125
136
|
`litfamily.evidence-manifest/v1beta1`입니다. alpha는 migration-only이며
|
|
@@ -165,13 +176,30 @@ plain `INSTALL_STEP` line을 유지하며 `--dry-run`은 계속 side-effect-free
|
|
|
165
176
|
`npx --yes litclaude-ai@0.1.11 install` 같은 이전 published build가 local
|
|
166
177
|
checkout을 먼저 해석해서 `sh: litclaude-ai: command not found`로 실패할 수
|
|
167
178
|
있었습니다. 이 checkout은 `node_modules/.bin` shim을 의도적으로 추적하지
|
|
168
|
-
않습니다. 새 폴더에서는
|
|
179
|
+
않습니다. 새 폴더에서는 npm에 현재 공개된 버전을 가리키는 `@latest`를 사용합니다.
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
cd /tmp
|
|
183
|
+
npx --yes litclaude-ai@latest install
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
`0.3.37`은 이 checkout에서 준비 중인 version입니다. exact version의 설치 가능
|
|
187
|
+
여부에는 registry 조회 결과를 authoritative한 기준으로 사용합니다.
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
npm view litclaude-ai@0.3.37 version
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
조회 결과가 0.3.37이면 exact install을 사용할 수 있습니다.
|
|
169
194
|
|
|
170
195
|
```bash
|
|
171
196
|
cd /tmp
|
|
172
|
-
npx --yes litclaude-ai@0.3.
|
|
197
|
+
npx --yes litclaude-ai@0.3.37 install
|
|
173
198
|
```
|
|
174
199
|
|
|
200
|
+
그렇지 않으면 명시적인 human publication을 기다립니다. 게시 후 조회를 다시 실행해
|
|
201
|
+
candidate가 반환되는지 확인한 뒤 exact version을 사용합니다.
|
|
202
|
+
|
|
175
203
|
설치 상태를 확인합니다.
|
|
176
204
|
|
|
177
205
|
```bash
|
|
@@ -197,7 +225,7 @@ installer는 Claude Code의 `statusLine` command도 packaged LitClaude HUD로
|
|
|
197
225
|
설정합니다. 색상을 제거한 예시는 다음처럼 시작합니다.
|
|
198
226
|
|
|
199
227
|
```text
|
|
200
|
-
[🔥LITCLAUDE v0.3.
|
|
228
|
+
[🔥LITCLAUDE v0.3.37] | O4.8 │ ctx [▎░░] 9%/1000k │ 5h [▏░] 4% ↻2h15m │ 1w [▊░] 35% ↻3d6h │ git main +3 ✓
|
|
201
229
|
```
|
|
202
230
|
|
|
203
231
|
`↻` 표시는 rate-limit reset까지 남은 시간을 짧게 보여주는 countdown입니다.
|
|
@@ -308,6 +336,12 @@ handoff
|
|
|
308
336
|
/litclaude:lit-handoff
|
|
309
337
|
lit-scientific-visualization
|
|
310
338
|
/litclaude:lit-scientific-visualization <출판용 figure 요청>
|
|
339
|
+
autoresearch <mode> <objective>
|
|
340
|
+
/litclaude:autoresearch <mode> <objective>
|
|
341
|
+
autoconference <mode> <objective>
|
|
342
|
+
/litclaude:autoconference <mode> <objective>
|
|
343
|
+
wikify <init|ingest|query|save|lint> <scope 또는 question>
|
|
344
|
+
/litclaude:wikify <init|ingest|query|save|lint> <scope 또는 question>
|
|
311
345
|
```
|
|
312
346
|
|
|
313
347
|
기대 동작은 LitClaude prompt hook이 자연어 LIT route별 mode-specific
|
|
@@ -351,7 +385,7 @@ capability boundary와 ledger 기반 ready-to-paste condition은 clean-room
|
|
|
351
385
|
worktree를 필요로 하면 `EnterWorktree`를 사용합니다. CLI surface만 가능한 새 격리
|
|
352
386
|
lane에서는 `claude --worktree <short-name> --tmux`를 사용합니다.
|
|
353
387
|
|
|
354
|
-
|
|
388
|
+
`/dynamic-workflow`는 넓은 위임 작업을
|
|
355
389
|
위한 통합 bootstrap route입니다. `/goal`은 user-controlled 상태로 두고,
|
|
356
390
|
model-facing goal tools가 노출되면 확인하며, 필요하면 정확한 fallback
|
|
357
391
|
`/goal <completion condition>`만 제안합니다. subagent delegation은
|
|
@@ -376,7 +410,7 @@ litclaude-ai start-work-next --session-id <claude-session> --json
|
|
|
376
410
|
plan, ledger path, 첫 번째 unchecked top-level task를 출력합니다. Plan이 끝났으면
|
|
377
411
|
`{"status":"idle","directive":null}`을 반환합니다.
|
|
378
412
|
|
|
379
|
-
|
|
413
|
+
`review-work`는 전용 review route입니다. 5-lane
|
|
380
414
|
review는 scope/diff verification, tests/evidence execution,
|
|
381
415
|
package/payload and code quality, security/provenance,
|
|
382
416
|
real-surface/docs readiness를 포함합니다. 각 lane은
|
|
@@ -550,6 +584,20 @@ npm run qa:real-surface
|
|
|
550
584
|
npm run pack:dry-run
|
|
551
585
|
```
|
|
552
586
|
|
|
587
|
+
`npm run scan:legacy-tokens`는 저장소를 한 번 열거하고, 열거된 모든 파일의
|
|
588
|
+
정확한 바이트를 변경 불가능한 인메모리 스냅샷으로 캡처한 뒤 그 스냅샷만
|
|
589
|
+
검사합니다. 보고서에는 스냅샷 파일 수와 정렬된 인벤토리 및 바이트의
|
|
590
|
+
결정론적 SHA-256 다이제스트가 포함됩니다. clean 결과는 캡처된 바이트에만
|
|
591
|
+
적용되며, 캡처 이후 mutable 라이브 트리가 계속 clean이었다는 사실을
|
|
592
|
+
입증하지 않습니다. 이후 트리 상태는 스캐너를 다시 실행해야 하며 package와
|
|
593
|
+
tarball guard는 각자의 정확한 payload를 독립적으로 검증합니다. Corpus, legal, runtime
|
|
594
|
+
closure, manifest, adapter로 등록된 모든 canonical 파일의 size와 SHA-256을 검증된
|
|
595
|
+
pre-pack snapshot과 비교합니다. Immutable expected file map은 완료된 verifier 결과에서
|
|
596
|
+
오므로 verifier-to-capture interval에서 기대 바이트를 바꿀 수 없습니다. Source와 tar의
|
|
597
|
+
regular non-executable semantics도 검사하며 exact `0644` 대신 secure `0600`을 허용합니다. 캡처 한도는
|
|
598
|
+
파일당 8 MiB, 전체 32 MiB이며, 한도를 넘으면 저장소 전체를 무제한으로
|
|
599
|
+
할당하지 않고 typed failure를 반환합니다.
|
|
600
|
+
|
|
553
601
|
`validate:plugin`과 `qa:tmux`는 로컬 검증용입니다. Claude Code가 없는
|
|
554
602
|
환경에서는 smoke harness가 모호한 실패 대신 controlled skip과 version
|
|
555
603
|
probe evidence를 남깁니다.
|
package/RELEASE_CHECKLIST.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# LitClaude Release Checklist
|
|
2
2
|
|
|
3
|
-
Status: `litclaude-ai@0.3.
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Status: `litclaude-ai@0.3.37` is the current release candidate — exact canonical
|
|
4
|
+
frontend corpus plus Claude-native `autoresearch`, `autoconference`, and `wikify`
|
|
5
|
+
workflow-family integration. It byte-pins the frontend library, legal companions,
|
|
6
|
+
family source closures, and adapters through independent commitments and package
|
|
7
|
+
verification. It also carries G8 UI/UX capability and evidence hardening with
|
|
8
|
+
beta Design/Evidence schema authority, bounded lazy hook context, contract-bound
|
|
9
|
+
PNG inventory, and fail-closed
|
|
6
10
|
provenance, freshness, root, and capability blockers. It also carries restored
|
|
7
11
|
litwork, rules-engine, plan-scaffolding, litgoal-drift, structural-search,
|
|
8
12
|
comment-checker, and teammode surfaces with tracked regression tests and
|
|
@@ -41,9 +45,9 @@ side-effect-free, the launcher starts only a separate Claude Code
|
|
|
41
45
|
print/background worker, and the release preserves the Korean polishing
|
|
42
46
|
command, strict multi-agent review pipeline, fidelity guardrails, package
|
|
43
47
|
hygiene checks, native route gates, and safe start-work handoff behavior.
|
|
44
|
-
`package.json` is aligned to `0.3.
|
|
45
|
-
`plugins/litclaude/.claude-plugin/plugin.json` is aligned to `0.3.
|
|
46
|
-
plugin-local MCP server reports `0.3.
|
|
48
|
+
`package.json` is aligned to `0.3.37`,
|
|
49
|
+
`plugins/litclaude/.claude-plugin/plugin.json` is aligned to `0.3.37`, and the
|
|
50
|
+
plugin-local MCP server reports `0.3.37`.
|
|
47
51
|
|
|
48
52
|
This release carries the v0.2.2 Dynamic workflow hardening surfaces:
|
|
49
53
|
`/dynamic-workflow`, `workflow-check --json`, native `/goal` fallback guidance,
|
|
@@ -66,7 +70,7 @@ selection, `0.1.16` added rate-limit reset countdown and deep-interview install
|
|
|
66
70
|
guidance, and `0.1.18` covered compact HUD bars and broader brand accent
|
|
67
71
|
behavior.
|
|
68
72
|
|
|
69
|
-
##
|
|
73
|
+
## Required Local Verification
|
|
70
74
|
|
|
71
75
|
- `npm test`
|
|
72
76
|
- `npm run validate:plugin`
|
|
@@ -95,6 +99,27 @@ Use this track when testing from the current checkout:
|
|
|
95
99
|
|
|
96
100
|
No npm publication is required for this track.
|
|
97
101
|
|
|
102
|
+
## v0.3.37 Canonical Frontend Corpus and Workflow-Family Gates
|
|
103
|
+
|
|
104
|
+
Before requesting publication approval, confirm the `design`, `designpowers`,
|
|
105
|
+
`perfection`, and `ui-ux-db` frontend roots match their path/size/SHA-256
|
|
106
|
+
manifest, exact legal companions, independent commitments, no-extra inventory,
|
|
107
|
+
regular non-executable modes, and bounded read budgets. The unchanged
|
|
108
|
+
34-source/2,277-record normalized design dataset remains independently verified.
|
|
109
|
+
|
|
110
|
+
Confirm the complete `autoresearch`, `autoconference`, and `wikify` source
|
|
111
|
+
closures match their canonical manifest and independent tree commitments. Their
|
|
112
|
+
Claude-native skills and commands must expose the documented mode inventories,
|
|
113
|
+
safe leading bare and dollar hook routes, inert near misses, explicit publication
|
|
114
|
+
boundaries, and `BLOCKED_MULTI_AGENT_UNAVAILABLE` when an autoconference cannot
|
|
115
|
+
use root multi-agent capability.
|
|
116
|
+
|
|
117
|
+
Run `npm run check:runtime-closures`, `npm run check:skill-resources`,
|
|
118
|
+
`npm run validate:plugin`, and `npm run pack:payload-guard`. The payload guard
|
|
119
|
+
must compare the verified source snapshot with the temporary tarball by size,
|
|
120
|
+
SHA-256, and executable semantics for every canonical corpus file, legal
|
|
121
|
+
companion, source-closure file, manifest, and family adapter.
|
|
122
|
+
|
|
98
123
|
## v0.3.34 Evidence-First UI/UX and Visual QA Gates
|
|
99
124
|
|
|
100
125
|
Before requesting publication approval, confirm `frontend-ui-ux` ships the
|
|
@@ -255,9 +280,9 @@ checkout and from an isolated install of the packed tarball:
|
|
|
255
280
|
Before requesting publication approval, confirm these artifacts from the current
|
|
256
281
|
checkout:
|
|
257
282
|
|
|
258
|
-
- `package.json` version is `0.3.
|
|
259
|
-
- `plugins/litclaude/.claude-plugin/plugin.json` version is `0.3.
|
|
260
|
-
- `plugins/litclaude/bin/litclaude-mcp.js` reports server version `0.3.
|
|
283
|
+
- `package.json` version is `0.3.37`.
|
|
284
|
+
- `plugins/litclaude/.claude-plugin/plugin.json` version is `0.3.37`.
|
|
285
|
+
- `plugins/litclaude/bin/litclaude-mcp.js` reports server version `0.3.37`.
|
|
261
286
|
- Prompt-hook tests cover bundled `SKILL.md` body injection for bare `hyperplan`, `litresearch`, `lit research`, `init-deep`, and explicit leading `$start-work`; diagnostic/copy mentions stay inert while leading natural-language `lit start work` stays BLOCKED.
|
|
262
287
|
- `lit search` and `lit query` route to `/litclaude:litresearch` without activating on slash mentions, code spans, or non-lit prompts.
|
|
263
288
|
- Litresearch web lanes require public API/feed preference, validator-first checks, route traces, prompt-injection quarantine, and honest auth/paywall/private-data stop reasons.
|