@tinkcarlos/skillora 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/skills/.temp-skill-index.md +245 -0
- package/.claude/skills/SKILL.md +264 -0
- package/.claude/skills/api-scaffolding/SKILL.md +431 -0
- package/.claude/skills/api-scaffolding/agents/backend-architect.md +282 -0
- package/.claude/skills/api-scaffolding/agents/django-pro.md +144 -0
- package/.claude/skills/api-scaffolding/agents/fastapi-pro.md +156 -0
- package/.claude/skills/api-scaffolding/agents/graphql-architect.md +146 -0
- package/.claude/skills/api-scaffolding/skills/fastapi-templates/SKILL.md +171 -0
- package/.claude/skills/api-testing-observability/SKILL.md +583 -0
- package/.claude/skills/api-testing-observability/agents/api-documenter.md +146 -0
- package/.claude/skills/api-testing-observability/commands/api-mock.md +1320 -0
- package/.claude/skills/brainstorming/SKILL.md +283 -0
- package/.claude/skills/bug-fixing/SKILL.md +382 -0
- package/.claude/skills/bug-fixing/references/backend-guide.md +132 -0
- package/.claude/skills/bug-fixing/references/bug-guide.md +354 -0
- package/.claude/skills/bug-fixing/references/bug-record-template.md +134 -0
- package/.claude/skills/bug-fixing/references/bug-records.md +88 -0
- package/.claude/skills/bug-fixing/references/code-review-gate.md +81 -0
- package/.claude/skills/bug-fixing/references/common-bugs.md +140 -0
- package/.claude/skills/bug-fixing/references/complete-workflow.md +361 -0
- package/.claude/skills/bug-fixing/references/config-driven-fixes.md +136 -0
- package/.claude/skills/bug-fixing/references/context-isolation-protocol.md +268 -0
- package/.claude/skills/bug-fixing/references/cross-surface-regression.md +120 -0
- package/.claude/skills/bug-fixing/references/database-investigation.md +129 -0
- package/.claude/skills/bug-fixing/references/dependency-and-integrity-protocol.md +369 -0
- package/.claude/skills/bug-fixing/references/fix-completeness-checklist.md +239 -0
- package/.claude/skills/bug-fixing/references/frontend-guide.md +219 -0
- package/.claude/skills/bug-fixing/references/fullstack-joint-guide.md +123 -0
- package/.claude/skills/bug-fixing/references/functional-breakage.md +117 -0
- package/.claude/skills/bug-fixing/references/ide-lint-errors-guide.md +176 -0
- package/.claude/skills/bug-fixing/references/impact-analysis.md +511 -0
- package/.claude/skills/bug-fixing/references/investigation-checklist.md +263 -0
- package/.claude/skills/bug-fixing/references/knowledge-extraction-guide.md +531 -0
- package/.claude/skills/bug-fixing/references/knowledge-workflow.md +212 -0
- package/.claude/skills/bug-fixing/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/bug-fixing/references/python-env-and-testing.md +126 -0
- package/.claude/skills/bug-fixing/references/rca-guide.md +428 -0
- package/.claude/skills/bug-fixing/references/similar-bug-patterns.md +113 -0
- package/.claude/skills/bug-fixing/references/skill-delegation-guide.md +350 -0
- package/.claude/skills/bug-fixing/references/skill-orchestration.md +155 -0
- package/.claude/skills/bug-fixing/references/testing-strategy.md +350 -0
- package/.claude/skills/bug-fixing/references/tooling-build-scripts.md +162 -0
- package/.claude/skills/bug-fixing/references/user-input-validation.md +77 -0
- package/.claude/skills/bug-fixing/references/ux-patterns.md +158 -0
- package/.claude/skills/bug-fixing/references/windows-terminal-hygiene.md +106 -0
- package/.claude/skills/bug-fixing/references/zero-regression-matrix.md +239 -0
- package/.claude/skills/bug-fixing/references/zero-risk-protocol.md +102 -0
- package/.claude/skills/bug-fixing/scripts/format_code.py +611 -0
- package/.claude/skills/bug-fixing/scripts/generate_report_template.py +74 -0
- package/.claude/skills/bug-fixing/scripts/lint_check.py +816 -0
- package/.claude/skills/bug-fixing/scripts/requirements.txt +36 -0
- package/.claude/skills/cicd-pipeline/SKILL.md +300 -0
- package/.claude/skills/code-review/SKILL.md +535 -0
- package/.claude/skills/code-review/references/anti-pattern-scan.md +102 -0
- package/.claude/skills/code-review/references/automated-analysis.md +456 -0
- package/.claude/skills/code-review/references/backend-common-issues.md +589 -0
- package/.claude/skills/code-review/references/backend-expert-guide.md +415 -0
- package/.claude/skills/code-review/references/backend-review.md +868 -0
- package/.claude/skills/code-review/references/batch-processing-strategy.md +198 -0
- package/.claude/skills/code-review/references/call-chain-analysis-protocol.md +166 -0
- package/.claude/skills/code-review/references/common-patterns.md +321 -0
- package/.claude/skills/code-review/references/configuration-review.md +425 -0
- package/.claude/skills/code-review/references/control-flow-completeness.md +114 -0
- package/.claude/skills/code-review/references/database-review.md +298 -0
- package/.claude/skills/code-review/references/dependency-and-integrity-protocol.md +313 -0
- package/.claude/skills/code-review/references/external-standards.md +51 -0
- package/.claude/skills/code-review/references/feature-review.md +329 -0
- package/.claude/skills/code-review/references/file-review-template.md +326 -0
- package/.claude/skills/code-review/references/frontend-advanced.md +654 -0
- package/.claude/skills/code-review/references/frontend-common-issues.md +482 -0
- package/.claude/skills/code-review/references/frontend-expert-guide.md +342 -0
- package/.claude/skills/code-review/references/frontend-review.md +783 -0
- package/.claude/skills/code-review/references/fullstack-consistency.md +418 -0
- package/.claude/skills/code-review/references/fullstack-review.md +477 -0
- package/.claude/skills/code-review/references/functional-completeness.md +386 -0
- package/.claude/skills/code-review/references/hidden-bugs-detection.md +473 -0
- package/.claude/skills/code-review/references/ide-lint-errors-guide.md +173 -0
- package/.claude/skills/code-review/references/infrastructure-review.md +453 -0
- package/.claude/skills/code-review/references/iteration-review.md +264 -0
- package/.claude/skills/code-review/references/job-review.md +335 -0
- package/.claude/skills/code-review/references/layered-checklist-protocol.md +157 -0
- package/.claude/skills/code-review/references/logic-completeness.md +535 -0
- package/.claude/skills/code-review/references/mandatory-checklist.md +288 -0
- package/.claude/skills/code-review/references/multi-language-guide.md +800 -0
- package/.claude/skills/code-review/references/new-project-review.md +226 -0
- package/.claude/skills/code-review/references/non-code-files-review.md +451 -0
- package/.claude/skills/code-review/references/overlooked-issues.md +657 -0
- package/.claude/skills/code-review/references/platform-specific-review.md +195 -0
- package/.claude/skills/code-review/references/precision-analysis-protocol.md +260 -0
- package/.claude/skills/code-review/references/python-patterns.md +494 -0
- package/.claude/skills/code-review/references/rca-techniques.md +362 -0
- package/.claude/skills/code-review/references/report-template.md +430 -0
- package/.claude/skills/code-review/references/resource-limits-and-degradation.md +137 -0
- package/.claude/skills/code-review/references/review-dimensions.md +311 -0
- package/.claude/skills/code-review/references/review-guide.md +202 -0
- package/.claude/skills/code-review/references/review-knowledge-workflow.md +257 -0
- package/.claude/skills/code-review/references/review-progress-tracker-protocol.md +172 -0
- package/.claude/skills/code-review/references/review-record-template.md +195 -0
- package/.claude/skills/code-review/references/skill-orchestration.md +143 -0
- package/.claude/skills/code-review/references/ui-ux-review.md +470 -0
- package/.claude/skills/containerization/SKILL.md +313 -0
- package/.claude/skills/database-migrations/agents/database-admin.md +142 -0
- package/.claude/skills/database-migrations/agents/database-optimizer.md +144 -0
- package/.claude/skills/database-migrations/commands/migration-observability.md +408 -0
- package/.claude/skills/database-migrations/commands/sql-migrations.md +492 -0
- package/.claude/skills/finishing-a-development-branch/SKILL.md +319 -0
- package/.claude/skills/frontend-design/LICENSE.txt +177 -0
- package/.claude/skills/frontend-design/SKILL.md +587 -0
- package/.claude/skills/frontend-design/references/color-consistency.md +487 -0
- package/.claude/skills/frontend-design/references/color-palettes-full.md +657 -0
- package/.claude/skills/frontend-design/references/design-system-generator.md +285 -0
- package/.claude/skills/frontend-design/references/font-pairings-full.md +705 -0
- package/.claude/skills/frontend-design/references/industry-anti-patterns.md +281 -0
- package/.claude/skills/frontend-design/references/layout-anti-patterns.md +582 -0
- package/.claude/skills/frontend-design/references/motion-patterns.md +659 -0
- package/.claude/skills/frontend-design/references/pre-delivery-checklist.md +153 -0
- package/.claude/skills/frontend-design/references/responsive-design.md +555 -0
- package/.claude/skills/frontend-design/references/style-modification-rules.md +335 -0
- package/.claude/skills/frontend-design/references/ui-styles-full.md +383 -0
- package/.claude/skills/frontend-design/references/ui-styles-rating.md +191 -0
- package/.claude/skills/frontend-design/references/ux-guidelines.md +640 -0
- package/.claude/skills/fullstack-developer/SKILL.md +512 -0
- package/.claude/skills/fullstack-developer/references/api-contract-guide.md +312 -0
- package/.claude/skills/fullstack-developer/references/api-response-patterns.md +223 -0
- package/.claude/skills/fullstack-developer/references/async-patterns.md +220 -0
- package/.claude/skills/fullstack-developer/references/bug-prevention.md +914 -0
- package/.claude/skills/fullstack-developer/references/code-quality-checklist.md +271 -0
- package/.claude/skills/fullstack-developer/references/complete-development-workflow.md +278 -0
- package/.claude/skills/fullstack-developer/references/context-isolation-protocol.md +256 -0
- package/.claude/skills/fullstack-developer/references/database-migration.md +331 -0
- package/.claude/skills/fullstack-developer/references/dependency-and-integrity-protocol.md +390 -0
- package/.claude/skills/fullstack-developer/references/development-phases.md +333 -0
- package/.claude/skills/fullstack-developer/references/expert-guide.md +214 -0
- package/.claude/skills/fullstack-developer/references/file-import-patterns.md +114 -0
- package/.claude/skills/fullstack-developer/references/graceful-degradation-patterns.md +78 -0
- package/.claude/skills/fullstack-developer/references/ide-lint-errors-guide.md +183 -0
- package/.claude/skills/fullstack-developer/references/integration-testing.md +301 -0
- package/.claude/skills/fullstack-developer/references/mock-api-patterns.md +307 -0
- package/.claude/skills/fullstack-developer/references/phase-gate-template.md +249 -0
- package/.claude/skills/fullstack-developer/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/fullstack-developer/references/python-engineering.md +79 -0
- package/.claude/skills/fullstack-developer/references/skill-orchestration.md +214 -0
- package/.claude/skills/fullstack-developer/references/skill-router-table.md +304 -0
- package/.claude/skills/fullstack-developer/references/state-sync.md +217 -0
- package/.claude/skills/fullstack-developer/references/ui-testing-checklist.md +292 -0
- package/.claude/skills/fullstack-developer/scripts/format_code.py +611 -0
- package/.claude/skills/fullstack-developer/scripts/lint_check.py +816 -0
- package/.claude/skills/fullstack-developer/scripts/requirements.txt +36 -0
- package/.claude/skills/performance-optimization/SKILL.md +250 -0
- package/.claude/skills/product-requirements/SKILL.md +357 -0
- package/.claude/skills/product-requirements/references/acceptance-criteria.md +335 -0
- package/.claude/skills/product-requirements/references/answer-first-questioning-protocol.md +299 -0
- package/.claude/skills/product-requirements/references/competitive-analysis-guide.md +183 -0
- package/.claude/skills/product-requirements/references/document-accuracy-protocol.md +253 -0
- package/.claude/skills/product-requirements/references/document-management-protocol.md +278 -0
- package/.claude/skills/product-requirements/references/external-standards.md +62 -0
- package/.claude/skills/product-requirements/references/feature-spec-template.md +359 -0
- package/.claude/skills/product-requirements/references/knowledge-acquisition-protocol.md +251 -0
- package/.claude/skills/product-requirements/references/plan-execution-protocol.md +334 -0
- package/.claude/skills/product-requirements/references/plan-generation-protocol.md +264 -0
- package/.claude/skills/product-requirements/references/prioritization-frameworks.md +80 -0
- package/.claude/skills/product-requirements/references/requirement-decomposition-protocol.md +291 -0
- package/.claude/skills/product-requirements/references/user-story-examples.md +297 -0
- package/.claude/skills/product-requirements/references/workflow-templates.md +266 -0
- package/.claude/skills/react-best-practices/SKILL.md +198 -0
- package/.claude/skills/react-best-practices/references/advanced-patterns.md +94 -0
- package/.claude/skills/react-best-practices/references/bundle-optimization.md +182 -0
- package/.claude/skills/react-best-practices/references/client-data-fetching.md +112 -0
- package/.claude/skills/react-best-practices/references/complete-guide.md +2249 -0
- package/.claude/skills/react-best-practices/references/eliminating-waterfalls.md +169 -0
- package/.claude/skills/react-best-practices/references/javascript-performance.md +256 -0
- package/.claude/skills/react-best-practices/references/rendering-performance.md +230 -0
- package/.claude/skills/react-best-practices/references/rerender-optimization.md +214 -0
- package/.claude/skills/react-best-practices/references/server-performance.md +182 -0
- package/.claude/skills/security-audit/SKILL.md +226 -0
- package/.claude/skills/shared-references/advanced-debugging-techniques.md +186 -0
- package/.claude/skills/shared-references/code-quality-checklist.md +218 -0
- package/.claude/skills/shared-references/code-review-efficiency-guide.md +125 -0
- package/.claude/skills/shared-references/mcp-dependency-compatibility-protocol.md +276 -0
- package/.claude/skills/shared-references/skill-call-graph.md +230 -0
- package/.claude/skills/shared-references/skill-orchestration-protocol.md +281 -0
- package/.claude/skills/shared-references/subagent-dispatch-templates.md +199 -0
- package/.claude/skills/skill-expert-skills/LICENSE.txt +204 -0
- package/.claude/skills/skill-expert-skills/QUICK_NAVIGATION.md +374 -0
- package/.claude/skills/skill-expert-skills/SKILL.md +247 -0
- package/.claude/skills/skill-expert-skills/docs/_index.md +91 -0
- package/.claude/skills/skill-expert-skills/references/deep-research-methodology.md +389 -0
- package/.claude/skills/skill-expert-skills/references/docs-generation-workflow.md +398 -0
- package/.claude/skills/skill-expert-skills/references/domain-expertise-protocol.md +343 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/_index.md +54 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/backend-expertise.md +517 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/bug-fixing-expertise.md +363 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/code-review-expertise.md +392 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/frontend-expertise.md +410 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge-template.md +503 -0
- package/.claude/skills/skill-expert-skills/references/examples.md +782 -0
- package/.claude/skills/skill-expert-skills/references/integration-examples.md +655 -0
- package/.claude/skills/skill-expert-skills/references/knowledge-validation-checklist.md +246 -0
- package/.claude/skills/skill-expert-skills/references/latest-knowledge-acquisition.md +461 -0
- package/.claude/skills/skill-expert-skills/references/mcp-tools-guide.md +439 -0
- package/.claude/skills/skill-expert-skills/references/official-best-practices.md +616 -0
- package/.claude/skills/skill-expert-skills/references/patterns.md +218 -0
- package/.claude/skills/skill-expert-skills/references/plugin-skills-guide.md +432 -0
- package/.claude/skills/skill-expert-skills/references/requirement-elicitation-protocol.md +290 -0
- package/.claude/skills/skill-expert-skills/references/skill-creator-SKILL.md +353 -0
- package/.claude/skills/skill-expert-skills/references/skill-templates.md +583 -0
- package/.claude/skills/skill-expert-skills/references/skills-knowledge-base.md +561 -0
- package/.claude/skills/skill-expert-skills/references/tools-guide.md +379 -0
- package/.claude/skills/skill-expert-skills/references/troubleshooting.md +378 -0
- package/.claude/skills/skill-expert-skills/references/universality-guide.md +205 -0
- package/.claude/skills/skill-expert-skills/references/writing-style-guide.md +466 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/quick_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/universal_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/analyze_trigger.py +425 -0
- package/.claude/skills/skill-expert-skills/scripts/diff_with_official.py +188 -0
- package/.claude/skills/skill-expert-skills/scripts/init_skill.py +349 -0
- package/.claude/skills/skill-expert-skills/scripts/package_skill.py +156 -0
- package/.claude/skills/skill-expert-skills/scripts/quick_validate.py +493 -0
- package/.claude/skills/skill-expert-skills/scripts/requirements.txt +2 -0
- package/.claude/skills/skill-expert-skills/scripts/universal_validate.py +182 -0
- package/.claude/skills/skill-expert-skills/scripts/upgrade_skill.py +431 -0
- package/.claude/skills/subagent-driven-development/SKILL.md +268 -0
- package/.claude/skills/test-driven-development/SKILL.md +246 -0
- package/.claude/skills/test-driven-development/references/testing-anti-patterns.md +192 -0
- package/.claude/skills/using-git-worktrees/SKILL.md +266 -0
- package/.claude/skills/using-skillstack/SKILL.md +127 -0
- package/.claude/skills/vercel-deploy/SKILL.md +166 -0
- package/.claude/skills/vercel-deploy/scripts/deploy.sh +249 -0
- package/.claude/skills/verification-before-completion/SKILL.md +305 -0
- package/.claude/skills/writing-plans/SKILL.md +259 -0
- package/README.md +69 -0
- package/bin/cli.js +468 -0
- package/lib/init.js +333 -0
- package/package.json +29 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
## accessibility-compliance
|
|
2
|
+
- `screen-reader-testing`: Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support. (`accessibility-compliance/skills/screen-reader-testing/SKILL.md`)
|
|
3
|
+
- `wcag-audit-patterns`: Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility, fixing WCAG violations, or implementing accessible design patterns. (`accessibility-compliance/skills/wcag-audit-patterns/SKILL.md`)
|
|
4
|
+
|
|
5
|
+
## algorithmic-art
|
|
6
|
+
- `algorithmic-art`: Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations. (`algorithmic-art/SKILL.md`)
|
|
7
|
+
|
|
8
|
+
## api-scaffolding
|
|
9
|
+
- `fastapi-templates`: Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects. (`api-scaffolding/skills/fastapi-templates/SKILL.md`)
|
|
10
|
+
|
|
11
|
+
## backend-development
|
|
12
|
+
- `api-design-principles`: Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards. (`backend-development/skills/api-design-principles/SKILL.md`)
|
|
13
|
+
- `architecture-patterns`: Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing applications for better maintainability. (`backend-development/skills/architecture-patterns/SKILL.md`)
|
|
14
|
+
- `cqrs-implementation`: Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems. (`backend-development/skills/cqrs-implementation/SKILL.md`)
|
|
15
|
+
- `event-store-design`: Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns. (`backend-development/skills/event-store-design/SKILL.md`)
|
|
16
|
+
- `microservices-patterns`: Design microservices architectures with service boundaries, event-driven communication, and resilience patterns. Use when building distributed systems, decomposing monoliths, or implementing microservices. (`backend-development/skills/microservices-patterns/SKILL.md`)
|
|
17
|
+
- `projection-patterns`: Build read models and projections from event streams. Use when implementing CQRS read sides, building materialized views, or optimizing query performance in event-sourced systems. (`backend-development/skills/projection-patterns/SKILL.md`)
|
|
18
|
+
- `saga-orchestration`: Implement saga patterns for distributed transactions and cross-aggregate workflows. Use when coordinating multi-step business processes, handling compensating transactions, or managing long-running workflows. (`backend-development/skills/saga-orchestration/SKILL.md`)
|
|
19
|
+
- `temporal-python-testing`: Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures. (`backend-development/skills/temporal-python-testing/SKILL.md`)
|
|
20
|
+
- `workflow-orchestration-patterns`: Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running processes, distributed transactions, or microservice orchestration. (`backend-development/skills/workflow-orchestration-patterns/SKILL.md`)
|
|
21
|
+
|
|
22
|
+
## blockchain-web3
|
|
23
|
+
- `defi-protocol-templates`: Implement DeFi protocols with production-ready templates for staking, AMMs, governance, and lending systems. Use when building decentralized finance applications or smart contract protocols. (`blockchain-web3/skills/defi-protocol-templates/SKILL.md`)
|
|
24
|
+
- `nft-standards`: Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems. (`blockchain-web3/skills/nft-standards/SKILL.md`)
|
|
25
|
+
- `solidity-security`: Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementing security measures for blockchain applications. (`blockchain-web3/skills/solidity-security/SKILL.md`)
|
|
26
|
+
- `web3-testing`: Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or validating DeFi protocols. (`blockchain-web3/skills/web3-testing/SKILL.md`)
|
|
27
|
+
|
|
28
|
+
## brand-guidelines
|
|
29
|
+
- `brand-guidelines`: Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply. (`brand-guidelines/SKILL.md`)
|
|
30
|
+
|
|
31
|
+
## bug-fixing
|
|
32
|
+
- `bug-fixing`: Zero-regression bug fixing for frontend, backend, and fullstack issues. Use when a feature fails, behaves incorrectly, or "works but the console is red/noisy" (warnings, CSP blocks, compatibility messages). Clarifies entry point and success criteria, isolates root cause, traces 5-layer impact, performs global pattern search to fix all instances, and verifies before/after to avoid regressions. Supports React, Vue, Node, Python, Java, Go, SQL, and distributed systems. (`bug-fixing/SKILL.md`)
|
|
33
|
+
|
|
34
|
+
## business-analytics
|
|
35
|
+
- `data-storytelling`: Transform data into compelling narratives using visualization, context, and persuasive structure. Use when presenting analytics to stakeholders, creating data reports, or building executive presentations. (`business-analytics/skills/data-storytelling/SKILL.md`)
|
|
36
|
+
- `kpi-dashboard-design`: Design effective KPI dashboards with metrics selection, visualization best practices, and real-time monitoring patterns. Use when building business dashboards, selecting metrics, or designing data visualization layouts. (`business-analytics/skills/kpi-dashboard-design/SKILL.md`)
|
|
37
|
+
|
|
38
|
+
## canvas-design
|
|
39
|
+
- `canvas-design`: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations. (`canvas-design/SKILL.md`)
|
|
40
|
+
|
|
41
|
+
## cicd-automation
|
|
42
|
+
- `deployment-pipeline-design`: Design multi-stage CI/CD pipelines with approval gates, security checks, and deployment orchestration. Use when architecting deployment workflows, setting up continuous delivery, or implementing GitOps practices. (`cicd-automation/skills/deployment-pipeline-design/SKILL.md`)
|
|
43
|
+
- `github-actions-templates`: Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or creating reusable workflow templates. (`cicd-automation/skills/github-actions-templates/SKILL.md`)
|
|
44
|
+
- `gitlab-ci-patterns`: Build GitLab CI/CD pipelines with multi-stage workflows, caching, and distributed runners for scalable automation. Use when implementing GitLab CI/CD, optimizing pipeline performance, or setting up automated testing and deployment. (`cicd-automation/skills/gitlab-ci-patterns/SKILL.md`)
|
|
45
|
+
- `secrets-management`: Implement secure secrets management for CI/CD pipelines using Vault, AWS Secrets Manager, or native platform solutions. Use when handling sensitive credentials, rotating secrets, or securing CI/CD environments. (`cicd-automation/skills/secrets-management/SKILL.md`)
|
|
46
|
+
|
|
47
|
+
## cloud-infrastructure
|
|
48
|
+
- `cost-optimization`: Optimize cloud costs through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies. (`cloud-infrastructure/skills/cost-optimization/SKILL.md`)
|
|
49
|
+
- `hybrid-cloud-networking`: Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting data centers to cloud, or implementing secure cross-premises networking. (`cloud-infrastructure/skills/hybrid-cloud-networking/SKILL.md`)
|
|
50
|
+
- `istio-traffic-management`: Configure Istio traffic management including routing, load balancing, circuit breakers, and canary deployments. Use when implementing service mesh traffic policies, progressive delivery, or resilience patterns. (`cloud-infrastructure/skills/istio-traffic-management/SKILL.md`)
|
|
51
|
+
- `linkerd-patterns`: Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking with minimal overhead. (`cloud-infrastructure/skills/linkerd-patterns/SKILL.md`)
|
|
52
|
+
- `mtls-configuration`: Configure mutual TLS (mTLS) for zero-trust service-to-service communication. Use when implementing zero-trust networking, certificate management, or securing internal service communication. (`cloud-infrastructure/skills/mtls-configuration/SKILL.md`)
|
|
53
|
+
- `multi-cloud-architecture`: Design multi-cloud architectures using a decision framework to select and integrate services across AWS, Azure, and GCP. Use when building multi-cloud systems, avoiding vendor lock-in, or leveraging best-of-breed services from multiple providers. (`cloud-infrastructure/skills/multi-cloud-architecture/SKILL.md`)
|
|
54
|
+
- `service-mesh-observability`: Implement comprehensive observability for service meshes including distributed tracing, metrics, and visualization. Use when setting up mesh monitoring, debugging latency issues, or implementing SLOs for service communication. (`cloud-infrastructure/skills/service-mesh-observability/SKILL.md`)
|
|
55
|
+
- `terraform-module-library`: Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components. (`cloud-infrastructure/skills/terraform-module-library/SKILL.md`)
|
|
56
|
+
|
|
57
|
+
## code-review
|
|
58
|
+
- `code-review`: Exhaustive code review focused on bug discovery (correctness, security, reliability, performance). Use when asked to review a PR/diff/patch (code review, PR review, 代码审查, 代码评审). Includes a mandatory Phase 0 functional completeness gate, file-by-file evidence, 5-layer impact tracing, hidden-bug sweeps (races/leaks/state/timing), and similar-pattern hunting. Supports multi-language tool stacks (Java/Node/Go/Python), Core Web Vitals, database migration safety, cross-browser compatibility, dark mode, accessibility. (`code-review/SKILL.md`)
|
|
59
|
+
|
|
60
|
+
## database-design
|
|
61
|
+
- `postgresql-table-design`: Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features (`database-design/skills/postgresql/SKILL.md`)
|
|
62
|
+
|
|
63
|
+
## data-engineering
|
|
64
|
+
- `airflow-dag-patterns`: Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs. (`data-engineering/skills/airflow-dag-patterns/SKILL.md`)
|
|
65
|
+
- `data-quality-frameworks`: Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts. (`data-engineering/skills/data-quality-frameworks/SKILL.md`)
|
|
66
|
+
- `dbt-transformation-patterns`: Master dbt (data build tool) for analytics engineering with model organization, testing, documentation, and incremental strategies. Use when building data transformations, creating data models, or implementing analytics engineering best practices. (`data-engineering/skills/dbt-transformation-patterns/SKILL.md`)
|
|
67
|
+
- `spark-optimization`: Optimize Apache Spark jobs with partitioning, caching, shuffle optimization, and memory tuning. Use when improving Spark performance, debugging slow jobs, or scaling data processing pipelines. (`data-engineering/skills/spark-optimization/SKILL.md`)
|
|
68
|
+
|
|
69
|
+
## developer-essentials
|
|
70
|
+
- `auth-implementation-patterns`: Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing APIs, or debugging security issues. (`developer-essentials/skills/auth-implementation-patterns/SKILL.md`)
|
|
71
|
+
- `bazel-build-optimization`: Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases. (`developer-essentials/skills/bazel-build-optimization/SKILL.md`)
|
|
72
|
+
- `code-review-excellence`: Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing review standards, or mentoring developers. (`developer-essentials/skills/code-review-excellence/SKILL.md`)
|
|
73
|
+
- `debugging-strategies`: Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior. (`developer-essentials/skills/debugging-strategies/SKILL.md`)
|
|
74
|
+
- `e2e-testing-patterns`: Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards. (`developer-essentials/skills/e2e-testing-patterns/SKILL.md`)
|
|
75
|
+
- `error-handling-patterns`: Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability. (`developer-essentials/skills/error-handling-patterns/SKILL.md`)
|
|
76
|
+
- `git-advanced-workflows`: Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues. (`developer-essentials/skills/git-advanced-workflows/SKILL.md`)
|
|
77
|
+
- `monorepo-management`: Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies. (`developer-essentials/skills/monorepo-management/SKILL.md`)
|
|
78
|
+
- `nx-workspace-patterns`: Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands. (`developer-essentials/skills/nx-workspace-patterns/SKILL.md`)
|
|
79
|
+
- `sql-optimization-patterns`: Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database schemas, or optimizing application performance. (`developer-essentials/skills/sql-optimization-patterns/SKILL.md`)
|
|
80
|
+
- `turborepo-caching`: Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching. (`developer-essentials/skills/turborepo-caching/SKILL.md`)
|
|
81
|
+
|
|
82
|
+
## doc-coauthoring
|
|
83
|
+
- `doc-coauthoring`: Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks. (`doc-coauthoring/SKILL.md`)
|
|
84
|
+
|
|
85
|
+
## documentation-generation
|
|
86
|
+
- `architecture-decision-records`: Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation. Use when documenting significant technical decisions, reviewing past architectural choices, or establishing decision processes. (`documentation-generation/skills/architecture-decision-records/SKILL.md`)
|
|
87
|
+
- `changelog-automation`: Automate changelog generation from commits, PRs, and releases following Keep a Changelog format. Use when setting up release workflows, generating release notes, or standardizing commit conventions. (`documentation-generation/skills/changelog-automation/SKILL.md`)
|
|
88
|
+
- `openapi-spec-generation`: Generate and maintain OpenAPI 3.1 specifications from code, design-first specs, and validation patterns. Use when creating API documentation, generating SDKs, or ensuring API contract compliance. (`documentation-generation/skills/openapi-spec-generation/SKILL.md`)
|
|
89
|
+
|
|
90
|
+
## docx
|
|
91
|
+
- `docx`: Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks (`docx/SKILL.md`)
|
|
92
|
+
|
|
93
|
+
## dotnet-contribution
|
|
94
|
+
- `dotnet-backend-patterns`: Master C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures. (`dotnet-contribution/skills/dotnet-backend-patterns/SKILL.md`)
|
|
95
|
+
|
|
96
|
+
## framework-migration
|
|
97
|
+
- `angular-migration`: Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or modernizing legacy Angular code. (`framework-migration/skills/angular-migration/SKILL.md`)
|
|
98
|
+
- `database-migration`: Execute database migrations across ORMs and platforms with zero-downtime strategies, data transformation, and rollback procedures. Use when migrating databases, changing schemas, performing data transformations, or implementing zero-downtime deployment strategies. (`framework-migration/skills/database-migration/SKILL.md`)
|
|
99
|
+
- `dependency-upgrade`: Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries. (`framework-migration/skills/dependency-upgrade/SKILL.md`)
|
|
100
|
+
- `react-modernization`: Upgrade React applications to latest versions, migrate from class components to hooks, and adopt concurrent features. Use when modernizing React codebases, migrating to React Hooks, or upgrading to latest React versions. (`framework-migration/skills/react-modernization/SKILL.md`)
|
|
101
|
+
|
|
102
|
+
## frontend-design
|
|
103
|
+
- `frontend-design`: Create distinctive, production-grade frontend interfaces with high design quality. Use when: user asks to build web components, pages, dashboards, landing pages, React/Vue components, HTML/CSS layouts, or to style/beautify any web UI. Also triggers on: "make it look better", "design a page", "UI for...", "beautiful interface", "landing page", "dashboard design", "portfolio site", "admin panel". Generates creative, polished code avoiding generic AI aesthetics. Not for: backend API, database design, pure business logic without UI. (`frontend-design/SKILL.md`)
|
|
104
|
+
|
|
105
|
+
## frontend-mobile-development
|
|
106
|
+
- `nextjs-app-router-patterns`: Master Next.js 14+ App Router with Server Components, streaming, parallel routes, and advanced data fetching. Use when building Next.js applications, implementing SSR/SSG, or optimizing React Server Components. (`frontend-mobile-development/skills/nextjs-app-router-patterns/SKILL.md`)
|
|
107
|
+
- `react-native-architecture`: Build production React Native apps with Expo, navigation, native modules, offline sync, and cross-platform patterns. Use when developing mobile apps, implementing native integrations, or architecting React Native projects. (`frontend-mobile-development/skills/react-native-architecture/SKILL.md`)
|
|
108
|
+
- `react-state-management`: Master modern React state management with Redux Toolkit, Zustand, Jotai, and React Query. Use when setting up global state, managing server state, or choosing between state management solutions. (`frontend-mobile-development/skills/react-state-management/SKILL.md`)
|
|
109
|
+
- `tailwind-design-system`: Build scalable design systems with Tailwind CSS, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI patterns. (`frontend-mobile-development/skills/tailwind-design-system/SKILL.md`)
|
|
110
|
+
|
|
111
|
+
## fullstack-developer
|
|
112
|
+
- `fullstack-developer`: Full-stack development with mandatory review and data layer safety. Use when: - Building new features (frontend + backend + database) - Implementing API endpoints with database changes - Adding ORM model fields (triggers Data Layer Gate) - Architecture design and project bootstrap Flow: Research �?Build �?Data Layer Gate �?code-review �?bug-fixing �?ship. Ensures schema-model sync, review-driven quality, zero-defect delivery. (`fullstack-developer/SKILL.md`)
|
|
113
|
+
|
|
114
|
+
## game-development
|
|
115
|
+
- `godot-gdscript-patterns`: Master Godot 4 GDScript patterns including signals, scenes, state machines, and optimization. Use when building Godot games, implementing game systems, or learning GDScript best practices. (`game-development/skills/godot-gdscript-patterns/SKILL.md`)
|
|
116
|
+
- `unity-ecs-patterns`: Master Unity ECS (Entity Component System) with DOTS, Jobs, and Burst for high-performance game development. Use when building data-oriented games, optimizing performance, or working with large entity counts. (`game-development/skills/unity-ecs-patterns/SKILL.md`)
|
|
117
|
+
|
|
118
|
+
## hr-legal-compliance
|
|
119
|
+
- `employment-contract-templates`: Create employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment documentation. (`hr-legal-compliance/skills/employment-contract-templates/SKILL.md`)
|
|
120
|
+
- `gdpr-data-handling`: Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, or conducting GDPR compliance reviews. (`hr-legal-compliance/skills/gdpr-data-handling/SKILL.md`)
|
|
121
|
+
|
|
122
|
+
## incident-response
|
|
123
|
+
- `incident-runbook-templates`: Create structured incident response runbooks with step-by-step procedures, escalation paths, and recovery actions. Use when building runbooks, responding to incidents, or establishing incident response procedures. (`incident-response/skills/incident-runbook-templates/SKILL.md`)
|
|
124
|
+
- `on-call-handoff-patterns`: Master on-call shift handoffs with context transfer, escalation procedures, and documentation. Use when transitioning on-call responsibilities, documenting shift summaries, or improving on-call processes. (`incident-response/skills/on-call-handoff-patterns/SKILL.md`)
|
|
125
|
+
- `postmortem-writing`: Write effective blameless postmortems with root cause analysis, timelines, and action items. Use when conducting incident reviews, writing postmortem documents, or improving incident response processes. (`incident-response/skills/postmortem-writing/SKILL.md`)
|
|
126
|
+
|
|
127
|
+
## internal-comms
|
|
128
|
+
- `internal-comms`: A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.). (`internal-comms/SKILL.md`)
|
|
129
|
+
|
|
130
|
+
## javascript-typescript
|
|
131
|
+
- `javascript-testing-patterns`: Implement comprehensive testing strategies using Jest, Vitest, and Testing Library for unit tests, integration tests, and end-to-end testing with mocking, fixtures, and test-driven development. Use when writing JavaScript/TypeScript tests, setting up test infrastructure, or implementing TDD/BDD workflows. (`javascript-typescript/skills/javascript-testing-patterns/SKILL.md`)
|
|
132
|
+
- `modern-javascript-patterns`: Master ES6+ features including async/await, destructuring, spread operators, arrow functions, promises, modules, iterators, generators, and functional programming patterns for writing clean, efficient JavaScript code. Use when refactoring legacy code, implementing modern patterns, or optimizing JavaScript applications. (`javascript-typescript/skills/modern-javascript-patterns/SKILL.md`)
|
|
133
|
+
- `nodejs-backend-patterns`: Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when creating Node.js servers, REST APIs, GraphQL backends, or microservices architectures. (`javascript-typescript/skills/nodejs-backend-patterns/SKILL.md`)
|
|
134
|
+
- `typescript-advanced-types`: Master TypeScript's advanced type system including generics, conditional types, mapped types, template literals, and utility types for building type-safe applications. Use when implementing complex type logic, creating reusable type utilities, or ensuring compile-time type safety in TypeScript projects. (`javascript-typescript/skills/typescript-advanced-types/SKILL.md`)
|
|
135
|
+
|
|
136
|
+
## kubernetes-operations
|
|
137
|
+
- `gitops-workflow`: Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management. (`kubernetes-operations/skills/gitops-workflow/SKILL.md`)
|
|
138
|
+
- `helm-chart-scaffolding`: Design, organize, and manage Helm charts for templating and packaging Kubernetes applications with reusable configurations. Use when creating Helm charts, packaging Kubernetes applications, or implementing templated deployments. (`kubernetes-operations/skills/helm-chart-scaffolding/SKILL.md`)
|
|
139
|
+
- `k8s-manifest-generator`: Create production-ready Kubernetes manifests for Deployments, Services, ConfigMaps, and Secrets following best practices and security standards. Use when generating Kubernetes YAML manifests, creating K8s resources, or implementing production-grade Kubernetes configurations. (`kubernetes-operations/skills/k8s-manifest-generator/SKILL.md`)
|
|
140
|
+
- `k8s-security-policies`: Implement Kubernetes security policies including NetworkPolicy, PodSecurityPolicy, and RBAC for production-grade security. Use when securing Kubernetes clusters, implementing network isolation, or enforcing pod security standards. (`kubernetes-operations/skills/k8s-security-policies/SKILL.md`)
|
|
141
|
+
|
|
142
|
+
## llm-application-dev
|
|
143
|
+
- `embedding-strategies`: Select and optimize embedding models for semantic search and RAG applications. Use when choosing embedding models, implementing chunking strategies, or optimizing embedding quality for specific domains. (`llm-application-dev/skills/embedding-strategies/SKILL.md`)
|
|
144
|
+
- `hybrid-search-implementation`: Combine vector and keyword search for improved retrieval. Use when implementing RAG systems, building search engines, or when neither approach alone provides sufficient recall. (`llm-application-dev/skills/hybrid-search-implementation/SKILL.md`)
|
|
145
|
+
- `langchain-architecture`: Design LLM applications using the LangChain framework with agents, memory, and tool integration patterns. Use when building LangChain applications, implementing AI agents, or creating complex LLM workflows. (`llm-application-dev/skills/langchain-architecture/SKILL.md`)
|
|
146
|
+
- `llm-evaluation`: Implement comprehensive evaluation strategies for LLM applications using automated metrics, human feedback, and benchmarking. Use when testing LLM performance, measuring AI application quality, or establishing evaluation frameworks. (`llm-application-dev/skills/llm-evaluation/SKILL.md`)
|
|
147
|
+
- `prompt-engineering-patterns`: Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing production prompt templates. (`llm-application-dev/skills/prompt-engineering-patterns/SKILL.md`)
|
|
148
|
+
- `rag-implementation`: Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases. (`llm-application-dev/skills/rag-implementation/SKILL.md`)
|
|
149
|
+
- `similarity-search-patterns`: Implement efficient similarity search with vector databases. Use when building semantic search, implementing nearest neighbor queries, or optimizing retrieval performance. (`llm-application-dev/skills/similarity-search-patterns/SKILL.md`)
|
|
150
|
+
- `vector-index-tuning`: Optimize vector index performance for latency, recall, and memory. Use when tuning HNSW parameters, selecting quantization strategies, or scaling vector search infrastructure. (`llm-application-dev/skills/vector-index-tuning/SKILL.md`)
|
|
151
|
+
|
|
152
|
+
## machine-learning-ops
|
|
153
|
+
- `ml-pipeline-workflow`: Build end-to-end MLOps pipelines from data preparation through model training, validation, and production deployment. Use when creating ML pipelines, implementing MLOps practices, or automating model training and deployment workflows. (`machine-learning-ops/skills/ml-pipeline-workflow/SKILL.md`)
|
|
154
|
+
|
|
155
|
+
## mcp-builder
|
|
156
|
+
- `mcp-builder`: Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK). (`mcp-builder/SKILL.md`)
|
|
157
|
+
|
|
158
|
+
## observability-monitoring
|
|
159
|
+
- `distributed-tracing`: Implement distributed tracing with Jaeger and Tempo to track requests across microservices and identify performance bottlenecks. Use when debugging microservices, analyzing request flows, or implementing observability for distributed systems. (`observability-monitoring/skills/distributed-tracing/SKILL.md`)
|
|
160
|
+
- `grafana-dashboards`: Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational observability interfaces. (`observability-monitoring/skills/grafana-dashboards/SKILL.md`)
|
|
161
|
+
- `prometheus-configuration`: Set up Prometheus for comprehensive metric collection, storage, and monitoring of infrastructure and applications. Use when implementing metrics collection, setting up monitoring infrastructure, or configuring alerting systems. (`observability-monitoring/skills/prometheus-configuration/SKILL.md`)
|
|
162
|
+
- `slo-implementation`: Define and implement Service Level Indicators (SLIs) and Service Level Objectives (SLOs) with error budgets and alerting. Use when establishing reliability targets, implementing SRE practices, or measuring service performance. (`observability-monitoring/skills/slo-implementation/SKILL.md`)
|
|
163
|
+
|
|
164
|
+
## payment-processing
|
|
165
|
+
- `billing-automation`: Build automated billing systems for recurring payments, invoicing, subscription lifecycle, and dunning management. Use when implementing subscription billing, automating invoicing, or managing recurring payment systems. (`payment-processing/skills/billing-automation/SKILL.md`)
|
|
166
|
+
- `paypal-integration`: Integrate PayPal payment processing with support for express checkout, subscriptions, and refund management. Use when implementing PayPal payments, processing online transactions, or building e-commerce checkout flows. (`payment-processing/skills/paypal-integration/SKILL.md`)
|
|
167
|
+
- `pci-compliance`: Implement PCI DSS compliance requirements for secure handling of payment card data and payment systems. Use when securing payment processing, achieving PCI compliance, or implementing payment card security measures. (`payment-processing/skills/pci-compliance/SKILL.md`)
|
|
168
|
+
- `stripe-integration`: Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or implementing secure checkout flows. (`payment-processing/skills/stripe-integration/SKILL.md`)
|
|
169
|
+
|
|
170
|
+
## pdf
|
|
171
|
+
- `pdf`: Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale. (`pdf/SKILL.md`)
|
|
172
|
+
|
|
173
|
+
## p-master-fusion
|
|
174
|
+
- `p-master-fusion`: Expert prompt engineering for creation, optimization, and system design. Use when users ask to design prompts, optimize prompts, build prompt workflows, enforce XML-structured prompts with tests, or require rigorous prompt QA and self-correction. Covers CRISP-ET, 8-Dim, P-E-R-F-E-C-T-C, GSCP, CLEAR, REFLECT-C. (`p-master-fusion/SKILL.md`)
|
|
175
|
+
|
|
176
|
+
## postgresql
|
|
177
|
+
- `postgresql-table-design`: Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features (`postgresql/SKILL.md`)
|
|
178
|
+
|
|
179
|
+
## pptx
|
|
180
|
+
- `pptx`: Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks (`pptx/SKILL.md`)
|
|
181
|
+
|
|
182
|
+
## product-requirements
|
|
183
|
+
- `product-requirements`: Comprehensive product requirement analysis with competitive research and document management. Use when: - Analyzing requirements, writing PRD/spec documents - Adding new features or optimizations (triggers competitive analysis) - Defining user stories, use cases, acceptance criteria (Gherkin) - Reviewing and updating existing requirement documents - Competitive analysis for feature inspiration - Designing user flows, personas, user journeys - Specifying feature details, page/component specs - MVP scoping and prioritization (MoSCoW, RICE) Keywords: PRD, 需求分�? 需求文�? 产品需�? 用户故事, 竞品分析, 功能优化, 新增需�? 需求确�? 验收标准, 用户画像, MVP Outputs: Development-ready PRD with competitive insights, personas, user stories, feature specs, acceptance criteria, and versioned requirement documents. (`product-requirements/SKILL.md`)
|
|
184
|
+
|
|
185
|
+
## project-development
|
|
186
|
+
- `project-development`: Comprehensive project development workflow based on product requirements. Use when: - Starting a new project or initializing codebase - Implementing features from PRD/spec - Setting up development environment (Python venv, Node.js) - Designing technical architecture - Framework/library selection and compatibility checks - Resolving dependency conflicts or version issues Keywords: 项目初始�? 环境搭建, 技术方�? 架构设计, 技术选型, 依赖冲突, 版本兼容, project setup, tech stack Outputs: Technical design document, environment setup guide, compatibility report, implementation plan with quality gates. (`project-development/SKILL.md`)
|
|
187
|
+
|
|
188
|
+
## project-init-config
|
|
189
|
+
- `project-init-config`: Automated project initialization workflow for OpenSpec and OpenSkills setup. Use when user wants to initialize a new project, set up OpenSpec configuration, install OpenSkills, or configure AGENTS.md for skill management. Triggers on phrases like "initialize project", "set up OpenSpec", "configure skills", "project setup", or "init project config". (`project-init-config/SKILL.md`)
|
|
190
|
+
|
|
191
|
+
## python-development
|
|
192
|
+
- `async-python-patterns`: Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations. (`python-development/skills/async-python-patterns/SKILL.md`)
|
|
193
|
+
- `python-packaging`: Create distributable Python packages with proper project structure, setup.py/pyproject.toml, and publishing to PyPI. Use when packaging Python libraries, creating CLI tools, or distributing Python code. (`python-development/skills/python-packaging/SKILL.md`)
|
|
194
|
+
- `python-performance-optimization`: Profile and optimize Python code using cProfile, memory profilers, and performance best practices. Use when debugging slow Python code, optimizing bottlenecks, or improving application performance. (`python-development/skills/python-performance-optimization/SKILL.md`)
|
|
195
|
+
- `python-testing-patterns`: Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices. (`python-development/skills/python-testing-patterns/SKILL.md`)
|
|
196
|
+
- `uv-package-manager`: Master the uv package manager for fast Python dependency management, virtual environments, and modern Python project workflows. Use when setting up Python projects, managing dependencies, or optimizing Python development workflows with uv. (`python-development/skills/uv-package-manager/SKILL.md`)
|
|
197
|
+
|
|
198
|
+
## quantitative-trading
|
|
199
|
+
- `backtesting-frameworks`: Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strategies, or building backtesting infrastructure. (`quantitative-trading/skills/backtesting-frameworks/SKILL.md`)
|
|
200
|
+
- `risk-metrics-calculation`: Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems. (`quantitative-trading/skills/risk-metrics-calculation/SKILL.md`)
|
|
201
|
+
|
|
202
|
+
## security-scanning
|
|
203
|
+
- `attack-tree-construction`: Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders. (`security-scanning/skills/attack-tree-construction/SKILL.md`)
|
|
204
|
+
- `sast-configuration`: Configure Static Application Security Testing (SAST) tools for automated vulnerability detection in application code. Use when setting up security scanning, implementing DevSecOps practices, or automating code vulnerability detection. (`security-scanning/skills/sast-configuration/SKILL.md`)
|
|
205
|
+
- `security-requirement-extraction`: Derive security requirements from threat models and business context. Use when translating threats into actionable requirements, creating security user stories, or building security test cases. (`security-scanning/skills/security-requirement-extraction/SKILL.md`)
|
|
206
|
+
- `stride-analysis-patterns`: Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation. (`security-scanning/skills/stride-analysis-patterns/SKILL.md`)
|
|
207
|
+
- `threat-mitigation-mapping`: Map identified threats to appropriate security controls and mitigations. Use when prioritizing security investments, creating remediation plans, or validating control effectiveness. (`security-scanning/skills/threat-mitigation-mapping/SKILL.md`)
|
|
208
|
+
|
|
209
|
+
## shell-scripting
|
|
210
|
+
- `bash-defensive-patterns`: Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety. (`shell-scripting/skills/bash-defensive-patterns/SKILL.md`)
|
|
211
|
+
- `bats-testing-patterns`: Master Bash Automated Testing System (Bats) for comprehensive shell script testing. Use when writing tests for shell scripts, CI/CD pipelines, or requiring test-driven development of shell utilities. (`shell-scripting/skills/bats-testing-patterns/SKILL.md`)
|
|
212
|
+
- `shellcheck-configuration`: Master ShellCheck static analysis configuration and usage for shell script quality. Use when setting up linting infrastructure, fixing code issues, or ensuring script portability. (`shell-scripting/skills/shellcheck-configuration/SKILL.md`)
|
|
213
|
+
|
|
214
|
+
## skill-creator
|
|
215
|
+
- `skill-creator`: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations. (`skill-creator/SKILL.md`)
|
|
216
|
+
|
|
217
|
+
## skill-expert-skills
|
|
218
|
+
- `skill-expert-skills`: Expert workflow for creating, optimizing, validating, and packaging Claude Skills (.claude/skills/*). Use when: - Creating a new Claude Skill from scratch - Optimizing skill description to improve trigger rates - Validating skill structure (quick_validate, universal_validate) - Packaging skills for distribution (.skill file) - Writing SKILL.md frontmatter (name, description, allowed-tools) - Organizing references/scripts/assets structure - Fixing skill validation errors (YAML, line count, project paths) Not for: regular programming or business logic (use domain-specific skills). (`skill-expert-skills/SKILL.md`)
|
|
219
|
+
|
|
220
|
+
## slack-gif-creator
|
|
221
|
+
- `slack-gif-creator`: Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack. (`slack-gif-creator/SKILL.md`)
|
|
222
|
+
|
|
223
|
+
## systems-programming
|
|
224
|
+
- `go-concurrency-patterns`: Master Go concurrency with goroutines, channels, sync primitives, and context. Use when building concurrent Go applications, implementing worker pools, or debugging race conditions. (`systems-programming/skills/go-concurrency-patterns/SKILL.md`)
|
|
225
|
+
- `memory-safety-patterns`: Implement memory-safe programming with RAII, ownership, smart pointers, and resource management across Rust, C++, and C. Use when writing safe systems code, managing resources, or preventing memory bugs. (`systems-programming/skills/memory-safety-patterns/SKILL.md`)
|
|
226
|
+
- `rust-async-patterns`: Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent systems, or debugging async code. (`systems-programming/skills/rust-async-patterns/SKILL.md`)
|
|
227
|
+
|
|
228
|
+
## template
|
|
229
|
+
- `template-skill`: Replace with description of the skill and when Claude should use it. (`template/SKILL.md`)
|
|
230
|
+
|
|
231
|
+
## test-architect-live
|
|
232
|
+
- `test-architect-live`: Interactive Test Architect workflow (E-V-D-G-T): multi-modal requirement exploration, ambiguity probing, 100% coverage mind maps, and Excel (.xlsx) generation. Output saved to cases/. Triggers: 测试用例, 测试场景, 脑图, 需求分�? 验收, test cases, scenarios, QA, functional testing, 用例设计, 测试设计. (`test-architect-live/SKILL.md`)
|
|
233
|
+
|
|
234
|
+
## theme-factory
|
|
235
|
+
- `theme-factory`: Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly. (`theme-factory/SKILL.md`)
|
|
236
|
+
|
|
237
|
+
## webapp-testing
|
|
238
|
+
- `webapp-testing`: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs. (`webapp-testing/SKILL.md`)
|
|
239
|
+
|
|
240
|
+
## web-artifacts-builder
|
|
241
|
+
- `web-artifacts-builder`: Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts. (`web-artifacts-builder/SKILL.md`)
|
|
242
|
+
|
|
243
|
+
## xlsx
|
|
244
|
+
- `xlsx`: Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas (`xlsx/SKILL.md`)
|
|
245
|
+
|