claude-skill-lord 1.5.1 → 2.0.2
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/.claude-plugin/plugin.json +28 -6
- package/CLAUDE.md +94 -16
- package/README.md +195 -44
- package/agents/brainstormer.md +0 -2
- package/agents/code-reviewer.md +145 -278
- package/agents/copywriter.md +0 -1
- package/agents/cpp-build-resolver.md +90 -0
- package/agents/cpp-reviewer.md +72 -0
- package/agents/database-admin.md +0 -1
- package/agents/database-reviewer.md +91 -0
- package/agents/debugger.md +0 -1
- package/agents/doc-updater.md +107 -0
- package/agents/docs-lookup.md +68 -0
- package/agents/docs-manager.md +0 -1
- package/agents/flutter-reviewer.md +243 -0
- package/agents/go-build-resolver.md +94 -0
- package/agents/go-reviewer.md +76 -0
- package/agents/java-build-resolver.md +153 -0
- package/agents/java-reviewer.md +92 -0
- package/agents/journal-writer.md +113 -0
- package/agents/kotlin-build-resolver.md +118 -0
- package/agents/kotlin-reviewer.md +159 -0
- package/agents/mcp-manager.md +93 -0
- package/agents/planner.md +22 -232
- package/agents/python-reviewer.md +98 -0
- package/agents/pytorch-build-resolver.md +120 -0
- package/agents/researcher.md +34 -0
- package/agents/rust-build-resolver.md +148 -0
- package/agents/rust-reviewer.md +94 -0
- package/agents/scout-external.md +131 -0
- package/agents/tester.md +102 -0
- package/agents/typescript-reviewer.md +112 -0
- package/agents/ui-ux-designer.md +1 -2
- package/commands/aside.md +164 -0
- package/commands/build-fix.md +0 -4
- package/commands/checkpoint.md +74 -0
- package/commands/claw.md +51 -0
- package/commands/code-review.md +0 -4
- package/commands/context-budget.md +29 -0
- package/commands/cpp-build.md +173 -0
- package/commands/cpp-review.md +132 -0
- package/commands/cpp-test.md +251 -0
- package/commands/devfleet.md +92 -0
- package/commands/docs.md +31 -0
- package/commands/eval.md +120 -0
- package/commands/git/cm.md +0 -6
- package/commands/git/cp.md +1 -6
- package/commands/go-build.md +183 -0
- package/commands/go-review.md +148 -0
- package/commands/go-test.md +268 -0
- package/commands/gradle-build.md +70 -0
- package/commands/harness-audit.md +71 -0
- package/commands/instinct-export.md +66 -0
- package/commands/instinct-import.md +114 -0
- package/commands/instinct-status.md +59 -0
- package/commands/kotlin-build.md +174 -0
- package/commands/kotlin-review.md +140 -0
- package/commands/kotlin-test.md +312 -0
- package/commands/learn-eval.md +116 -0
- package/commands/learn.md +0 -4
- package/commands/loop-start.md +0 -4
- package/commands/loop-status.md +0 -4
- package/commands/model-route.md +0 -4
- package/commands/multi-backend.md +158 -0
- package/commands/multi-execute.md +315 -0
- package/commands/multi-frontend.md +158 -0
- package/commands/multi-plan.md +268 -0
- package/commands/multi-workflow.md +191 -0
- package/commands/orchestrate.md +231 -0
- package/commands/plan/ci.md +18 -0
- package/commands/plan/cro.md +56 -0
- package/commands/plan/fast.md +46 -0
- package/commands/plan/hard.md +57 -0
- package/commands/plan/two.md +30 -0
- package/commands/plan.md +17 -109
- package/commands/pm2.md +272 -0
- package/commands/projects.md +39 -0
- package/commands/promote.md +41 -0
- package/commands/prune.md +31 -0
- package/commands/python-review.md +297 -0
- package/commands/quality-gate.md +0 -4
- package/commands/refactor-clean.md +0 -4
- package/commands/resume-session.md +155 -0
- package/commands/rules-distill.md +11 -0
- package/commands/rust-build.md +187 -0
- package/commands/rust-review.md +142 -0
- package/commands/rust-test.md +308 -0
- package/commands/save-session.md +275 -0
- package/commands/sessions.md +333 -0
- package/commands/setup-pm.md +80 -0
- package/commands/skill-health.md +54 -0
- package/commands/test-coverage.md +69 -0
- package/commands/update-codemaps.md +72 -0
- package/commands/update-docs.md +84 -0
- package/commands/use-mcp.md +34 -0
- package/commands/verify.md +0 -4
- package/contexts/dev.md +20 -0
- package/contexts/research.md +26 -0
- package/contexts/review.md +22 -0
- package/docs/ARCHITECTURE.md +113 -0
- package/docs/COMMAND-REFERENCE.md +57 -0
- package/docs/SKILL-CATALOG.md +79 -0
- package/examples/CLAUDE.md.fullstack +62 -0
- package/examples/CLAUDE.md.python +36 -0
- package/examples/CLAUDE.md.typescript +24 -0
- package/guide/AGENTS.md +64 -0
- package/guide/COMMANDS.md +128 -0
- package/guide/SKILLS.md +89 -0
- package/hooks/.env.example +18 -0
- package/hooks/README.md +93 -0
- package/hooks/discord-hook-setup.md +412 -0
- package/hooks/hooks.json +45 -0
- package/hooks/scripts/discord-notify.sh +72 -0
- package/hooks/scripts/discord_notify.sh +221 -0
- package/hooks/scripts/modularization-hook.js +49 -0
- package/hooks/scripts/scout-block.js +54 -0
- package/hooks/scripts/scout-block.ps1 +65 -0
- package/hooks/scripts/scout-block.sh +51 -0
- package/hooks/scripts/send-discord.sh +75 -0
- package/hooks/scripts/telegram-notify.sh +56 -0
- package/hooks/scripts/telegram_notify.sh +158 -0
- package/hooks/telegram-hook-setup.md +774 -0
- package/manifests/install-modules.json +30 -21
- package/manifests/install-profiles.json +12 -2
- package/mcp-configs/mcp-servers.json +153 -0
- package/package.json +9 -2
- package/rules/README.md +106 -0
- package/rules/common/agents.md +50 -0
- package/rules/common/coding-style.md +48 -0
- package/rules/common/development-workflow.md +38 -0
- package/rules/common/git-workflow.md +24 -0
- package/rules/common/hooks.md +30 -0
- package/rules/common/patterns.md +31 -0
- package/rules/common/performance.md +55 -0
- package/rules/common/security.md +29 -0
- package/rules/common/testing.md +29 -0
- package/rules/cpp/coding-style.md +44 -0
- package/rules/cpp/hooks.md +39 -0
- package/rules/cpp/patterns.md +51 -0
- package/rules/cpp/security.md +51 -0
- package/rules/cpp/testing.md +44 -0
- package/rules/csharp/coding-style.md +72 -0
- package/rules/csharp/hooks.md +25 -0
- package/rules/csharp/patterns.md +50 -0
- package/rules/csharp/security.md +58 -0
- package/rules/csharp/testing.md +46 -0
- package/rules/golang/coding-style.md +32 -0
- package/rules/golang/hooks.md +17 -0
- package/rules/golang/patterns.md +45 -0
- package/rules/golang/security.md +34 -0
- package/rules/golang/testing.md +31 -0
- package/rules/java/coding-style.md +114 -0
- package/rules/java/hooks.md +18 -0
- package/rules/java/patterns.md +146 -0
- package/rules/java/security.md +100 -0
- package/rules/java/testing.md +131 -0
- package/rules/kotlin/coding-style.md +86 -0
- package/rules/kotlin/hooks.md +17 -0
- package/rules/kotlin/patterns.md +146 -0
- package/rules/kotlin/security.md +82 -0
- package/rules/kotlin/testing.md +128 -0
- package/rules/perl/coding-style.md +46 -0
- package/rules/perl/hooks.md +22 -0
- package/rules/perl/patterns.md +76 -0
- package/rules/perl/security.md +69 -0
- package/rules/perl/testing.md +54 -0
- package/rules/php/coding-style.md +40 -0
- package/rules/php/hooks.md +24 -0
- package/rules/php/patterns.md +33 -0
- package/rules/php/security.md +37 -0
- package/rules/php/testing.md +39 -0
- package/rules/python/coding-style.md +42 -0
- package/rules/python/hooks.md +19 -0
- package/rules/python/patterns.md +39 -0
- package/rules/python/security.md +30 -0
- package/rules/python/testing.md +38 -0
- package/rules/rust/coding-style.md +151 -0
- package/rules/rust/hooks.md +16 -0
- package/rules/rust/patterns.md +168 -0
- package/rules/rust/security.md +141 -0
- package/rules/rust/testing.md +154 -0
- package/rules/swift/coding-style.md +47 -0
- package/rules/swift/hooks.md +20 -0
- package/rules/swift/patterns.md +66 -0
- package/rules/swift/security.md +33 -0
- package/rules/swift/testing.md +45 -0
- package/rules/typescript/coding-style.md +199 -0
- package/rules/typescript/hooks.md +22 -0
- package/rules/typescript/patterns.md +52 -0
- package/rules/typescript/security.md +28 -0
- package/rules/typescript/testing.md +18 -0
- package/schemas/hooks.schema.json +43 -0
- package/schemas/manifest.schema.json +34 -0
- package/schemas/plugin.schema.json +25 -0
- package/skills/INSTALLATION.md +280 -0
- package/skills/README.md +86 -0
- package/skills/SKILL.md +208 -0
- package/skills/STYLE_PRESETS.md +330 -0
- package/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/skills/aesthetic/SKILL.md +121 -0
- package/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/skills/aesthetic/assets/design-story-template.md +135 -0
- package/skills/aesthetic/references/design-principles.md +62 -0
- package/skills/aesthetic/references/design-resources.md +75 -0
- package/skills/aesthetic/references/micro-interactions.md +53 -0
- package/skills/aesthetic/references/storytelling-design.md +50 -0
- package/skills/agent-eval/SKILL.md +145 -0
- package/skills/agent-harness-construction/SKILL.md +73 -0
- package/skills/agent_skills_spec.md +55 -0
- package/skills/ai-first-engineering/SKILL.md +51 -0
- package/skills/ai-regression-testing/SKILL.md +385 -0
- package/skills/android-clean-architecture/SKILL.md +339 -0
- package/skills/architecture-decision-records/SKILL.md +179 -0
- package/skills/article-writing/SKILL.md +85 -0
- package/skills/blueprint/SKILL.md +105 -0
- package/skills/bun-runtime/SKILL.md +84 -0
- package/skills/carrier-relationship-management/SKILL.md +212 -0
- package/skills/chrome-devtools/SKILL.md +360 -0
- package/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/skills/chrome-devtools/scripts/README.md +213 -0
- package/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/skills/chrome-devtools/scripts/click.js +79 -0
- package/skills/chrome-devtools/scripts/console.js +75 -0
- package/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/skills/chrome-devtools/scripts/fill.js +72 -0
- package/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/skills/chrome-devtools/scripts/install.sh +83 -0
- package/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/skills/chrome-devtools/scripts/network.js +102 -0
- package/skills/chrome-devtools/scripts/package.json +15 -0
- package/skills/chrome-devtools/scripts/performance.js +145 -0
- package/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/skills/claude-api/SKILL.md +337 -0
- package/skills/claude-devfleet/SKILL.md +103 -0
- package/skills/click-path-audit/SKILL.md +244 -0
- package/skills/clickhouse-io/SKILL.md +439 -0
- package/skills/common/README.md +120 -0
- package/skills/common/api_key_helper.py +300 -0
- package/skills/compose-multiplatform-patterns/SKILL.md +299 -0
- package/skills/config.json +18 -0
- package/skills/configure-ecc/SKILL.md +367 -0
- package/skills/content-engine/SKILL.md +88 -0
- package/skills/content-hash-cache-pattern/SKILL.md +161 -0
- package/skills/context-budget/SKILL.md +135 -0
- package/skills/continuous-agent-loop/SKILL.md +45 -0
- package/skills/continuous-learning/SKILL.md +119 -0
- package/skills/continuous-learning/config.json +18 -0
- package/skills/continuous-learning/evaluate-session.sh +69 -0
- package/skills/continuous-learning-v2/agents/observer-loop.sh +191 -0
- package/skills/continuous-learning-v2/agents/observer.md +198 -0
- package/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
- package/skills/continuous-learning-v2/agents/start-observer.sh +240 -0
- package/skills/cpp-coding-standards/SKILL.md +723 -0
- package/skills/cpp-testing/SKILL.md +324 -0
- package/skills/crosspost/SKILL.md +190 -0
- package/skills/customs-trade-compliance/SKILL.md +263 -0
- package/skills/data-scraper-agent/SKILL.md +764 -0
- package/skills/deep-research/SKILL.md +155 -0
- package/skills/design/SKILL.md +302 -0
- package/skills/django-security/SKILL.md +593 -0
- package/skills/django-tdd/SKILL.md +729 -0
- package/skills/django-verification/SKILL.md +469 -0
- package/skills/dmux-workflows/SKILL.md +191 -0
- package/skills/docs-seeker/SKILL.md +97 -0
- package/skills/docs-seeker/package.json +25 -0
- package/skills/docs-seeker/references/advanced.md +79 -0
- package/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/skills/docs-seeker/references/errors.md +68 -0
- package/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/skills/docs-seeker/workflows/library-search.md +87 -0
- package/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/skills/document-skills/docx/LICENSE.txt +30 -0
- package/skills/document-skills/docx/SKILL.md +197 -0
- package/skills/document-skills/docx/docx-js.md +350 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/skills/document-skills/docx/ooxml.md +610 -0
- package/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/skills/document-skills/docx/scripts/document.py +1276 -0
- package/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/skills/document-skills/pdf/SKILL.md +294 -0
- package/skills/document-skills/pdf/forms.md +205 -0
- package/skills/document-skills/pdf/reference.md +612 -0
- package/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/skills/document-skills/pptx/SKILL.md +484 -0
- package/skills/document-skills/pptx/html2pptx.md +625 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/skills/document-skills/pptx/ooxml.md +427 -0
- package/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/skills/document-skills/xlsx/SKILL.md +289 -0
- package/skills/document-skills/xlsx/recalc.py +178 -0
- package/skills/documentation-lookup/SKILL.md +90 -0
- package/skills/energy-procurement/SKILL.md +228 -0
- package/skills/enterprise-agent-ops/SKILL.md +50 -0
- package/skills/evaluate-session.sh +69 -0
- package/skills/exa-search/SKILL.md +103 -0
- package/skills/fal-ai-media/SKILL.md +284 -0
- package/skills/fixtures/compliant_trace.jsonl +5 -0
- package/skills/fixtures/noncompliant_trace.jsonl +3 -0
- package/skills/fixtures/tdd_spec.yaml +44 -0
- package/skills/flutter-dart-code-review/SKILL.md +435 -0
- package/skills/foundation-models-on-device/SKILL.md +243 -0
- package/skills/frontend-design/SKILL.md +42 -0
- package/skills/frontend-design/references/animejs.md +396 -0
- package/skills/frontend-slides/SKILL.md +184 -0
- package/skills/frontend-slides/STYLE_PRESETS.md +330 -0
- package/skills/golang-testing/SKILL.md +720 -0
- package/skills/google-adk-python/SKILL.md +237 -0
- package/skills/hooks/observe.sh +412 -0
- package/skills/inventory-demand-planning/SKILL.md +247 -0
- package/skills/investor-materials/SKILL.md +96 -0
- package/skills/investor-outreach/SKILL.md +76 -0
- package/skills/iterative-retrieval/SKILL.md +211 -0
- package/skills/java-coding-standards/SKILL.md +147 -0
- package/skills/jpa-patterns/SKILL.md +151 -0
- package/skills/kotlin-coroutines-flows/SKILL.md +284 -0
- package/skills/kotlin-exposed-patterns/SKILL.md +719 -0
- package/skills/kotlin-ktor-patterns/SKILL.md +689 -0
- package/skills/kotlin-testing/SKILL.md +824 -0
- package/skills/laravel-security/SKILL.md +285 -0
- package/skills/laravel-tdd/SKILL.md +283 -0
- package/skills/laravel-verification/SKILL.md +179 -0
- package/skills/liquid-glass-design/SKILL.md +279 -0
- package/skills/logistics-exception-management/SKILL.md +222 -0
- package/skills/manifest.json +779 -194
- package/skills/market-research/SKILL.md +75 -0
- package/skills/mcp-builder/SKILL.md +328 -0
- package/skills/mcp-builder/reference/evaluation.md +602 -0
- package/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/skills/mcp-builder/scripts/connections.py +151 -0
- package/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/skills/nanoclaw-repl/SKILL.md +33 -0
- package/skills/nextjs-turbopack/SKILL.md +44 -0
- package/skills/nutrient-document-processing/SKILL.md +167 -0
- package/skills/nuxt4-patterns/SKILL.md +100 -0
- package/skills/payment-integration.tar.gz +0 -0
- package/skills/perl-patterns/SKILL.md +504 -0
- package/skills/perl-security/SKILL.md +503 -0
- package/skills/perl-testing/SKILL.md +475 -0
- package/skills/plan-preview/SKILL.md +64 -0
- package/skills/plankton-code-quality/SKILL.md +236 -0
- package/skills/production-scheduling/SKILL.md +238 -0
- package/skills/project-guidelines-example/SKILL.md +349 -0
- package/skills/prompts/classifier.md +24 -0
- package/skills/prompts/scenario_generator.md +62 -0
- package/skills/prompts/spec_generator.md +42 -0
- package/skills/pyproject.toml +15 -0
- package/skills/python-testing/SKILL.md +816 -0
- package/skills/quality-nonconformance/SKILL.md +260 -0
- package/skills/ralphinho-rfc-pipeline/SKILL.md +67 -0
- package/skills/reference/api-reference.md +550 -0
- package/skills/reference/capture-reference.md +407 -0
- package/skills/reference/capture.md +101 -0
- package/skills/reference/editor.md +443 -0
- package/skills/reference/generative.md +331 -0
- package/skills/reference/rtstream-reference.md +564 -0
- package/skills/reference/rtstream.md +65 -0
- package/skills/reference/search.md +230 -0
- package/skills/reference/streaming.md +406 -0
- package/skills/reference/use-cases.md +118 -0
- package/skills/regex-vs-llm-structured-text/SKILL.md +220 -0
- package/skills/repomix/SKILL.md +247 -0
- package/skills/repomix/references/configuration.md +211 -0
- package/skills/repomix/references/usage-patterns.md +232 -0
- package/skills/repomix/scripts/README.md +179 -0
- package/skills/repomix/scripts/repomix_batch.py +455 -0
- package/skills/repomix/scripts/repos.example.json +15 -0
- package/skills/repomix/scripts/requirements.txt +15 -0
- package/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/skills/returns-reverse-logistics/SKILL.md +240 -0
- package/skills/rules-distill/SKILL.md +264 -0
- package/skills/rules-distill/scripts/scan-rules.sh +58 -0
- package/skills/rules-distill/scripts/scan-skills.sh +129 -0
- package/skills/rust-testing/SKILL.md +500 -0
- package/skills/safety-guard/SKILL.md +90 -0
- package/skills/santa-method/SKILL.md +306 -0
- package/skills/scripts/classifier.py +85 -0
- package/skills/scripts/detect-project.sh +228 -0
- package/skills/scripts/grader.py +122 -0
- package/skills/scripts/instinct-cli.py +1426 -0
- package/skills/scripts/parser.py +107 -0
- package/skills/scripts/quick-diff.sh +87 -0
- package/skills/scripts/report.py +170 -0
- package/skills/scripts/run.py +127 -0
- package/skills/scripts/runner.py +161 -0
- package/skills/scripts/save-results.sh +56 -0
- package/skills/scripts/scan-rules.sh +58 -0
- package/skills/scripts/scan-skills.sh +129 -0
- package/skills/scripts/scan.sh +170 -0
- package/skills/scripts/scenario_generator.py +70 -0
- package/skills/scripts/spec_generator.py +72 -0
- package/skills/scripts/test_parse_instinct.py +984 -0
- package/skills/scripts/utils.py +13 -0
- package/skills/scripts/ws_listener.py +282 -0
- package/skills/search-first/SKILL.md +161 -0
- package/skills/security-review/cloud-infrastructure-security.md +361 -0
- package/skills/security-scan/SKILL.md +165 -0
- package/skills/skill-comply/SKILL.md +58 -0
- package/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
- package/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
- package/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
- package/skills/skill-comply/prompts/classifier.md +24 -0
- package/skills/skill-comply/prompts/scenario_generator.md +62 -0
- package/skills/skill-comply/prompts/spec_generator.md +42 -0
- package/skills/skill-comply/pyproject.toml +15 -0
- package/skills/skill-comply/scripts/__init__.py +0 -0
- package/skills/skill-comply/scripts/classifier.py +85 -0
- package/skills/skill-comply/scripts/grader.py +122 -0
- package/skills/skill-comply/scripts/parser.py +107 -0
- package/skills/skill-comply/scripts/report.py +170 -0
- package/skills/skill-comply/scripts/run.py +127 -0
- package/skills/skill-comply/scripts/runner.py +161 -0
- package/skills/skill-comply/scripts/scenario_generator.py +70 -0
- package/skills/skill-comply/scripts/spec_generator.py +72 -0
- package/skills/skill-comply/scripts/utils.py +13 -0
- package/skills/skill-comply/tests/test_grader.py +137 -0
- package/skills/skill-comply/tests/test_parser.py +90 -0
- package/skills/skill-creator/LICENSE.txt +202 -0
- package/skills/skill-creator/SKILL.md +255 -0
- package/skills/skill-creator/scripts/init_skill.py +303 -0
- package/skills/skill-creator/scripts/package_skill.py +110 -0
- package/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/skills/skill-stocktake/SKILL.md +193 -0
- package/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
- package/skills/skill-stocktake/scripts/save-results.sh +56 -0
- package/skills/skill-stocktake/scripts/scan.sh +170 -0
- package/skills/springboot-security/SKILL.md +272 -0
- package/skills/springboot-tdd/SKILL.md +158 -0
- package/skills/springboot-verification/SKILL.md +231 -0
- package/skills/suggest-compact.sh +54 -0
- package/skills/swift-actor-persistence/SKILL.md +143 -0
- package/skills/swift-concurrency-6-2/SKILL.md +216 -0
- package/skills/swift-protocol-di-testing/SKILL.md +190 -0
- package/skills/team-builder/SKILL.md +161 -0
- package/skills/template-skill/SKILL.md +6 -0
- package/skills/tests/test_grader.py +137 -0
- package/skills/tests/test_parser.py +90 -0
- package/skills/ui-styling/LICENSE.txt +202 -0
- package/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/skills/ui-ux-pro-max/SKILL.md +659 -0
- package/skills/video-editing/SKILL.md +310 -0
- package/skills/videodb/SKILL.md +374 -0
- package/skills/videodb/reference/api-reference.md +550 -0
- package/skills/videodb/reference/capture-reference.md +407 -0
- package/skills/videodb/reference/capture.md +101 -0
- package/skills/videodb/reference/editor.md +443 -0
- package/skills/videodb/reference/generative.md +331 -0
- package/skills/videodb/reference/rtstream-reference.md +564 -0
- package/skills/videodb/reference/rtstream.md +65 -0
- package/skills/videodb/reference/search.md +230 -0
- package/skills/videodb/reference/streaming.md +406 -0
- package/skills/videodb/reference/use-cases.md +118 -0
- package/skills/videodb/scripts/ws_listener.py +282 -0
- package/skills/visa-doc-translate/README.md +86 -0
- package/skills/visa-doc-translate/SKILL.md +117 -0
- package/skills/web-design-guidelines/SKILL.md +34 -0
- package/skills/web-frameworks/scripts/__init__.py +0 -0
- package/skills/x-api/SKILL.md +208 -0
- package/workflows/development-rules.md +0 -7
- package/workflows/documentation-management.md +28 -0
- package/workflows/primary-workflow.md +0 -7
- package/skills/tier-1/databases/scripts/.coverage +0 -0
- package/skills/tier-1/devops/.env.example +0 -76
- package/skills/tier-1/sequential-thinking/.env.example +0 -8
- package/skills/tier-1/ui-styling/references/canvas-design-system.md +0 -320
- package/skills/tier-1/ui-styling/scripts/.coverage +0 -0
- package/skills/tier-1/ui-ux-pro-max/SKILL.md +0 -659
- package/skills/tier-1/web-frameworks/scripts/.coverage +0 -0
- package/skills/tier-2/ai-multimodal/.env.example +0 -97
- package/skills/tier-2/ai-multimodal/scripts/.coverage +0 -0
- package/skills/tier-2/ai-multimodal/scripts/tests/.coverage +0 -0
- package/skills/tier-2/ai-multimodal/scripts/tests/test_failures.log +0 -258
- package/skills/tier-2/better-auth/scripts/.coverage +0 -0
- package/skills/tier-2/better-auth/scripts/tests/.coverage +0 -0
- package/skills/tier-2/design/SKILL.md +0 -302
- package/skills/tier-2/google-adk-python/SKILL.md +0 -242
- package/skills/tier-2/media-processing/scripts/tests/.coverage +0 -0
- package/skills/tier-2/payment-integration/scripts/.env.example +0 -20
- package/skills/tier-3/shopify/scripts/.coverage +0 -0
- package/skills/tier-3/shopify/scripts/tests/.coverage +0 -0
- /package/skills/{tier-3/agentic-engineering → agentic-engineering}/SKILL.md +0 -0
- /package/skills/{tier-2/continuous-learning/agents → agents}/observer-loop.sh +0 -0
- /package/skills/{tier-2/continuous-learning/agents → agents}/observer.md +0 -0
- /package/skills/{tier-2/continuous-learning/agents → agents}/session-guardian.sh +0 -0
- /package/skills/{tier-2/continuous-learning/agents → agents}/start-observer.sh +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/SKILL.md +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/audio-processing.md +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/image-generation.md +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/video-analysis.md +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/references/vision-understanding.md +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/document_converter.py +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/gemini_batch_process.py +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/media_optimizer.py +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/requirements.txt +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_document_converter.py +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_gemini_batch_process.py +0 -0
- /package/skills/{tier-2/ai-multimodal → ai-multimodal}/scripts/tests/test_media_optimizer.py +0 -0
- /package/skills/{tier-1/api-design → api-design}/SKILL.md +0 -0
- /package/skills/{tier-2/autonomous-loops → autonomous-loops}/SKILL.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/SKILL.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-api-design.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-architecture.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-authentication.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-code-quality.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-debugging.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-devops.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-mindset.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-performance.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-security.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-technologies.md +0 -0
- /package/skills/{tier-1/backend-development → backend-development}/references/backend-testing.md +0 -0
- /package/skills/{tier-2/backend-patterns → backend-patterns}/SKILL.md +0 -0
- /package/skills/{tier-3/banner-design → banner-design}/SKILL.md +0 -0
- /package/skills/{tier-2/design → banner-design}/references/banner-sizes-and-styles.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/SKILL.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/references/advanced-features.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/references/database-integration.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/references/email-password-auth.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/references/oauth-providers.md +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/scripts/better_auth_init.py +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/scripts/requirements.txt +0 -0
- /package/skills/{tier-2/better-auth → better-auth}/scripts/tests/test_better_auth_init.py +0 -0
- /package/skills/{tier-2/brand → brand}/SKILL.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/approval-checklist.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/asset-organization.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/brand-guideline-template.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/color-palette-management.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/consistency-checklist.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/logo-usage-rules.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/messaging-framework.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/typography-specifications.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/update.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/visual-identity.md +0 -0
- /package/skills/{tier-2/brand → brand}/references/voice-framework.md +0 -0
- /package/skills/{tier-2/brand → brand}/scripts/extract-colors.cjs +0 -0
- /package/skills/{tier-2/brand → brand}/scripts/inject-brand-context.cjs +0 -0
- /package/skills/{tier-2/brand → brand}/scripts/sync-brand-to-tokens.cjs +0 -0
- /package/skills/{tier-2/brand → brand}/scripts/validate-asset.cjs +0 -0
- /package/skills/{tier-2/brand → brand}/templates/brand-guidelines-starter.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/SKILL.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/advanced-features.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/agent-skills.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/api-reference.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/best-practices.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/cicd-integration.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/configuration.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/enterprise-features.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/getting-started.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/hooks-and-plugins.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/ide-integration.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/mcp-integration.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/slash-commands.md +0 -0
- /package/skills/{tier-2/claude-code → claude-code}/references/troubleshooting.md +0 -0
- /package/skills/{tier-1/security-review/cloud-infrastructure-security.md → cloud-infrastructure-security.md} +0 -0
- /package/skills/{tier-1/code-review → code-review}/SKILL.md +0 -0
- /package/skills/{tier-1/code-review → code-review}/references/code-review-reception.md +0 -0
- /package/skills/{tier-1/code-review → code-review}/references/requesting-code-review.md +0 -0
- /package/skills/{tier-1/code-review → code-review}/references/verification-before-completion.md +0 -0
- /package/skills/{tier-2/codebase-onboarding → codebase-onboarding}/SKILL.md +0 -0
- /package/skills/{tier-2/coding-standards → coding-standards}/SKILL.md +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/SKILL.md +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/config.json +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/hooks/observe.sh +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/detect-project.sh +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/instinct-cli.py +0 -0
- /package/skills/{tier-2/continuous-learning → continuous-learning-v2}/scripts/test_parse_instinct.py +0 -0
- /package/skills/{tier-3/cost-aware-llm-pipeline → cost-aware-llm-pipeline}/SKILL.md +0 -0
- /package/skills/{tier-2/database-migrations → database-migrations}/SKILL.md +0 -0
- /package/skills/{tier-1/databases → databases}/SKILL.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/mongodb-aggregation.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/mongodb-atlas.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/mongodb-crud.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/mongodb-indexing.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/postgresql-administration.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/postgresql-performance.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/postgresql-psql-cli.md +0 -0
- /package/skills/{tier-1/databases → databases}/references/postgresql-queries.md +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/db_backup.py +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/db_migrate.py +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/db_performance_check.py +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/requirements.txt +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/tests/coverage-db.json +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_backup.py +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_migrate.py +0 -0
- /package/skills/{tier-1/databases → databases}/scripts/tests/test_db_performance_check.py +0 -0
- /package/skills/{tier-1/debugging → debugging}/SKILL.md +0 -0
- /package/skills/{tier-1/debugging → debugging}/references/defense-in-depth.md +0 -0
- /package/skills/{tier-1/debugging → debugging}/references/root-cause-tracing.md +0 -0
- /package/skills/{tier-1/debugging → debugging}/references/systematic-debugging.md +0 -0
- /package/skills/{tier-1/debugging → debugging}/references/verification.md +0 -0
- /package/skills/{tier-1/debugging → debugging}/scripts/find-polluter.sh +0 -0
- /package/skills/{tier-1/debugging → debugging}/scripts/find-polluter.test.md +0 -0
- /package/skills/{tier-2/deployment-patterns → deployment-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/design → design}/data/cip/deliverables.csv +0 -0
- /package/skills/{tier-2/design → design}/data/cip/industries.csv +0 -0
- /package/skills/{tier-2/design → design}/data/cip/mockup-contexts.csv +0 -0
- /package/skills/{tier-2/design → design}/data/cip/styles.csv +0 -0
- /package/skills/{tier-2/design → design}/data/icon/styles.csv +0 -0
- /package/skills/{tier-2/design → design}/data/logo/colors.csv +0 -0
- /package/skills/{tier-2/design → design}/data/logo/industries.csv +0 -0
- /package/skills/{tier-2/design → design}/data/logo/styles.csv +0 -0
- /package/skills/{tier-3/banner-design → design}/references/banner-sizes-and-styles.md +0 -0
- /package/skills/{tier-2/design → design}/references/cip-deliverable-guide.md +0 -0
- /package/skills/{tier-2/design → design}/references/cip-design.md +0 -0
- /package/skills/{tier-2/design → design}/references/cip-prompt-engineering.md +0 -0
- /package/skills/{tier-2/design → design}/references/cip-style-guide.md +0 -0
- /package/skills/{tier-2/design → design}/references/design-routing.md +0 -0
- /package/skills/{tier-2/design → design}/references/icon-design.md +0 -0
- /package/skills/{tier-2/design → design}/references/logo-color-psychology.md +0 -0
- /package/skills/{tier-2/design → design}/references/logo-design.md +0 -0
- /package/skills/{tier-2/design → design}/references/logo-prompt-engineering.md +0 -0
- /package/skills/{tier-2/design → design}/references/logo-style-guide.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides-copywriting-formulas.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides-create.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides-html-template.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides-layout-patterns.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides-strategies.md +0 -0
- /package/skills/{tier-2/design → design}/references/slides.md +0 -0
- /package/skills/{tier-2/design → design}/references/social-photos-design.md +0 -0
- /package/skills/{tier-2/design → design}/scripts/cip/core.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/cip/generate.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/cip/render-html.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/cip/search.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/icon/generate.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/logo/core.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/logo/generate.py +0 -0
- /package/skills/{tier-2/design → design}/scripts/logo/search.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/SKILL.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-backgrounds.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-charts.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-color-logic.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-copy.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-layout-logic.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-layouts.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-strategies.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/data/slide-typography.csv +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/component-specs.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/component-tokens.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/primitive-tokens.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/semantic-tokens.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/states-and-variants.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/tailwind-integration.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/references/token-architecture.md +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/embed-tokens.cjs +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/fetch-background.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/generate-slide.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/generate-tokens.cjs +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/html-token-validator.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/search-slides.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/slide-token-validator.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/slide_search_core.py +0 -0
- /package/skills/{tier-2/design-system → design-system}/scripts/validate-tokens.cjs +0 -0
- /package/skills/{tier-2/design-system → design-system}/templates/design-tokens-starter.json +0 -0
- /package/skills/{tier-1/devops → devops}/SKILL.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/browser-rendering.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-d1-kv.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-platform.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-r2-storage.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-advanced.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-apis.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/cloudflare-workers-basics.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/docker-basics.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/docker-compose.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/gcloud-platform.md +0 -0
- /package/skills/{tier-1/devops → devops}/references/gcloud-services.md +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/cloudflare_deploy.py +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/docker_optimize.py +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/requirements.txt +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/tests/test_cloudflare_deploy.py +0 -0
- /package/skills/{tier-1/devops → devops}/scripts/tests/test_docker_optimize.py +0 -0
- /package/skills/{tier-3/django-patterns → django-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/docker-patterns → docker-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/e2e-testing → e2e-testing}/SKILL.md +0 -0
- /package/skills/{tier-2/eval-harness → eval-harness}/SKILL.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/SKILL.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/common-patterns.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/complete-examples.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/component-patterns.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/data-fetching.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/file-organization.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/loading-and-error-states.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/performance.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/routing-guide.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/styling-guide.md +0 -0
- /package/skills/{tier-1/frontend-development → frontend-development}/resources/typescript-standards.md +0 -0
- /package/skills/{tier-2/frontend-patterns → frontend-patterns}/SKILL.md +0 -0
- /package/skills/{tier-3/golang-patterns → golang-patterns}/SKILL.md +0 -0
- /package/skills/{tier-3/kotlin-patterns → kotlin-patterns}/SKILL.md +0 -0
- /package/skills/{tier-3/laravel-patterns → laravel-patterns}/SKILL.md +0 -0
- /package/skills/{tier-1/ui-styling → mcp-builder}/LICENSE.txt +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/README.md +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/SKILL.md +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/assets/tools.json +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/references/configuration.md +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/references/gemini-cli-integration.md +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/references/mcp-protocol.md +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/.env.example +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/cli.ts +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/analyze-tools.js +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/cli.js +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/dist/mcp-client.js +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/mcp-client.ts +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/package.json +0 -0
- /package/skills/{tier-2/mcp-management → mcp-management}/scripts/tsconfig.json +0 -0
- /package/skills/{tier-2/mcp-server-patterns → mcp-server-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/SKILL.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-encoding.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-filters.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/ffmpeg-streaming.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/format-compatibility.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/imagemagick-batch.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/references/imagemagick-editing.md +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/batch_resize.py +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/media_convert.py +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/requirements.txt +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_batch_resize.py +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_media_convert.py +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/tests/test_video_optimize.py +0 -0
- /package/skills/{tier-2/media-processing → media-processing}/scripts/video_optimize.py +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/SKILL.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-android.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-best-practices.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-debugging.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-frameworks.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-ios.md +0 -0
- /package/skills/{tier-2/mobile-development → mobile-development}/references/mobile-mindset.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/README.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/SKILL.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/benefits.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/best-practices.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/checkouts.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/overview.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/products.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/sdk.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/subscriptions.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/polar/webhooks.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/api.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/best-practices.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/overview.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/qr-codes.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/sdk.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/references/sepay/webhooks.md +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/scripts/checkout-helper.js +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/scripts/package.json +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/scripts/polar-webhook-verify.js +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/scripts/sepay-webhook-verify.js +0 -0
- /package/skills/{tier-2/payment-integration → payment-integration}/scripts/test-scripts.js +0 -0
- /package/skills/{tier-2/planning → planning}/SKILL.md +0 -0
- /package/skills/{tier-2/planning → planning}/references/codebase-understanding.md +0 -0
- /package/skills/{tier-2/planning → planning}/references/output-standards.md +0 -0
- /package/skills/{tier-2/planning → planning}/references/plan-organization.md +0 -0
- /package/skills/{tier-2/planning → planning}/references/research-phase.md +0 -0
- /package/skills/{tier-2/planning → planning}/references/solution-design.md +0 -0
- /package/skills/{tier-2/postgres-patterns → postgres-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/SKILL.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/attribution.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/collision-zone-thinking.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/inversion-exercise.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/meta-pattern-recognition.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/scale-game.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/simplification-cascades.md +0 -0
- /package/skills/{tier-2/problem-solving → problem-solving}/references/when-stuck.md +0 -0
- /package/skills/{tier-3/prompt-optimizer → prompt-optimizer}/SKILL.md +0 -0
- /package/skills/{tier-3/python-patterns → python-patterns}/SKILL.md +0 -0
- /package/skills/{tier-3/pytorch-patterns → pytorch-patterns}/SKILL.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/AGENTS.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/README.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/SKILL.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/metadata.json +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/_sections.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/_template.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/advanced-event-handler-refs.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/advanced-use-latest.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-api-routes.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-defer-await.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-dependencies.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-parallel.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/async-suspense-boundaries.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-barrel-imports.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-conditional.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-defer-third-party.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-dynamic-imports.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/bundle-preload.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-event-listeners.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-localstorage-schema.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-passive-event-listeners.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/client-swr-dedup.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-batch-dom-css.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-function-results.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-property-access.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-cache-storage.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-combine-iterations.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-early-exit.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-hoist-regexp.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-index-maps.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-length-check-first.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-min-max-loop.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-set-map-lookups.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/js-tosorted-immutable.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-activity.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-animate-svg-wrapper.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-conditional-render.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-content-visibility.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-hoist-jsx.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-hydration-no-flicker.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rendering-svg-precision.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-defer-reads.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-dependencies.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-derived-state.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-functional-setstate.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-lazy-state-init.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-memo.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/rerender-transitions.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-after-nonblocking.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-cache-lru.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-cache-react.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-parallel-fetching.md +0 -0
- /package/skills/{tier-1/react-best-practices → react-best-practices}/rules/server-serialization.md +0 -0
- /package/skills/{tier-1/research → research}/SKILL.md +0 -0
- /package/skills/{tier-3/rust-patterns → rust-patterns}/SKILL.md +0 -0
- /package/skills/{tier-1/web-frameworks/scripts → scripts}/__init__.py +0 -0
- /package/skills/{tier-1/security-review → security-review}/SKILL.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/README.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/SKILL.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/package.json +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/advanced-strategies.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/advanced-techniques.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/core-patterns.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-api.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-architecture.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/references/examples-debug.md +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/scripts/format-thought.js +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/scripts/process-thought.js +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/tests/format-thought.test.js +0 -0
- /package/skills/{tier-1/sequential-thinking → sequential-thinking}/tests/process-thought.test.js +0 -0
- /package/skills/{tier-3/shopify → shopify}/README.md +0 -0
- /package/skills/{tier-3/shopify → shopify}/SKILL.md +0 -0
- /package/skills/{tier-3/shopify → shopify}/references/app-development.md +0 -0
- /package/skills/{tier-3/shopify → shopify}/references/extensions.md +0 -0
- /package/skills/{tier-3/shopify → shopify}/references/themes.md +0 -0
- /package/skills/{tier-3/shopify → shopify}/scripts/requirements.txt +0 -0
- /package/skills/{tier-3/shopify → shopify}/scripts/shopify_init.py +0 -0
- /package/skills/{tier-3/shopify → shopify}/scripts/tests/test_shopify_init.py +0 -0
- /package/skills/{tier-3/slides → slides}/SKILL.md +0 -0
- /package/skills/{tier-3/slides → slides}/references/copywriting-formulas.md +0 -0
- /package/skills/{tier-3/slides → slides}/references/create.md +0 -0
- /package/skills/{tier-3/slides → slides}/references/html-template.md +0 -0
- /package/skills/{tier-3/slides → slides}/references/layout-patterns.md +0 -0
- /package/skills/{tier-3/slides → slides}/references/slide-strategies.md +0 -0
- /package/skills/{tier-3/springboot-patterns → springboot-patterns}/SKILL.md +0 -0
- /package/skills/{tier-2/strategic-compact → strategic-compact}/SKILL.md +0 -0
- /package/skills/{tier-2/strategic-compact → strategic-compact}/suggest-compact.sh +0 -0
- /package/skills/{tier-3/swiftui-patterns → swiftui-patterns}/SKILL.md +0 -0
- /package/skills/{tier-1/tdd-workflow → tdd-workflow}/SKILL.md +0 -0
- /package/skills/{tier-1/testing → testing}/SKILL.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/SKILL.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/01-getting-started.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/02-loaders.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/03-textures.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/04-cameras.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/05-lights.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/06-animations.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/07-math.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/08-interaction.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/09-postprocessing.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/10-controls.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/11-materials-advanced.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/12-performance.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/13-node-materials.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/14-physics-vr.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/15-specialized-loaders.md +0 -0
- /package/skills/{tier-3/threejs → threejs}/references/16-webgpu.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/SKILL.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-accessibility.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-components.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/shadcn-theming.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-customization.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-responsive.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/references/tailwind-utilities.md +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/requirements.txt +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/shadcn_add.py +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tailwind_config_gen.py +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/coverage-ui.json +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/test_shadcn_add.py +0 -0
- /package/skills/{tier-1/ui-styling → ui-styling}/scripts/tests/test_tailwind_config_gen.py +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/_sync_all.py +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/app-interface.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/charts.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/colors.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/design.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/draft.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/google-fonts.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/icons.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/landing.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/products.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/react-performance.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react-native.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/styles.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/typography.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/ui-reasoning.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/data/ux-guidelines.csv +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/core.py +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/design_system.py +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/scripts/search.py +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/base/quick-reference.md +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/base/skill-content.md +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/agent.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/claude.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/codebuddy.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/codex.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/continue.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/copilot.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/cursor.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/droid.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/gemini.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/kiro.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/opencode.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/qoder.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/roocode.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/trae.json +0 -0
- /package/skills/{tier-1/ui-ux-pro-max → ui-ux-pro-max}/templates/platforms/windsurf.json +0 -0
- /package/skills/{tier-3/vercel-deploy → vercel-deploy}/SKILL.md +0 -0
- /package/skills/{tier-3/vercel-deploy → vercel-deploy}/scripts/deploy.sh +0 -0
- /package/skills/{tier-2/verification-loop → verification-loop}/SKILL.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/SKILL.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-app-router.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-data-fetching.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-optimization.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/nextjs-server-components.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/remix-icon-integration.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-caching.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-pipelines.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/references/turborepo-setup.md +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/nextjs_init.py +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/requirements.txt +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/coverage-web.json +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/requirements.txt +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/test_nextjs_init.py +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/tests/test_turborepo_migrate.py +0 -0
- /package/skills/{tier-1/web-frameworks → web-frameworks}/scripts/turborepo_migrate.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-skill-lord",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Curated Claude Code plugin —
|
|
3
|
+
"version": "2.0.2",
|
|
4
|
+
"description": "Curated Claude Code plugin — 44 agents, 170 skills, 115 commands, 13 language rules with intelligent skill routing",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Dong Anh",
|
|
7
7
|
"email": "donganhvu20@gmail.com"
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
"quality-gate",
|
|
19
19
|
"tdd",
|
|
20
20
|
"code-review",
|
|
21
|
-
"developer-tools"
|
|
21
|
+
"developer-tools",
|
|
22
|
+
"multi-language",
|
|
23
|
+
"rules"
|
|
22
24
|
],
|
|
23
25
|
"agents": [
|
|
24
26
|
"./agents/architect.md",
|
|
@@ -27,29 +29,49 @@
|
|
|
27
29
|
"./agents/chief-of-staff.md",
|
|
28
30
|
"./agents/code-reviewer.md",
|
|
29
31
|
"./agents/copywriter.md",
|
|
32
|
+
"./agents/cpp-build-resolver.md",
|
|
33
|
+
"./agents/cpp-reviewer.md",
|
|
30
34
|
"./agents/database-admin.md",
|
|
35
|
+
"./agents/database-reviewer.md",
|
|
31
36
|
"./agents/debugger.md",
|
|
37
|
+
"./agents/doc-updater.md",
|
|
38
|
+
"./agents/docs-lookup.md",
|
|
32
39
|
"./agents/docs-manager.md",
|
|
33
40
|
"./agents/e2e-runner.md",
|
|
41
|
+
"./agents/flutter-reviewer.md",
|
|
34
42
|
"./agents/git-manager.md",
|
|
43
|
+
"./agents/go-build-resolver.md",
|
|
44
|
+
"./agents/go-reviewer.md",
|
|
35
45
|
"./agents/harness-optimizer.md",
|
|
46
|
+
"./agents/java-build-resolver.md",
|
|
47
|
+
"./agents/java-reviewer.md",
|
|
48
|
+
"./agents/journal-writer.md",
|
|
49
|
+
"./agents/kotlin-build-resolver.md",
|
|
50
|
+
"./agents/kotlin-reviewer.md",
|
|
36
51
|
"./agents/loop-operator.md",
|
|
52
|
+
"./agents/mcp-manager.md",
|
|
37
53
|
"./agents/planner.md",
|
|
38
54
|
"./agents/project-manager.md",
|
|
55
|
+
"./agents/python-reviewer.md",
|
|
56
|
+
"./agents/pytorch-build-resolver.md",
|
|
39
57
|
"./agents/quality-gate.md",
|
|
40
58
|
"./agents/refactor-cleaner.md",
|
|
59
|
+
"./agents/researcher.md",
|
|
60
|
+
"./agents/rust-build-resolver.md",
|
|
61
|
+
"./agents/rust-reviewer.md",
|
|
62
|
+
"./agents/scout-external.md",
|
|
41
63
|
"./agents/scout.md",
|
|
42
64
|
"./agents/security-reviewer.md",
|
|
43
65
|
"./agents/skill-router.md",
|
|
44
66
|
"./agents/tdd-guide.md",
|
|
67
|
+
"./agents/tester.md",
|
|
68
|
+
"./agents/typescript-reviewer.md",
|
|
45
69
|
"./agents/ui-ux-designer.md"
|
|
46
70
|
],
|
|
47
71
|
"commands": [
|
|
48
72
|
"./commands/"
|
|
49
73
|
],
|
|
50
74
|
"skills": [
|
|
51
|
-
"./skills/
|
|
52
|
-
"./skills/tier-2/",
|
|
53
|
-
"./skills/tier-3/"
|
|
75
|
+
"./skills/"
|
|
54
76
|
]
|
|
55
77
|
}
|
package/CLAUDE.md
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
# SkillLord — Claude Code Plugin
|
|
2
2
|
|
|
3
|
-
Curated best-of-both plugin merging
|
|
3
|
+
Curated best-of-both plugin merging ClaudeKit Engineer (base) + Everything Claude Code (cherry-picked) with intelligent skill routing.
|
|
4
4
|
|
|
5
5
|
## Workflows
|
|
6
6
|
|
|
7
7
|
- Primary workflow: `./workflows/primary-workflow.md`
|
|
8
8
|
- Development rules: `./workflows/development-rules.md`
|
|
9
9
|
- Orchestration protocols: `./workflows/orchestration-protocol.md`
|
|
10
|
+
- Documentation management: `./workflows/documentation-management.md`
|
|
10
11
|
|
|
11
12
|
**IMPORTANT:** Follow development rules strictly. Research & Reuse is mandatory FIRST step before implementation.
|
|
12
13
|
|
|
13
|
-
## Agents (
|
|
14
|
+
## Agents (44)
|
|
14
15
|
|
|
16
|
+
### Core Agents
|
|
15
17
|
| Agent | Role |
|
|
16
18
|
|-------|------|
|
|
17
19
|
| planner | Technical planning with mental models |
|
|
@@ -25,51 +27,127 @@ Curated best-of-both plugin merging ECC and ClaudeKit with intelligent skill rou
|
|
|
25
27
|
| refactor-cleaner | Dead code cleanup |
|
|
26
28
|
| git-manager | Version control operations |
|
|
27
29
|
| docs-manager | Documentation management |
|
|
30
|
+
| doc-updater | Documentation specialist |
|
|
31
|
+
| docs-lookup | Documentation researcher |
|
|
28
32
|
| project-manager | Progress tracking |
|
|
29
33
|
| ui-ux-designer | UI/UX design |
|
|
30
34
|
| database-admin | Database optimization |
|
|
31
35
|
| brainstormer | Solution ideation (YAGNI/KISS/DRY) |
|
|
32
36
|
| copywriter | Conversion-focused content |
|
|
33
37
|
| scout | Parallel codebase exploration |
|
|
38
|
+
| scout-external | External tool-based exploration |
|
|
34
39
|
| loop-operator | Autonomous workflows |
|
|
35
40
|
| chief-of-staff | Multi-channel coordination |
|
|
36
41
|
| harness-optimizer | Self-optimization |
|
|
37
42
|
| skill-router | Advisory skill recommendation |
|
|
38
43
|
| quality-gate | Output validation |
|
|
44
|
+
| researcher | Deep research agent |
|
|
45
|
+
| tester | Test execution agent |
|
|
46
|
+
| mcp-manager | MCP server management |
|
|
47
|
+
| journal-writer | Session journaling |
|
|
48
|
+
| database-reviewer | Database review specialist |
|
|
39
49
|
|
|
40
|
-
|
|
50
|
+
### Language-Specific Reviewers
|
|
51
|
+
| Agent | Language |
|
|
52
|
+
|-------|----------|
|
|
53
|
+
| typescript-reviewer | TypeScript |
|
|
54
|
+
| python-reviewer | Python |
|
|
55
|
+
| rust-reviewer | Rust |
|
|
56
|
+
| go-reviewer | Go |
|
|
57
|
+
| kotlin-reviewer | Kotlin |
|
|
58
|
+
| java-reviewer | Java |
|
|
59
|
+
| cpp-reviewer | C++ |
|
|
60
|
+
| flutter-reviewer | Flutter/Dart |
|
|
41
61
|
|
|
42
|
-
###
|
|
43
|
-
|
|
62
|
+
### Language-Specific Build Resolvers
|
|
63
|
+
| Agent | Language |
|
|
64
|
+
|-------|----------|
|
|
65
|
+
| cpp-build-resolver | C++ |
|
|
66
|
+
| rust-build-resolver | Rust |
|
|
67
|
+
| java-build-resolver | Java |
|
|
68
|
+
| kotlin-build-resolver | Kotlin |
|
|
69
|
+
| go-build-resolver | Go |
|
|
70
|
+
| pytorch-build-resolver | PyTorch |
|
|
44
71
|
|
|
45
|
-
|
|
46
|
-
ai-multimodal, better-auth, payment-integration, continuous-learning, codebase-onboarding, autonomous-loops, mcp-management, frontend-patterns, backend-patterns, coding-standards, e2e-testing, deployment-patterns, docker-patterns, postgres-patterns, database-migrations, mcp-server-patterns, eval-harness, verification-loop, strategic-compact, mobile-development, claude-code, planning, problem-solving, google-adk-python, media-processing, design-system, design, brand
|
|
72
|
+
## Skills (170)
|
|
47
73
|
|
|
48
|
-
|
|
49
|
-
python-patterns, golang-patterns, rust-patterns, kotlin-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, pytorch-patterns, shopify, threejs, vercel-deploy, agentic-engineering, prompt-optimizer, cost-aware-llm-pipeline, banner-design, slides
|
|
74
|
+
All skills live in `./skills/<name>/SKILL.md` — flat structure, no tiers.
|
|
50
75
|
|
|
51
|
-
##
|
|
76
|
+
## Commands (115)
|
|
52
77
|
|
|
78
|
+
### Core Commands
|
|
53
79
|
| Command | Description |
|
|
54
80
|
|---------|-------------|
|
|
55
|
-
| /plan | Create implementation plan |
|
|
81
|
+
| /plan | Create implementation plan (variants: fast, hard, two, cro, ci) |
|
|
56
82
|
| /code | Start coding |
|
|
57
83
|
| /test | Run tests |
|
|
58
84
|
| /fix | Fix issues (variants: fast, hard, ci, test, types, ui, logs) |
|
|
59
|
-
| /cook | Implement features end-to-end |
|
|
85
|
+
| /cook | Implement features end-to-end (variants: auto, auto/fast) |
|
|
60
86
|
| /tdd | Test-driven development workflow |
|
|
61
87
|
| /debug | Deep issue analysis |
|
|
62
|
-
| /review | Code review |
|
|
88
|
+
| /code-review | Code review |
|
|
63
89
|
| /route | Get skill recommendations for your task |
|
|
64
90
|
| /audit | Run quality checks |
|
|
65
|
-
| /scout | Search codebase |
|
|
66
|
-
| /bootstrap | Initialize new projects |
|
|
67
|
-
| /design | Create UI designs |
|
|
91
|
+
| /scout | Search codebase (variants: ext) |
|
|
92
|
+
| /bootstrap | Initialize new projects (variants: auto, auto/fast) |
|
|
93
|
+
| /design | Create UI designs (variants: 3d, describe, fast, good, screenshot, video) |
|
|
68
94
|
| /brainstorm | Explore solutions |
|
|
69
95
|
| /e2e | E2E testing |
|
|
70
96
|
| /build-fix | Fix build errors |
|
|
71
97
|
| /evolve | Iterative feature development |
|
|
72
98
|
| /learn | Extract patterns from session |
|
|
99
|
+
| /verify | Verify implementation |
|
|
100
|
+
| /quality-gate | Run quality validation |
|
|
101
|
+
|
|
102
|
+
### Multi-Agent Commands (from ECC)
|
|
103
|
+
| Command | Description |
|
|
104
|
+
|---------|-------------|
|
|
105
|
+
| /multi-plan | Multi-agent planning |
|
|
106
|
+
| /multi-workflow | Multi-agent workflow |
|
|
107
|
+
| /multi-backend | Multi-agent backend |
|
|
108
|
+
| /multi-frontend | Multi-agent frontend |
|
|
109
|
+
| /multi-execute | Multi-agent execution |
|
|
110
|
+
| /orchestrate | Agent orchestration |
|
|
111
|
+
|
|
112
|
+
### Session Management (from ECC)
|
|
113
|
+
| Command | Description |
|
|
114
|
+
|---------|-------------|
|
|
115
|
+
| /save-session | Save current session |
|
|
116
|
+
| /resume-session | Resume saved session |
|
|
117
|
+
| /sessions | List sessions |
|
|
118
|
+
| /checkpoint | Create checkpoint |
|
|
119
|
+
|
|
120
|
+
### Language-Specific Commands (from ECC)
|
|
121
|
+
| Command | Description |
|
|
122
|
+
|---------|-------------|
|
|
123
|
+
| /cpp-build, /cpp-review, /cpp-test | C++ workflows |
|
|
124
|
+
| /go-build, /go-review, /go-test | Go workflows |
|
|
125
|
+
| /kotlin-build, /kotlin-review, /kotlin-test | Kotlin workflows |
|
|
126
|
+
| /rust-build, /rust-review, /rust-test | Rust workflows |
|
|
127
|
+
| /python-review | Python review |
|
|
128
|
+
| /gradle-build | Gradle build |
|
|
129
|
+
|
|
130
|
+
### Content & Design Commands (from CEK)
|
|
131
|
+
| Command | Description |
|
|
132
|
+
|---------|-------------|
|
|
133
|
+
| /content | Content creation (variants: fast, good, cro, enhance) |
|
|
134
|
+
| /docs | Documentation (variants: init, update, summarize) |
|
|
135
|
+
| /git | Git operations (variants: pr, cp, cm) |
|
|
136
|
+
| /integrate | Integrations (variants: sepay, polar) |
|
|
137
|
+
| /skill | Skill management (variants: add, create, fix-logs, optimize) |
|
|
138
|
+
|
|
139
|
+
## Rules (13 languages)
|
|
140
|
+
|
|
141
|
+
Language-specific coding rules in `./rules/`:
|
|
142
|
+
- Common (agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing)
|
|
143
|
+
- TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift
|
|
144
|
+
|
|
145
|
+
## Contexts
|
|
146
|
+
|
|
147
|
+
Development contexts in `./contexts/`:
|
|
148
|
+
- `dev.md` — Development context
|
|
149
|
+
- `research.md` — Research context
|
|
150
|
+
- `review.md` — Code review context
|
|
73
151
|
|
|
74
152
|
## Principles
|
|
75
153
|
|
package/README.md
CHANGED
|
@@ -4,18 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/claude-skill-lord)
|
|
6
6
|

|
|
7
|
-

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+

|
|
10
11
|
|
|
11
12
|
---
|
|
12
13
|
|
|
13
14
|
## Why Claude Skill Lord?
|
|
14
15
|
|
|
15
|
-
- **Stop configuring, start building** —
|
|
16
|
-
- **
|
|
16
|
+
- **Stop configuring, start building** — 170 skills, 44 agents, 115 commands work out of the box
|
|
17
|
+
- **Multi-language support** — 13 language-specific rule sets (TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift)
|
|
18
|
+
- **Language-specific agents** — dedicated reviewers and build resolvers for 8 languages
|
|
17
19
|
- **Design intelligence built-in** — 67 UI styles, 161 color palettes, reasoning engine for production-grade design decisions
|
|
18
|
-
- **Battle-tested foundations** — curated from [
|
|
20
|
+
- **Battle-tested foundations** — curated from [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) (base) + [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) (cherry-picked)
|
|
19
21
|
|
|
20
22
|
---
|
|
21
23
|
|
|
@@ -41,7 +43,7 @@ That's it. `csl init` copies skills, agents, and commands into `.claude/` and ge
|
|
|
41
43
|
|
|
42
44
|
```bash
|
|
43
45
|
csl init # interactive setup (asks profile + target)
|
|
44
|
-
csl init full # install everything (
|
|
46
|
+
csl init full # install everything (170 skills + canvas fonts)
|
|
45
47
|
csl init --dry-run # preview without copying
|
|
46
48
|
csl init --fresh # clean reinstall
|
|
47
49
|
csl upgrade full # upgrade to full profile (additive, no overwrites)
|
|
@@ -73,10 +75,11 @@ node scripts/sl.js init full --target /path/to/your/project
|
|
|
73
75
|
|
|
74
76
|
## Install Profiles
|
|
75
77
|
|
|
76
|
-
| Profile | Skills | Agents | Best For |
|
|
77
|
-
|
|
78
|
-
| `
|
|
79
|
-
| `
|
|
78
|
+
| Profile | Skills | Agents | Rules | Best For |
|
|
79
|
+
|---------|--------|--------|-------|----------|
|
|
80
|
+
| `core` | 170 | 44 | — | Minimal setup |
|
|
81
|
+
| `developer` | 170 | 44 | 13 languages | Recommended for all projects (default) |
|
|
82
|
+
| `full` | 170 | 44 + canvas fonts | 13 languages + MCP configs | Multi-language, design, enterprise |
|
|
80
83
|
|
|
81
84
|
---
|
|
82
85
|
|
|
@@ -85,9 +88,10 @@ node scripts/sl.js init full --target /path/to/your/project
|
|
|
85
88
|
```mermaid
|
|
86
89
|
graph TD
|
|
87
90
|
subgraph Plugin["Claude Skill Lord Plugin"]
|
|
88
|
-
A["Agents (
|
|
89
|
-
B["Commands (
|
|
90
|
-
C["Skills (
|
|
91
|
+
A["Agents (44)"]
|
|
92
|
+
B["Commands (115)"]
|
|
93
|
+
C["Skills (170)"]
|
|
94
|
+
R["Rules (13 langs)"]
|
|
91
95
|
end
|
|
92
96
|
|
|
93
97
|
subgraph Intelligence["Intelligence Layer"]
|
|
@@ -99,15 +103,18 @@ graph TD
|
|
|
99
103
|
F["Hooks"]
|
|
100
104
|
G["Workflows"]
|
|
101
105
|
H["Manifests"]
|
|
106
|
+
CTX["Contexts"]
|
|
102
107
|
end
|
|
103
108
|
|
|
104
109
|
A --> D
|
|
105
110
|
B --> D
|
|
106
111
|
C --> D
|
|
112
|
+
R --> D
|
|
107
113
|
D --> E
|
|
108
114
|
E --> F
|
|
109
115
|
E --> G
|
|
110
116
|
E --> H
|
|
117
|
+
CTX --> D
|
|
111
118
|
```
|
|
112
119
|
|
|
113
120
|
---
|
|
@@ -157,37 +164,70 @@ The most common workflow — plan first, then implement, then validate:
|
|
|
157
164
|
/bootstrap:auto Next.js SaaS starter with auth and payments
|
|
158
165
|
```
|
|
159
166
|
|
|
167
|
+
### Multi-agent workflows (new)
|
|
168
|
+
|
|
169
|
+
```
|
|
170
|
+
/multi-plan Complex feature requiring multiple perspectives
|
|
171
|
+
/multi-backend Microservice architecture implementation
|
|
172
|
+
/orchestrate Coordinate multiple agents on a large task
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### Session management (new)
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
/save-session # save current work context
|
|
179
|
+
/resume-session # resume where you left off
|
|
180
|
+
/checkpoint # create a recovery point
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
### Language-specific workflows (new)
|
|
184
|
+
|
|
185
|
+
```
|
|
186
|
+
/rust-build # build Rust project
|
|
187
|
+
/go-review # review Go code
|
|
188
|
+
/kotlin-test # test Kotlin project
|
|
189
|
+
/cpp-build # build C++ project
|
|
190
|
+
/python-review # review Python code
|
|
191
|
+
```
|
|
192
|
+
|
|
160
193
|
---
|
|
161
194
|
|
|
162
195
|
## Key Commands
|
|
163
196
|
|
|
164
197
|
| Command | Description |
|
|
165
198
|
|---------|-------------|
|
|
166
|
-
| `/plan` | Create implementation plan |
|
|
199
|
+
| `/plan` | Create implementation plan (variants: `fast`, `hard`, `two`, `cro`, `ci`) |
|
|
167
200
|
| `/code` | Start coding from plan |
|
|
168
201
|
| `/test` | Run and validate tests |
|
|
169
202
|
| `/fix` | Fix issues (variants: `fast`, `hard`, `ci`, `test`, `types`, `ui`, `logs`) |
|
|
170
203
|
| `/cook` | Implement features end-to-end |
|
|
171
204
|
| `/tdd` | Test-driven development workflow |
|
|
172
205
|
| `/debug` | Deep root-cause investigation |
|
|
173
|
-
| `/design` | Create UI designs (variants: `fast`, `good`, `3d`) |
|
|
206
|
+
| `/design` | Create UI designs (variants: `fast`, `good`, `3d`, `screenshot`, `video`, `describe`) |
|
|
174
207
|
| `/route` | Get skill recommendations for your task |
|
|
175
208
|
| `/audit` | Run quality gate checks |
|
|
176
209
|
|
|
177
210
|
<details>
|
|
178
|
-
<summary><strong>All commands (
|
|
179
|
-
|
|
180
|
-
|
|
|
181
|
-
|
|
182
|
-
|
|
|
183
|
-
|
|
|
184
|
-
|
|
|
185
|
-
|
|
|
186
|
-
|
|
|
187
|
-
|
|
|
188
|
-
|
|
|
189
|
-
|
|
|
190
|
-
|
|
|
211
|
+
<summary><strong>All commands (115)</strong></summary>
|
|
212
|
+
|
|
213
|
+
| Category | Commands |
|
|
214
|
+
|----------|----------|
|
|
215
|
+
| **Core** | `/plan`, `/code`, `/test`, `/fix`, `/cook`, `/debug`, `/tdd`, `/verify` |
|
|
216
|
+
| **Review** | `/code-review`, `/python-review`, `/rust-review`, `/go-review`, `/cpp-review`, `/kotlin-review` |
|
|
217
|
+
| **Build** | `/build-fix`, `/cpp-build`, `/go-build`, `/kotlin-build`, `/rust-build`, `/gradle-build` |
|
|
218
|
+
| **Test** | `/test-coverage`, `/e2e`, `/cpp-test`, `/go-test`, `/kotlin-test`, `/rust-test` |
|
|
219
|
+
| **Design** | `/design:fast`, `/design:good`, `/design:3d`, `/design:screenshot`, `/design:video`, `/design:describe` |
|
|
220
|
+
| **Content** | `/content:fast`, `/content:good`, `/content:cro`, `/content:enhance` |
|
|
221
|
+
| **Docs** | `/docs:init`, `/docs:update`, `/docs:summarize`, `/update-docs` |
|
|
222
|
+
| **Git** | `/git:pr`, `/git:cp`, `/git:cm`, `/commit_gen` |
|
|
223
|
+
| **Multi-agent** | `/multi-plan`, `/multi-workflow`, `/multi-backend`, `/multi-frontend`, `/multi-execute`, `/orchestrate` |
|
|
224
|
+
| **Session** | `/save-session`, `/resume-session`, `/sessions`, `/checkpoint` |
|
|
225
|
+
| **Scout** | `/scout`, `/scout:ext` |
|
|
226
|
+
| **Bootstrap** | `/bootstrap`, `/bootstrap:auto`, `/bootstrap:auto/fast` |
|
|
227
|
+
| **Skills** | `/skill:add`, `/skill:create`, `/skill:optimize`, `/skill:fix-logs`, `/skill-create`, `/skill-health` |
|
|
228
|
+
| **Quality** | `/quality-gate`, `/audit`, `/refactor-clean`, `/prompt-optimize` |
|
|
229
|
+
| **Loop** | `/loop-start`, `/loop-status` |
|
|
230
|
+
| **Other** | `/brainstorm`, `/learn`, `/evolve`, `/model-route`, `/route`, `/ask`, `/journal`, `/watzup` |
|
|
191
231
|
|
|
192
232
|
See [commands/](commands/) for the full list.
|
|
193
233
|
|
|
@@ -198,7 +238,9 @@ See [commands/](commands/) for the full list.
|
|
|
198
238
|
## Agents
|
|
199
239
|
|
|
200
240
|
<details>
|
|
201
|
-
<summary><strong>
|
|
241
|
+
<summary><strong>44 agents — click to expand</strong></summary>
|
|
242
|
+
|
|
243
|
+
### Core Agents
|
|
202
244
|
|
|
203
245
|
| Agent | Role |
|
|
204
246
|
|-------|------|
|
|
@@ -213,57 +255,166 @@ See [commands/](commands/) for the full list.
|
|
|
213
255
|
| refactor-cleaner | Dead code cleanup |
|
|
214
256
|
| git-manager | Version control operations |
|
|
215
257
|
| docs-manager | Documentation management |
|
|
258
|
+
| doc-updater | Documentation specialist |
|
|
259
|
+
| docs-lookup | Documentation researcher |
|
|
216
260
|
| project-manager | Progress tracking |
|
|
217
261
|
| ui-ux-designer | UI/UX design |
|
|
218
262
|
| database-admin | Database optimization |
|
|
263
|
+
| database-reviewer | Database review specialist |
|
|
219
264
|
| brainstormer | Solution ideation (YAGNI/KISS/DRY) |
|
|
220
265
|
| copywriter | Conversion-focused content |
|
|
221
266
|
| scout | Parallel codebase exploration |
|
|
267
|
+
| scout-external | External tool-based exploration |
|
|
222
268
|
| loop-operator | Autonomous development loops |
|
|
223
269
|
| chief-of-staff | Multi-channel coordination |
|
|
224
270
|
| harness-optimizer | Agent self-optimization |
|
|
225
271
|
| skill-router | Advisory skill recommendations |
|
|
226
272
|
| quality-gate | Output validation |
|
|
273
|
+
| researcher | Deep research agent |
|
|
274
|
+
| tester | Test execution agent |
|
|
275
|
+
| mcp-manager | MCP server management |
|
|
276
|
+
| journal-writer | Session journaling |
|
|
277
|
+
|
|
278
|
+
### Language-Specific Reviewers
|
|
279
|
+
|
|
280
|
+
| Agent | Language |
|
|
281
|
+
|-------|----------|
|
|
282
|
+
| typescript-reviewer | TypeScript |
|
|
283
|
+
| python-reviewer | Python |
|
|
284
|
+
| rust-reviewer | Rust |
|
|
285
|
+
| go-reviewer | Go |
|
|
286
|
+
| kotlin-reviewer | Kotlin |
|
|
287
|
+
| java-reviewer | Java |
|
|
288
|
+
| cpp-reviewer | C++ |
|
|
289
|
+
| flutter-reviewer | Flutter/Dart |
|
|
290
|
+
|
|
291
|
+
### Language-Specific Build Resolvers
|
|
292
|
+
|
|
293
|
+
| Agent | Language |
|
|
294
|
+
|-------|----------|
|
|
295
|
+
| cpp-build-resolver | C++ |
|
|
296
|
+
| rust-build-resolver | Rust |
|
|
297
|
+
| java-build-resolver | Java |
|
|
298
|
+
| kotlin-build-resolver | Kotlin |
|
|
299
|
+
| go-build-resolver | Go |
|
|
300
|
+
| pytorch-build-resolver | PyTorch |
|
|
227
301
|
|
|
228
302
|
</details>
|
|
229
303
|
|
|
230
304
|
---
|
|
231
305
|
|
|
232
|
-
## Skills (
|
|
306
|
+
## Skills (170)
|
|
233
307
|
|
|
234
|
-
|
|
308
|
+
All skills live in `./skills/<name>/SKILL.md` — flat structure.
|
|
235
309
|
|
|
236
|
-
|
|
310
|
+
<details>
|
|
311
|
+
<summary><strong>Click to expand full skill list</strong></summary>
|
|
237
312
|
|
|
238
|
-
###
|
|
313
|
+
### Development Core
|
|
314
|
+
debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, databases, api-design, devops, sequential-thinking, research, planning, problem-solving, coding-standards
|
|
239
315
|
|
|
240
|
-
|
|
241
|
-
|
|
316
|
+
### Frontend & Design
|
|
317
|
+
ui-ux-pro-max, react-best-practices, frontend-patterns, frontend-design, frontend-slides, design, design-system, brand, banner-design, slides, aesthetic, web-design-guidelines, liquid-glass-design, threejs
|
|
242
318
|
|
|
243
|
-
|
|
319
|
+
### Backend & API
|
|
320
|
+
backend-patterns, api-design, api-versioning, graphql-patterns, rest-api-security, microservice-patterns, mcp-server-patterns, mcp-management, mcp-builder
|
|
244
321
|
|
|
245
|
-
|
|
322
|
+
### Language Patterns
|
|
323
|
+
python-patterns, golang-patterns, rust-patterns, kotlin-patterns, java-patterns, cpp-patterns, perl-patterns, swift-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, nuxt4-patterns
|
|
246
324
|
|
|
247
|
-
###
|
|
325
|
+
### Language Testing & Security
|
|
326
|
+
python-testing, golang-testing, rust-testing, kotlin-testing, cpp-testing, django-tdd, laravel-tdd, springboot-tdd, django-security, laravel-security, springboot-security, django-verification, laravel-verification, springboot-verification
|
|
248
327
|
|
|
249
|
-
|
|
250
|
-
|
|
328
|
+
### Language Specialized
|
|
329
|
+
kotlin-coroutines-flows, kotlin-exposed-patterns, kotlin-ktor-patterns, java-coding-standards, cpp-coding-standards, swift-actor-persistence, swift-concurrency-6-2, swift-protocol-di-testing, jpa-patterns, compose-multiplatform-patterns
|
|
251
330
|
|
|
252
|
-
|
|
331
|
+
### Mobile
|
|
332
|
+
mobile-development, android-clean-architecture, flutter-riverpod, flutter-dart-code-review
|
|
333
|
+
|
|
334
|
+
### DevOps & Infrastructure
|
|
335
|
+
deployment-patterns, docker-patterns, ci-cd-patterns, docker-optimization, kubernetes-patterns, terraform-patterns, vercel-deploy
|
|
336
|
+
|
|
337
|
+
### Database
|
|
338
|
+
postgres-patterns, database-migrations, clickhouse-io
|
|
339
|
+
|
|
340
|
+
### AI & ML
|
|
341
|
+
ai-multimodal, pytorch-patterns, google-adk-python, cost-aware-llm-pipeline, foundation-models-on-device, prompt-optimizer
|
|
342
|
+
|
|
343
|
+
### Agentic Engineering
|
|
344
|
+
agentic-engineering, agent-harness-construction, agent-eval, autonomous-loops, continuous-agent-loop, continuous-learning, continuous-learning-v2, eval-harness, verification-loop, enterprise-agent-ops
|
|
345
|
+
|
|
346
|
+
### Content & Business
|
|
347
|
+
article-writing, technical-writing, content-engine, crosspost, market-research, investor-outreach, investor-materials, shopify, ecommerce-patterns, saas-patterns
|
|
348
|
+
|
|
349
|
+
### Security & Auth
|
|
350
|
+
security-review, security-scan, better-auth, payment-integration, safety-guard
|
|
351
|
+
|
|
352
|
+
### Media & Processing
|
|
353
|
+
media-processing, video-editing, videodb, fal-ai-media, nutrient-document-processing
|
|
354
|
+
|
|
355
|
+
### Tools & Utilities
|
|
356
|
+
repomix, chrome-devtools, docs-seeker, documentation-lookup, skill-creator, data-scraper-agent, exa-search, x-api, bun-runtime, nanoclaw-repl, dmux-workflows
|
|
357
|
+
|
|
358
|
+
### Research & Strategy
|
|
359
|
+
deep-research, strategic-compact, search-first, iterative-retrieval, codebase-onboarding, blueprint, santa-method, team-builder
|
|
360
|
+
|
|
361
|
+
### Domain-Specific
|
|
362
|
+
carrier-relationship-management, customs-trade-compliance, energy-procurement, inventory-demand-planning, logistics-exception-management, production-scheduling, quality-nonconformance, returns-reverse-logistics, visa-doc-translate
|
|
363
|
+
|
|
364
|
+
### Meta & Config
|
|
365
|
+
claude-code, claude-api, claude-devfleet, configure-ecc, skill-comply, skill-stocktake, rules-distill, plankton-code-quality, ralphinho-rfc-pipeline, regex-vs-llm-structured-text, click-path-audit, context-budget, content-hash-cache-pattern, project-guidelines-example, plan-preview, template-skill, e2e-testing
|
|
253
366
|
|
|
254
367
|
</details>
|
|
255
368
|
|
|
256
369
|
---
|
|
257
370
|
|
|
371
|
+
## Rules (13 Languages)
|
|
372
|
+
|
|
373
|
+
Language-specific coding rules in `./rules/`:
|
|
374
|
+
|
|
375
|
+
| Language | Files |
|
|
376
|
+
|----------|-------|
|
|
377
|
+
| Common | agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing |
|
|
378
|
+
| TypeScript | coding-style, hooks, patterns, security, testing |
|
|
379
|
+
| Python | coding-style, hooks, patterns, security, testing |
|
|
380
|
+
| Go | coding-style, hooks, patterns, security, testing |
|
|
381
|
+
| Rust | coding-style, hooks, patterns, security, testing |
|
|
382
|
+
| Java | coding-style, hooks, patterns, security, testing |
|
|
383
|
+
| Kotlin | coding-style, hooks, patterns, security, testing |
|
|
384
|
+
| C++ | coding-style, hooks, patterns, security, testing |
|
|
385
|
+
| C# | coding-style, hooks, patterns, security, testing |
|
|
386
|
+
| PHP | coding-style, hooks, patterns, security, testing |
|
|
387
|
+
| Perl | coding-style, hooks, patterns, security, testing |
|
|
388
|
+
| Swift | coding-style, hooks, patterns, security, testing |
|
|
389
|
+
|
|
390
|
+
---
|
|
391
|
+
|
|
258
392
|
## Hooks & Automation
|
|
259
393
|
|
|
260
394
|
| Hook | Trigger | What it does |
|
|
261
395
|
|------|---------|--------------|
|
|
396
|
+
| Block no-verify | PreToolUse | Prevents bypassing git hooks |
|
|
262
397
|
| Config protection | PreToolUse | Prevents weakening linter/formatter configs |
|
|
398
|
+
| Scout block | PreToolUse | Controls scout command usage |
|
|
263
399
|
| Auto-format | PostToolUse | Runs Biome or Prettier on edited JS/TS files |
|
|
264
400
|
| Type check | PostToolUse | Validates TypeScript after edits |
|
|
265
401
|
| Console.log check | Stop | Flags debug code left in modified files |
|
|
266
402
|
| Quality gate | PostToolUse | Lint + types + tests + security checks |
|
|
403
|
+
| Modularization | PostToolUse | Suggests splitting files >200 LOC |
|
|
404
|
+
| Session management | Start/Stop | Save and restore session context |
|
|
405
|
+
| Discord/Telegram notify | Stop | Send notifications on session end |
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
## Contexts
|
|
410
|
+
|
|
411
|
+
Development contexts in `./contexts/` for specialized workflows:
|
|
412
|
+
|
|
413
|
+
| Context | Use Case |
|
|
414
|
+
|---------|----------|
|
|
415
|
+
| `dev.md` | Development context |
|
|
416
|
+
| `research.md` | Research context |
|
|
417
|
+
| `review.md` | Code review context |
|
|
267
418
|
|
|
268
419
|
---
|
|
269
420
|
|
|
@@ -279,9 +430,9 @@ node tests/run-all.js
|
|
|
279
430
|
|
|
280
431
|
Built on the shoulders of giants:
|
|
281
432
|
|
|
282
|
-
> [
|
|
433
|
+
> [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyen — base architecture, mental models, strategic depth, unique agents
|
|
283
434
|
>
|
|
284
|
-
> [
|
|
435
|
+
> [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafa — cherry-picked agents, skills, commands, rules
|
|
285
436
|
>
|
|
286
437
|
> [UI/UX Pro Max Skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) by Next Level Builder — design intelligence, 67 styles, 161 color palettes, brand & design-system skills (MIT)
|
|
287
438
|
|
package/agents/brainstormer.md
CHANGED