Skip to content

taymournajy/skills-hub-registry

 
 

Repository files navigation

skills-hub-registry

The official skill collection for skills-hub.ai -- a marketplace for Claude Code skills.

387 production-tested skills organized into 13 categories covering the complete software development lifecycle, 40 industry verticals and social-impact sectors, plus gaming and mobile app development. All skills ship as v2.0.0 with built-in self-healing validation and self-evolution telemetry.

Directory Structure

skills-hub-registry/
├── build/              # 21 skills — Project scaffolding, game engines, mobile apps, industry API scaffolds
├── test/               # 13 skills — Unit, E2E, integration, load, visual, contract, accessibility, mobile, device matrix
├── qa/                 # 13 skills — QA, performance, chaos, code smells, game QA, mobile QA, balance testing
├── review/             # 26 skills — Architecture, API, security, executive, industry, game, mobile, store compliance
├── deploy/             # 17 skills — Docker, K8s, Terraform, CI/CD, app stores, mobile CI/CD, OTA updates
├── docs/               # 10 skills — README, API docs, ADR, changelog, diagrams, onboarding, runbook, specs
├── security/           # 12 skills — OWASP, pentest, GDPR, SOC2, HIPAA, PCI-DSS, game security, benefits fraud
├── ux/                 # 24 skills — UX audit, design systems, dark mode, responsive, i18n, game UX, 20 design skills
├── analysis/           #195 skills — Domain analysis, research, 40 industry verticals, social impact, gaming, mobile
├── productivity/       #  7 skills — Dev containers, linting, git hooks, monorepo, release, env setup
├── integration/        #  9 skills — Stripe, auth, email, push notifications, search, storage, realtime
├── combo/              # 31 skills — Multi-skill chains and pipeline compositions
└── meta/               #  9 skills — Skill creation, testing, evolution, templates, cross-project sync

Architecture

Main Skill + Sub-Skill Pattern

Most categories follow an orchestrator pattern where a main skill scans for gaps and routes work to specialized sub-skills. This allows running the main skill for broad coverage or invoking a sub-skill directly for targeted work.

Main Skill Category Orchestrates
/integrate integration auth-provider, stripe, email, push-notifications, search, storage, realtime, analytics-tracking
/devops deploy docker, github-actions, k8s, terraform, aws, cdn, dns, monitoring, secrets, app-icon
/secure security owasp, pentest, gdpr, soc2, encryption, dependency-scan, check-vanta
/test-suite test unit-test, e2e, integration-test, load-test, contract-test, accessibility-test, visual-regression, manual-test-plan
/document docs readme, api-docs, adr, changelog, diagram, onboarding, runbook, gen-catalog, skills-list
/dx productivity devcontainer, env-setup, git-hooks, linter, monorepo, release, vscode

Standalone orchestrators (no sub-skill routing, self-contained pipelines):

Skill Category What It Does
/build build Full project build from competitor analysis through implementation and QA
/qa qa Automated QA agent that walks every screen/endpoint, verifies, and fixes
/analyze analysis End-to-end domain analysis tracing features across all layers
/arch-review review Architect-level story review and implementation validation
/ux ux Dual-mode UX quality audit (heuristics/a11y/motion) or design validation

Duplicate Skill Names Across Categories

19 skill names appear in multiple categories. This is by design -- each implementation is different and tailored to its category's context. For example, hotfix in build/ focuses on emergency code fixes while hotfix in deploy/ handles emergency deployment rollbacks. The full path (e.g., build/hotfix vs deploy/hotfix) disambiguates them.

Duplicated names: app-icon, audit, aws, backend-spec, bootstrap, cost-analysis, dep-map, fix-and-ship, full-test, hotfix, image-storage-optimization, iterate-review, perf, pr, preflight, qa, skills-list, spec, ux.

Skill Catalog

build -- Project Scaffolding & Build Pipelines (21 skills)

Skill Version Description
build 1.0.0 Master orchestrator -- takes a competitor app and builds a better, cheaper, modern clone end-to-end with Node.js backend and Flutter frontend
ship 8.0.0 Fast autonomous build loop -- 4 iterations max. Build it, make it work, analyze it, ship it
iterate 1.0.0 Self-iterating build loop -- implements, tests, reviews, analyzes, and refines up to 6 iterations
flutter 1.0.0 Analyzes a video or screenshots of an application and builds a Flutter mobile version
nextjs 1.0.0 Scaffolds a production-ready Next.js 15 application with App Router, auth, database, and dashboard UI
react-native 1.0.0 Builds a production-ready React Native mobile application from a design or specification
api-scaffold 1.0.0 Scaffolds a production-ready backend API with routes, controllers, middleware, database, auth, validation, and OpenAPI spec
chrome-extension 1.0.0 Builds a complete Chrome extension with Manifest V3, popup UI, content scripts, and background service worker
cli-tool 1.0.0 Generates a production-ready CLI tool with command parsing, interactive prompts, and config management
hotfix 1.1.0 Emergency bug fix pipeline -- diagnose, fix, test, commit, push, and PR in 2 iterations max
story-implementer 1.0.0 Implements a Jira story using repo conventions, writes unit tests, creates PR, addresses bot review
db-migrate 1.0.0 Scaffolds Flyway migration files -- generates timestamped SQL, updates Slick table definitions and model case classes
healthcare-api 1.0.0 Scaffold a FHIR R4-compliant healthcare API with resource models, SMART on FHIR auth, audit logging, and interoperability endpoints
fintech-api 1.0.0 Scaffold a production-ready financial services API with Plaid integration, payment processing, double-entry ledger, and KYC workflow
unity-scaffold 1.0.0 Scaffold a Unity game project with folder structure, assembly definitions, input system, CI/CD, and scriptable object architecture
unreal-scaffold 1.0.0 Scaffold an Unreal Engine project with module structure, GAS setup, Enhanced Input, Subsystem architecture, and BuildGraph CI/CD
godot-scaffold 1.0.0 Scaffold a Godot 4 project with scene tree architecture, autoloads, signal bus, export presets, and CI/CD
web-game 1.0.0 Scaffold a browser-based game with Phaser 3, PixiJS, or Three.js with game loop, asset pipeline, and deployment
ios-app 1.0.0 Scaffold a native iOS app with SwiftUI, MVVM, Core Data/SwiftData, networking, push notifications, and multi-env config
android-app 1.0.0 Scaffold a native Android app with Jetpack Compose, Hilt DI, Room, Retrofit, build variants, and Gradle version catalogs
cross-platform-app 1.0.0 Scaffold a cross-platform mobile app -- auto-detects Flutter, React Native, KMP, or .NET MAUI
app-icon 1.0.0 Generates professional app icons and applies them to any project -- supports Flutter, React Native, native iOS/Android, web apps
aws 1.0.0 Generates production-ready infrastructure-as-code for AWS -- writes complete IaC files for any AWS architecture pattern
bootstrap 1.0.0 Scaffolds a new project with proven conventions, architecture gates, and a recommended build pipeline

test -- Automated Testing (13 skills)

Skill Version Description
test-suite 1.0.0 Main skill. Analyzes test coverage across all testing types, identifies gaps, routes to sub-skills, and produces a health report
unit-test 1.0.0 Auto-detects test framework, scans for untested functions, generates unit tests with edge cases, runs and self-heals
e2e 1.0.0 Auto-detects any tech stack, generates exhaustive end-to-end integration tests with self-healing
integration-test 1.0.0 Auto-detects framework, generates integration tests for APIs, databases, and service interactions
load-test 1.0.0 Auto-detects API framework, generates realistic load test scenarios with k6/Locust/Artillery
contract-test 1.0.0 Auto-detects API framework, generates consumer-driven contract tests using Pact or OpenAPI validation
accessibility-test 1.0.0 Auto-detects frontend framework, sets up axe-core and Lighthouse CI for automated WCAG 2.1 AA testing
visual-regression 1.0.0 Auto-detects frontend framework, sets up visual regression testing with baseline screenshots across breakpoints
manual-test-plan 1.0.0 Generates a manual QA test plan based on code changes on the current branch
mobile-test 1.0.0 Mobile test generation -- unit, widget/UI, integration, snapshot, and accessibility tests for any mobile framework
device-matrix 1.0.0 Device matrix testing -- Firebase Test Lab, AWS Device Farm, BrowserStack with device selection and result aggregation
full-test 1.0.0 Complete testing pipeline -- runs full automated test suite plus generates manual test plan
walkthrough 1.0.0 Run an app walkthrough -- launch a Flutter app on simulator/emulator, generate and run exhaustive integration tests

qa -- Quality Assurance (13 skills)

Skill Version Description
qa 3.1.0 Main skill. Automated QA agent that walks every screen and API endpoint, verifies functionality, evaluates design, runs domain analysis, and fixes issues
iterate-review 5.0.0 Autonomously reviews and improves existing code through up to 5 iterations of analysis and fixing
audit 2.0.0 Lightweight domain consistency audit -- verify all layers match and fix issues. Fast gate between pipeline phases
preflight 1.1.0 Pre-deploy verification gate -- checks git status, build, tests, migrations, and commit conventions. Read-only
perf 1.0.0 Performance profiler -- analyzes DB queries, API call chains, frontend widget rebuilds, and bundle sizes
chaos 1.0.0 Chaos engineering for application resilience. Identifies failure points, generates chaos tests, validates graceful degradation
code-smell 1.0.0 Detects Martin Fowler's catalog of code smells across the codebase with severity and recommended refactoring
dead-code 1.0.0 Detects and safely removes dead code -- unreachable paths, unused exports, unused dependencies, unused CSS
migration-verify 1.0.0 Verifies database migrations are safe -- applies cleanly, reverses cleanly, preserves data integrity, is idempotent
stress-test-personas 1.0.0 Applies 6 adversarial decision-maker personas to stress-test the product and architecture from different strategic angles
game-qa 1.0.0 Automated game QA -- scene loading, null references, boundary testing, save/load integrity, platform compliance (TRC/XR)
balance-test 1.0.0 Game balance testing -- DPS calculations, TTK analysis, win rate simulation, economy stress testing, RNG Monte Carlo
mobile-qa 1.0.0 Mobile QA -- permission flows, deep links, push notifications, offline mode, memory leaks, VoiceOver/TalkBack

review -- Architecture, Code, Industry, Gaming & Mobile Review (26 skills)

Skill Version Description
arch-review 7.0.0 Architect-level story review and implementation validation with domain consistency analysis
api-review 1.0.0 API design review against REST best practices -- naming, HTTP semantics, status codes, pagination, error format, versioning
database-review 1.0.0 Database schema design review -- normalization, index coverage, constraints, naming, N+1 patterns, connection pooling
security-review 1.0.0 Security-focused code review -- auth bypasses, injection vectors, data exposure, hardcoded secrets, IDOR vulnerabilities
pr 1.1.0 Creates a convention-compliant pull request -- extracts story number from branch, generates summary and test plan
cto-review 1.0.0 CTO-perspective technical strategy review -- architecture decisions, scaling readiness, engineering velocity, technical debt ratio, security posture
cfo-review 1.0.0 CFO-perspective financial impact review -- infrastructure costs, pricing model alignment, build-vs-buy economics, technical debt as financial liability
cpo-review 1.0.0 CPO-perspective product strategy review -- feature completeness, user journey gaps, retention architecture, growth levers, competitive moat
healthcare-ops 1.0.0 Hospital operations review -- scheduling, workflows, integrations, patient flow, reporting, and staff management
financial-compliance 1.0.0 Financial software review against KYC/AML, BSA, Reg E, SOX, GLBA, and state money transmitter regulations
procurement-review 1.0.0 Procurement software review -- sourcing workflows, PO management, vendor scorecards, spend analytics
permit-compliance 1.0.0 Construction software review for permit tracking, building code compliance, environmental regulations, and inspections
manufacturing-compliance 1.0.0 Manufacturing regulatory review -- ISO 9001/13485/14001, FDA 21 CFR Part 11, GMP, OSHA, lot/serial traceability
regulatory-compliance 1.0.0 Cross-industry regulatory review -- audit trails, data retention, RBAC/ABAC, change management, breach notification
energy-compliance 1.0.0 Energy sector compliance review -- NERC CIP, FERC reporting, EPA emissions, renewable portfolio standards, pipeline safety
care-burnout-audit 1.0.0 Healthcare burnout review -- workload distribution, scheduling fairness, documentation burden, alert fatigue
school-ops 1.0.0 School operations review -- scheduling, resource allocation, transportation, IDEA/Title I compliance
government-compliance 1.0.0 Government software review -- FedRAMP, Section 508, FISMA, NIST 800-53, FOIA, records retention
housing-compliance 1.0.0 Housing software review -- Fair Housing Act, ADA, HUD reporting, LIHTC compliance, tenant rights
environmental-compliance 1.0.0 Environmental compliance review -- EPA reporting, Clean Air/Water Act, NEPA, RCRA waste management
therapist-documentation 1.0.0 Therapy documentation review -- SOAP/DAP notes, DSM-5/ICD-10 codes, informed consent, HIPAA compliance
game-code-review 1.0.0 Game code review -- ECS vs OOP, update loop architecture, state machines, save/load, anti-patterns
game-accessibility 1.0.0 Game accessibility review -- CVAA, Xbox XAGs, colorblind modes, subtitles, remappable controls, one-handed play
multiplayer-review 1.0.0 Multiplayer netcode review -- client-server architecture, lag compensation, anti-cheat, matchmaking, bandwidth
mobile-security-review 1.0.0 Mobile security review -- OWASP Mobile Top 10, certificate pinning, Keychain/Keystore, root detection, obfuscation
store-compliance 1.0.0 App Store and Play Store compliance review -- review guidelines, privacy labels, data safety, COPPA/GDPR-K

deploy -- Infrastructure & Deployment (17 skills)

Skill Version Description
devops 1.0.0 Main skill. Scans infrastructure gaps and orchestrates deployment readiness across CI/CD, containers, monitoring, and IaC
docker 1.0.0 Auto-detect stack and generate optimized multi-stage Dockerfiles with compose, health checks, and security hardening
github-actions 1.0.0 Auto-detect tech stack and generate production-grade GitHub Actions CI/CD workflows with caching and security scanning
k8s 1.0.0 Generate production-grade Kubernetes manifests with Deployments, Services, Ingress, HPA, and optional Helm charts
terraform 1.0.0 Generate modular multi-cloud Terraform configurations with VPC, compute, database, cache, CDN, and remote state
aws 1.1.0 Generates production-ready Terraform files for AWS infrastructure
cdn 1.0.0 Auto-detect hosting and configure CDN with caching rules, SSL/TLS, edge functions, and performance optimization
dns 1.0.0 Configure DNS records, SSL/TLS certificates, subdomains, email authentication, and health check routing
monitoring 1.0.0 Auto-detect infrastructure and set up observability with dashboards, alerting rules, and application instrumentation
secrets 1.0.0 Audit secret handling, set up secrets management with rotation, and configure CI/CD secrets integration
app-store-publish 1.0.0 iOS App Store publishing -- Fastlane, provisioning, screenshots, metadata, review compliance, TestFlight
play-store-publish 1.0.0 Google Play Store publishing -- AAB config, Fastlane supply, data safety, content rating, staged rollout
mobile-ci-cd 1.0.0 Mobile CI/CD -- GitHub Actions / Bitrise / Codemagic for iOS+Android, code signing, beta distribution
ota-updates 1.0.0 Over-the-air updates -- CodePush, Shorebird, Play In-App Updates, rollback strategy, A/B testing
flutter-deploy 1.0.0 Build and deploy Flutter apps to App Store and Google Play -- auto-detects project, pulls signing secrets, runs Fastlane
free-keys 1.0.0 Provision free LLM API keys from 20+ providers -- health-checks, validates, and saves to project
hotfix 1.0.0 Emergency hotfix pipeline -- diagnose, fix, test, commit, push, and PR in 2 iterations max

docs -- Documentation (10 skills)

Skill Version Description
document 1.0.0 Main skill. Scans for existing documentation, identifies gaps based on project maturity, and orchestrates sub-skills to fill them
readme 1.0.0 Generate comprehensive, scannable README.md documentation for any application by analyzing the codebase
api-docs 1.0.0 Auto-detects API framework, extracts routes and schemas, generates OpenAPI 3.1 spec with interactive docs
adr 1.0.0 Creates and manages Architecture Decision Records following the Michael Nygard format with auto-numbering
changelog 1.0.0 Generates or updates CHANGELOG.md from git history using conventional commit parsing and keep-a-changelog format
diagram 1.0.0 Analyzes codebase structure and generates Mermaid architecture diagrams including C4, sequence, ER, and dependency graphs
onboarding 1.0.0 Analyzes codebase to generate a complete developer onboarding guide covering setup, architecture, conventions, and workflow
runbook 1.0.0 Scans deployment config, Docker/K8s manifests, CI/CD, and monitoring to generate actionable operations runbooks
gen-catalog 1.0.0 Auto-generates README.md and skills-list from SKILL.md frontmatter across all skill directories
skills-list 3.1.0 Display the full skills catalog -- lists every available skill with descriptions and autonomous build chains
backend-spec 1.0.0 Generates structured engineering specs from feature descriptions, designs, or ticket references
dep-map 1.0.0 Maps dependencies between stories, code modules, tickets, or specs with optimal implementation order
spec 1.0.0 Generate an engineering spec from a feature description, design image, or conversation

security -- Security & Compliance (12 skills)

Skill Version Description
secure 1.0.0 Main skill. Comprehensive security posture scan -- dependencies, code patterns, config, auth, and data handling with risk scoring
owasp 1.0.0 Audit codebase against the OWASP 2021 Top 10 web application security risks with severity-rated findings
pentest 1.0.0 Static-analysis penetration testing -- find exploitable vulnerabilities with proof-of-concept and remediation guidance
gdpr 1.0.0 Scan codebase for GDPR and CCPA compliance gaps -- PII handling, consent, data rights, and third-party sharing
soc2 1.0.0 Evaluate codebase against SOC2 Trust Service Criteria -- security, availability, integrity, confidentiality, privacy
encryption 1.0.0 Audit and implement encryption -- data at rest, in transit, key management, password hashing, and token security
dependency-scan 1.0.0 Auto-detect package manager, scan for vulnerable dependencies, auto-fix where possible, and generate SBOM
check-vanta 1.0.0 Fetches Vanta vulnerabilities due for remediation, creates a Jira story, then fixes, commits, pushes, and opens PRs
hipaa 1.0.0 Deep HIPAA Security Rule audit -- administrative, physical, and technical safeguards with code-level CFR mappings
pci-dss 1.0.0 PCI DSS v4.0 audit -- network security, data protection, encryption, access controls, logging, and vulnerability management
benefits-fraud 1.0.0 Benefits fraud detection -- identity verification, duplicate detection, anomaly detection, overpayment recovery
game-security 1.0.0 Game security review -- client-side authority, memory manipulation, packet tampering, anti-cheat architecture

ux -- User Experience & Design (24 skills)

Skill Version Description
ux 2.0.0 Main skill. Dual-mode UX quality skill -- runs heuristic/accessibility/motion audit, or validates implementation against design mockups
design-system 2.0.0 Extract or create a design system from existing UI code -- tokens, component inventory, and usage guidelines
dark-mode 2.0.0 Dark mode implementation -- generate dark palette, create theme switching, and verify WCAG contrast for both modes
responsive 2.0.0 Responsive design audit and fixes -- scan for breakpoint issues, fix overflow, and verify cross-device layouts
i18n 2.0.0 Internationalization setup -- extract hardcoded strings, configure locale files, and wire up i18n library
game-ux 2.0.0 Game UX audit -- HUD clarity, menu flow, tutorial effectiveness, control feel, camera system, feedback/juice
design-setup 2.0.0 Initialize design infrastructure -- tokens, theme provider, breakpoints, and base component library for web or mobile
design-build 2.0.0 Build production UI components from specs or mockups -- semantic HTML, modern CSS, responsive, accessible by default
design-audit 2.0.0 Comprehensive design audit -- visual consistency, spacing, typography, color usage, component reuse, and anti-patterns
design-animate 2.0.0 Add motion and animation -- scroll-driven animations, view transitions, micro-interactions, and loading states
design-adapt 2.0.0 Adaptive layouts -- container queries, fluid typography, responsive images, and cross-device refinement
design-polish 2.0.0 Visual polish pass -- shadow refinement, border radius consistency, spacing rhythm, icon alignment, pixel-perfection
design-harden 2.0.0 Defensive design -- empty states, error boundaries, skeleton loaders, offline indicators, and edge-case UI
design-tokens 2.0.0 Design token system -- extract, normalize, and distribute tokens across platforms (CSS, Flutter, SwiftUI, Compose)
design-optimize 2.0.0 Design performance -- critical CSS, font subsetting, image optimization, layout shift elimination, paint reduction
design-normalize 2.0.0 Cross-browser normalization -- reset inconsistencies, vendor prefix audit, fallback chains, progressive enhancement
design-copy 2.0.0 UX copy audit -- microcopy, button labels, error messages, empty states, onboarding text, and tone consistency
design-onboard 2.0.0 Onboarding flow design -- progressive disclosure, tooltips, coachmarks, first-run experience, and activation funnels
design-delight 2.0.0 Delight and engagement -- celebration moments, easter eggs, personality touches, haptic feedback, sound design
design-critique 2.0.0 Design critique -- structured feedback against design principles, heuristics, and accessibility with severity ratings
design-simplify 2.0.0 UI simplification -- reduce cognitive load, remove unnecessary elements, streamline flows, improve information hierarchy
design-amplify 2.0.0 Visual amplification -- increase contrast, enlarge touch targets, bold CTAs, improve scannability, strengthen hierarchy
design-tone-down 2.0.0 Visual restraint -- reduce visual noise, mute colors, simplify decorations, create breathing room, refine density
design-color 2.0.0 Color system design -- oklch palette generation, contrast verification, semantic color mapping, dark mode derivation

analysis -- Domain Analysis, Research, 40 Industry Verticals (195 skills)

Skill Version Description
analyze 1.0.0 End-to-end domain analysis -- traces every feature across all layers, verifies consistency, and fixes issues
compete 1.0.0 Researches competing products, catalogs their features, and produces a prioritized feature gap analysis
mvp 1.0.0 Analyzes a video or screenshots of an application to decipher its MVP and suggest improvements
backend-spec 5.1.0 Generates backend or frontend engineering specs in Jira format with acceptance criteria, routes, and table schemas
metrics 1.0.0 Computes development quality metrics from git history and tracks improvement over time
recall 1.0.0 Reconstructs the development cycle from git history, distills patterns, and produces actionable insights
cost-analysis 1.0.0 Analyzes Firebase infrastructure costs at 1K-100K user scales with optimization recommendations
dep-map 1.0.0 Maps dependencies between engineering stories, computes optimal implementation order with parallel batches
dependency-analysis 1.0.0 Dependency graph analysis -- checks outdated, deprecated, vulnerable, duplicate, heavy, and unused packages
api-surface 1.0.0 Maps the entire API surface -- routes, middleware, auth requirements, request/response types, and inconsistencies
bundle-analysis 1.0.0 Frontend bundle size analysis -- chunk sizes, duplicates, tree-shaking, code splitting, and size budget config
codebase-health 1.0.0 Overall codebase health score (0-100) -- complexity, coupling, cohesion, test coverage, documentation, churn hotspots
tech-debt 1.0.0 Technical debt inventory -- TODOs, deprecated usage, outdated deps, high-churn files, complexity hotspots, duplicated code
image-storage-optimization 1.1.0 Reduce storage costs by automatically resizing and compressing uploaded user images
growth-audit 1.0.0 Growth marketing audit using the AARRR pirate metrics framework -- SEO, onboarding, retention, monetization, referral
sales-readiness 1.0.0 Enterprise sales readiness audit -- SSO/SAML, RBAC, multi-tenancy, audit logging, API quality, SOC2/ISO readiness
customer-success-audit 1.0.0 Customer Success Manager perspective audit -- onboarding, self-service, health signals, support infrastructure, expansion triggers
pmf-analysis 1.0.0 Product-market fit readiness analysis -- core value delivery, feature focus, activation, retention, analytics maturity, iteration speed
healthcare-compliance 1.0.0 Healthcare software audit for HIPAA, HITECH, 21st Century Cures Act, and state regulatory compliance
clinical-data-review 1.0.0 Clinical data review for HL7 FHIR conformance, terminology standards, and interoperability
medical-billing 1.0.0 Medical billing analysis -- claims processing, revenue cycle, ICD-10/CPT validation, payer rules, denial management
patient-engagement 1.0.0 Patient engagement audit -- portal completeness, secure messaging, telehealth, consent management, health literacy
credit-risk 1.0.0 Credit risk modeling analysis -- fairness, accuracy, regulatory compliance, model governance, scoring algorithms
fraud-detection 1.0.0 Fraud detection system audit -- rule engines, ML models, real-time processing, alert workflows, adaptive learning
portfolio-optimizer 1.0.0 Investment portfolio analysis -- allocation models, risk metrics, rebalancing logic, performance attribution
insurance-claims 1.0.0 Insurance claims processing analysis -- lifecycle completeness, automation rules, fraud indicators, reserve estimation
route-optimizer 1.0.0 Routing and delivery analysis -- algorithm quality, constraint handling, real-time adaptation, cost modeling
inventory-forecast 1.0.0 Forecasting and inventory analysis -- model accuracy, safety stock logic, reorder strategies, demand signals
supply-chain-risk 1.0.0 Supply chain risk analysis -- disruption modeling, end-to-end visibility, compliance tracking, resilience strategies
warehouse-ops 1.0.0 Warehouse management analysis -- layout optimization, picking strategies, inventory accuracy, automation readiness
cost-overrun-predictor 1.0.0 Construction project analysis -- budget tracking, risk factor modeling, schedule analysis, early warning detection
property-roi 1.0.0 Real estate investment analysis -- financial models, pro forma, tax modeling, sensitivity analysis, portfolio analytics
lease-optimizer 1.0.0 Commercial lease analysis -- lease abstraction, rent optimization, ASC 842/IFRS 16 compliance, portfolio analysis
real-estate-market 1.0.0 Real estate analytics -- market data quality, demographics, economic indicators, predictive models, visualization
predictive-maintenance 1.0.0 Manufacturing predictive maintenance analysis -- sensor pipelines, ML lifecycle, MTBF/MTTF, spare parts integration
production-optimizer 1.0.0 Production scheduling analysis -- OEE calculations, bottleneck detection, changeover optimization, capacity planning
defect-detection 1.0.0 Quality control analysis -- computer vision, SPC, Six Sigma metrics (Cp/Cpk), inspection automation, root cause analysis
energy-efficiency 1.0.0 Energy management analysis -- power monitoring, ISO 50001, peak demand, renewable integration, carbon footprint
contract-risk 1.0.0 Contract management analysis -- clause extraction, obligation tracking, risk scoring, SLA monitoring, liability analysis
litigation-predictor 1.0.0 Litigation analytics -- case outcome modeling, settlement analysis, cost forecasting, precedent matching
legal-discovery 1.0.0 E-discovery analysis -- document processing, TAR, privilege detection, PII redaction, defensibility audit
load-forecast 1.0.0 Energy load forecasting analysis -- demand prediction, weather integration, peak shaving, demand response
grid-optimizer 1.0.0 Smart grid analysis -- power flow, fault detection/isolation/restoration, DER management, SCADA integration
commodity-pricing 1.0.0 Commodity pricing analysis -- pricing models, market data feeds, position management, VaR/CVaR, settlement
mental-health-clinic 1.0.0 Mental health clinic analysis -- scheduling, therapist-client matching, crisis detection, outcome tracking
elder-care-ops 1.0.0 Elder care analysis -- resident monitoring, medication management, ADL tracking, care plan optimization
rural-health 1.0.0 Rural health network analysis -- telehealth readiness, provider coverage, mobile clinic scheduling
disability-services 1.0.0 Disability services analysis -- IEP/ISP management, HCBS compliance, assistive technology integration
rehab-therapy 1.0.0 Rehabilitation therapy analysis -- recovery metrics, exercise personalization, outcome-based care
dropout-risk 1.0.0 Student dropout risk prediction -- attendance, grades, behavioral indicators, early warning systems
curriculum-optimizer 1.0.0 Curriculum analysis -- standards coverage, pacing optimization, differentiation, assessment quality
student-personalization 1.0.0 Adaptive learning analysis -- learning paths, mastery detection, knowledge graphs, accessibility
teacher-workload 1.0.0 Teacher workload analysis -- grading automation, lesson planning, admin task reduction
benefits-processing 1.0.0 Government benefits analysis -- eligibility determination, application workflows, multi-program coordination
public-resource-allocation 1.0.0 Public resource allocation analysis -- budget optimization, equity-based distribution, demand forecasting
emergency-response 1.0.0 Emergency response analysis -- 911 dispatch, resource deployment, ICS compliance, response time optimization
affordable-housing 1.0.0 Affordable housing analysis -- unit allocation, waitlist management, Fair Housing compliance, LIHTC tracking
rent-burden 1.0.0 Rent burden analysis -- affordability calculations, AMI modeling, housing voucher management
eviction-risk 1.0.0 Eviction risk prediction -- payment patterns, early warning, intervention triggers, outcome tracking
crop-yield 1.0.0 Crop yield analysis -- precision agriculture, soil analysis, irrigation optimization, pest detection
food-waste 1.0.0 Food waste reduction analysis -- shelf life prediction, inventory rotation, cold chain monitoring
climate-risk-agriculture 1.0.0 Agricultural climate risk -- weather impact modeling, crop insurance, carbon sequestration tracking
carbon-accounting 1.0.0 Carbon accounting analysis -- Scope 1/2/3 emissions, GHG Protocol, CDP/TCFD/GRI reporting
disaster-prediction 1.0.0 Disaster prediction analysis -- early warning systems, alert distribution, evacuation planning
sustainability-metrics 1.0.0 ESG and sustainability analysis -- metric collection, SDG alignment, greenwashing detection
legal-aid 1.0.0 Legal aid analysis -- case management, client intake, document assembly, access-to-justice metrics
case-outcome-predictor 1.0.0 Legal case prediction analysis -- model fairness, bias detection, ethical guardrails
rights-explainer 1.0.0 Legal information analysis -- plain-language accuracy, reading level, multilingual support
fundraising-optimizer 1.0.0 Nonprofit fundraising analysis -- donor segmentation, campaign performance, major gift scoring
grant-writer 1.0.0 Grant management analysis -- proposal quality, deadline tracking, outcome reporting
impact-measurement 1.0.0 Program impact analysis -- logic models, attribution, cost-effectiveness, beneficiary feedback
donor-retention 1.0.0 Donor retention analysis -- lapse risk scoring, lifetime value modeling, stewardship workflows
crisis-triage 1.0.0 Crisis triage analysis -- call prioritization, resource dispatching, severity classification
volunteer-coordination 1.0.0 Volunteer management analysis -- skill matching, scheduling, retention, impact reporting
emergency-resource 1.0.0 Emergency resource analysis -- inventory tracking, deployment optimization, inter-agency sharing
fall-risk 1.0.0 Fall risk prediction -- sensor integration, risk scoring, environmental hazards, mobility trends
medication-adherence 1.0.0 Medication adherence analysis -- tracking accuracy, interaction checking, adverse event detection
caregiver-coordination 1.0.0 Caregiver coordination analysis -- scheduling, handoff communication, burnout prevention
crisis-risk-monitor 1.0.0 Mental health crisis monitoring -- risk signal detection, escalation protocols, ethical guardrails
treatment-outcome 1.0.0 Treatment outcome analysis -- PHQ-9/GAD-7 validity, longitudinal trends, evidence-based alignment
care-plan-optimizer 1.0.0 Care plan optimization -- treatment goals, intervention scheduling, step-down/step-up criteria
debt-payoff 1.0.0 Debt management analysis -- payoff strategies, interest calculation, credit score impact modeling
spending-behavior 1.0.0 Spending behavior analysis -- categorization, budget adherence, behavioral nudges, savings goals
retirement-optimizer 1.0.0 Retirement planning analysis -- projection models, Social Security optimization, Monte Carlo quality
skill-gap 1.0.0 Workforce skill gap analysis -- taxonomy quality, labor market data, career pathway modeling
resume-optimizer 1.0.0 Resume optimization analysis -- ATS compatibility, keyword matching, job-description alignment
training-path 1.0.0 Training pathway analysis -- prerequisite mapping, competency-based progression, ROI tracking
employer-matching 1.0.0 Job matching analysis -- algorithm quality, bias detection, salary accuracy, candidate experience
recovery-metrics 1.0.0 Rehabilitation recovery analysis -- outcome measurement, functional assessment, readiness scoring
therapy-personalization 1.0.0 Therapy personalization analysis -- exercise recommendations, compliance prediction, plan adaptation
setback-predictor 1.0.0 Rehabilitation setback prediction -- risk factors, early warning, readmission prediction
lab-automation 1.0.0 Lab automation analysis -- LIMS integration, instrument connectivity, sample tracking, protocol automation
research-data-management 1.0.0 Research data management -- FAIR principles, data governance, metadata schemas, ELN evaluation
experiment-tracking 1.0.0 Experiment tracking -- version control for experiments, parameter tracking, reproducibility scoring
drug-discovery-ops 1.0.0 Drug discovery operations -- compound libraries, screening workflows, hit-to-lead pipelines, ADMET prediction
regulatory-submissions 1.0.0 Regulatory submission automation -- eCTD assembly, FDA/EMA formatting, compliance checking
underwriting-analysis 1.0.0 Underwriting analysis -- risk assessment models, pricing adequacy, loss ratio analysis, portfolio exposure
actuarial-modeling 1.0.0 Actuarial modeling -- loss reserving, premium pricing, mortality/morbidity tables, stochastic modeling
catastrophe-modeling 1.0.0 Catastrophe modeling -- natural disaster exposure, portfolio aggregation, PML, reinsurance optimization
claims-workflow 1.0.0 Claims workflow automation -- intake, adjudication rules, subrogation, litigation management
inventory-allocation 1.0.0 Inventory allocation -- demand-driven allocation, store clustering, safety stock, omnichannel inventory
sku-optimization 1.0.0 SKU optimization -- assortment planning, long-tail analysis, cannibalization detection, rationalization
dynamic-pricing 1.0.0 Dynamic pricing -- competitive pricing, elasticity modeling, promotional optimization, markdown optimization
returns-optimization 1.0.0 Returns optimization -- return rate analysis, reverse logistics, refurbishment routing, fraud detection
merchandising-analytics 1.0.0 Merchandising analytics -- planogram optimization, basket analysis, cross-sell/upsell, seasonal planning
production-budgeting 1.0.0 Production budgeting -- film/TV budget analysis, ATL/BTL costs, cost overrun forecasting
rights-management 1.0.0 Rights management -- content licensing, territory/window tracking, royalty calculations
content-performance 1.0.0 Content performance analytics -- engagement metrics, audience retention, recommendation engine evaluation
ad-yield-optimization 1.0.0 Ad yield optimization -- CPM/CPC/CPA analysis, header bidding, fill rate optimization
studio-operations 1.0.0 Studio operations -- facility scheduling, post-production workflow, asset management
revenue-management 1.0.0 Revenue management -- dynamic pricing for hotels/airlines, inventory controls, channel management
staff-scheduling 1.0.0 Staff scheduling -- labor forecasting, shift optimization, compliance with labor laws
demand-forecasting 1.0.0 Demand forecasting -- time-series analysis, seasonal decomposition, booking curve analysis
travel-operations 1.0.0 Travel operations -- ground handling, turnaround optimization, GDS integration
service-triage 1.0.0 Customer service triage -- ticket classification, priority scoring, SLA management
maintenance-scheduling 1.0.0 Maintenance scheduling -- preventive/predictive maintenance, work order optimization, CMMS analysis
vendor-coordination 1.0.0 Vendor coordination -- contractor performance scoring, bid analysis, SLA compliance
facilities-energy 1.0.0 Facilities energy management -- building energy modeling, BMS/BAS analysis, sustainability reporting
lease-compliance 1.0.0 Lease compliance -- CAM reconciliation, lease abstraction, ASC 842/IFRS 16
asset-lifecycle 1.0.0 Asset lifecycle planning -- capital planning, replacement scheduling, TCO, depreciation modeling
bookkeeping-automation 1.0.0 Bookkeeping automation -- transaction categorization, bank reconciliation, AP/AR, month-end close
audit-support 1.0.0 Audit support -- control testing, evidence collection, sampling methodology, SOX compliance
tax-compliance 1.0.0 Tax compliance -- multi-jurisdiction tax, nexus analysis, ASC 740, transfer pricing
reconciliation 1.0.0 Reconciliation workflows -- intercompany, suspense accounts, variance analysis, matching rules
grant-management 1.0.0 Grant management -- proposal tracking, budget monitoring, compliance reporting, effort certification
funding-allocation 1.0.0 Funding allocation -- resource distribution, faculty startup packages, strategic investment modeling
peer-review-ops 1.0.0 Peer review coordination -- reviewer matching, conflict detection, editorial workflow optimization
lab-management 1.0.0 Lab management -- inventory tracking, equipment scheduling, safety compliance, chemical management
vehicle-routing 1.0.0 Vehicle routing optimization -- route planning, multi-stop optimization, time window constraints
fleet-maintenance 1.0.0 Fleet maintenance -- preventive scheduling, parts forecasting, downtime minimization, telematics
fuel-optimization 1.0.0 Fuel optimization -- consumption analysis, eco-driving scoring, route efficiency, IFTA reporting
fleet-safety 1.0.0 Fleet safety -- driver behavior scoring, accident analysis, CSA scores, DOT compliance
procurement-analysis 1.0.0 Procurement analysis -- spend analytics, supplier consolidation, contract compliance
vendor-management 1.0.0 Vendor management -- performance scorecards, risk assessment, SLA tracking, rationalization
compliance-ops 1.0.0 Compliance operations -- regulatory change tracking, control mapping, audit readiness
hr-ops 1.0.0 HR operations -- headcount planning, attrition analysis, compensation benchmarking
budget-allocation 1.0.0 Budget allocation -- departmental budgeting, variance analysis, rolling forecasts
production-scheduling 1.0.0 Production scheduling -- factory capacity planning, order sequencing, lead time optimization
material-forecasting 1.0.0 Material forecasting -- raw material requirements, supplier lead times, fabric yield optimization
ethical-sourcing 1.0.0 Ethical sourcing -- supply chain transparency, labor conditions, certification tracking
apparel-demand 1.0.0 Apparel demand prediction -- trend forecasting, size curve optimization, sell-through rates
rehab-scheduling 1.0.0 Rehab scheduling -- therapist utilization, patient flow, insurance authorization tracking
therapy-outcomes 1.0.0 Therapy outcome analytics -- functional improvement scoring, treatment effectiveness
batch-optimization 1.0.0 Batch optimization -- production yield, batch record review, process parameter optimization
pharma-compliance 1.0.0 Pharmaceutical compliance -- inspection readiness, CAPA management, change control
yield-prediction 1.0.0 Pharmaceutical yield prediction -- PAT, critical process parameters, design space, scale-up
pharma-quality-control 1.0.0 Pharmaceutical QC -- OOS investigation, stability trending, method validation
threat-triage 1.0.0 Threat triage -- IOC classification, kill chain mapping, false positive reduction
alert-prioritization 1.0.0 Alert prioritization -- SIEM rule optimization, alert fatigue reduction, criticality scoring
incident-response 1.0.0 Incident response -- playbook evaluation, MTTR optimization, evidence collection
cyber-risk-modeling 1.0.0 Cyber risk modeling -- FAIR methodology, risk quantification, control effectiveness
defense-supply-chain 1.0.0 Defense supply chain -- DFARS compliance, sole-source risk, counterfeit parts, ITAR
defense-maintenance 1.0.0 Defense maintenance -- MRO optimization, readiness reporting, reliability-centered maintenance
defense-budget 1.0.0 Defense budget -- program cost estimation, EVMS, should-cost modeling, PPBE process
risk-simulation 1.0.0 Risk simulation -- Monte Carlo modeling, wargaming analysis, decision support
unit-economics 1.0.0 Unit economics -- per-location P&L, contribution margin, break-even, four-wall economics
franchise-benchmarking 1.0.0 Franchise benchmarking -- quartile comparison, same-store sales, operational audit scoring
franchise-inventory 1.0.0 Franchise inventory -- par level optimization, waste tracking, food cost analysis
expansion-modeling 1.0.0 Expansion modeling -- market feasibility, territory mapping, cannibalization analysis
mining-maintenance 1.0.0 Mining equipment maintenance -- condition monitoring, predictive analytics, fleet availability
mining-safety 1.0.0 Mining safety -- incident investigation, hazard identification, MSHA compliance
extraction-optimization 1.0.0 Extraction optimization -- ore grade optimization, processing throughput, recovery rate
resource-estimation 1.0.0 Resource estimation -- geological modeling, reserve classification, JORC/NI 43-101
box-optimization 1.0.0 Box/packaging optimization -- carton sizing, void fill, palletization, sustainable materials
shipping-cost 1.0.0 Shipping cost analysis -- carrier rate comparison, zone-skip, parcel vs LTL/FTL
warehouse-flow 1.0.0 Warehouse flow design -- pick path optimization, slotting analysis, throughput bottlenecks
damage-prediction 1.0.0 Damage prediction -- transit risk analysis, packaging failure modes, protection optimization
job-dispatch 1.0.0 Job dispatch optimization -- technician routing, skill-based assignment, priority scheduling
parts-inventory 1.0.0 Parts inventory forecasting -- truck stock optimization, first-time fix rate, reorder points
technician-productivity 1.0.0 Technician productivity -- utilization analysis, callback analysis, skill gap identification
quote-automation 1.0.0 Quote automation -- labor estimation, material take-off, pricing rules, competitive analysis
incident-tracking 1.0.0 Incident tracking -- workplace incident classification, root cause analysis, OSHA recordkeeping
workplace-risk-scoring 1.0.0 Workplace risk scoring -- job hazard analysis, risk matrix, exposure assessment
safety-compliance 1.0.0 Safety compliance -- regulatory gap analysis, inspection readiness, OSHA 29 CFR
safety-training 1.0.0 Safety training automation -- competency tracking, certification management, LMS integration
survey-analysis 1.0.0 Survey analysis -- response bias detection, conjoint analysis, MaxDiff scoring
pricing-sensitivity 1.0.0 Pricing sensitivity -- Van Westendorp, Gabor-Granger, price elasticity curves
behavioral-segmentation 1.0.0 Behavioral segmentation -- RFM analysis, cohort behavior, churn propensity, persona clustering
consumer-modeling 1.0.0 Consumer modeling -- purchase prediction, lifetime value, attribution analysis
game-design-review 1.0.0 Game design analysis -- core loop, progression systems, difficulty curves, player motivation, feedback loops
game-economy 1.0.0 In-game economy analysis -- currency balance, loot tables, marketplace dynamics, pay-to-win detection
game-performance 1.0.0 Game performance analysis -- draw calls, GC pressure, physics budgets, LOD, object pooling, frame budgets
player-analytics 1.0.0 Player analytics analysis -- event tracking, funnel analysis, DAU/MAU, cohort analysis, churn prediction, LTV
game-monetization 1.0.0 Game monetization analysis -- IAP flow, ad mediation, battle pass, loot box disclosure, regional pricing
level-design 1.0.0 Level design analysis -- procedural generation, WFC, difficulty scaling, nav mesh quality, spawn distribution
game-ai 1.0.0 Game AI analysis -- behavior trees, FSM, GOAP, utility AI, pathfinding, steering, difficulty adaptation
narrative-design 1.0.0 Narrative design analysis -- branching dialogue, state tracking, localization, voice-over, cinematic scripting
app-store-optimization 1.0.0 ASO analysis -- keyword research, title optimization, screenshot conversion, competitor gaps, review sentiment
mobile-performance 1.0.0 Mobile performance analysis -- startup time, memory, battery, network, frame rate, app size
mobile-analytics 1.0.0 Mobile analytics analysis -- event tracking, attribution, funnels, retention, crash-free rate, ATT/GDPR
mobile-ux-patterns 1.0.0 Mobile UX pattern analysis -- gestures, navigation, platform conventions (HIG vs Material), deep linking
mobile-monetization 1.0.0 Mobile monetization analysis -- StoreKit 2, Play Billing, subscriptions, ad SDKs, paywall design
app-size-optimizer 1.0.0 App binary size analysis -- asset audit, code stripping, on-demand resources, APK splits, thinning
audit 1.0.0 Fast quality gate -- detects stack, runs static analysis, checks cross-layer consistency, fixes issues
iterate-review 5.0.0 Autonomously review and improve existing code through up to 5 iterations of analysis and fixing
perf 1.0.0 Performance profiler -- analyzes DB queries, API call chains, memory usage, bundle sizes, and network waterfalls
preflight 1.0.0 Pre-deploy verification gate -- checks git status, build, tests, migrations, secrets, and commit conventions
qa 1.0.0 Automated QA agent -- walks every screen and API endpoint, verifies functionality, and fixes issues
seo 1.0.0 SEO analysis -- technical SEO audit, meta tags, structured data, crawlability, and performance
skills-list 3.0.0 Display the full skills catalog -- lists every available skill with descriptions and autonomous build chains
ux 1.0.0 UX audit -- heuristic evaluation, accessibility audit, WCAG compliance, and design system consistency

productivity -- Developer Experience (7 skills)

Skill Version Description
dx 1.0.0 Main skill. Audit developer experience foundations and generate a DX health report with actionable improvements
devcontainer 1.0.0 Auto-detect stack and generate a production-grade dev container configuration with Codespaces compatibility
env-setup 1.0.0 Detect required tools, install dependencies, configure environment, and verify the project builds and tests pass
git-hooks 1.0.0 Auto-detect stack and set up pre-commit and commit-msg hooks with conventional commit enforcement
linter 1.0.0 Auto-detect stack and configure linting, formatting, and editor integration with auto-fix for existing violations
monorepo 1.0.0 Set up or migrate to a monorepo with workspaces, build pipeline, task graph, and local plus remote caching
release 1.0.0 Set up automated release pipeline with semantic versioning, changelog generation, and publishing
vscode 1.0.0 Open VS Code in the current working directory

integration -- Third-Party Service Connectors (9 skills)

Skill Version Description
integrate 1.0.0 Main skill. Master integration orchestrator that audits existing integrations, routes to sub-skills, and produces a health score
auth-provider 1.0.0 Sets up complete OAuth/SSO authentication with provider configuration, session management, and login UI
stripe 1.0.0 Sets up complete Stripe payment integration with checkout sessions, webhooks, and subscription billing
email 1.0.0 Sets up transactional email with provider SDK, templated messages, delivery tracking, and webhook handling
push-notifications 1.0.0 Sets up mobile and web push notifications with FCM, APNs, or OneSignal including deep linking
search 1.0.0 Sets up full-text search with indexing, search UI, and ranking -- supports Algolia, Typesense, Meilisearch, Elasticsearch
storage 1.0.0 Sets up object storage with upload, download, presigned URLs, and CDN integration -- supports S3, GCS, R2, Supabase
realtime 1.0.0 Sets up WebSocket or SSE-based realtime communication with channels, presence, and offline handling
analytics-tracking 1.0.0 Sets up event tracking with analytics providers -- auto-detects framework, installs SDK, and instruments key flows

combo -- Multi-Skill Chains (31 skills)

Skill Version Chain Description
polish 1.0.0 /ux ∥ /scale-audit → /qa → /analyze Full quality pass with parallel UX + scalability audit
research 1.0.0 /compete → /new-features Competitive gap analysis + feature ideation
spec 1.0.0 /mvp → /backend-spec App analysis + story generation
story 1.0.0 /arch-review → /story-implementer → /pr Full story lifecycle from review to PR
review-implement 1.0.0 /arch-review → /story-implementer Review architecture then implement
full-test 1.0.0 /e2e → /manual-test-plan Automated E2E tests + manual test plan
retro 1.0.0 /recall → /new-features Dev retrospective + feature ideation
fix-and-ship 1.0.0 /hotfix → /preflight Emergency fix + deploy verification
secure-ship 1.0.0 /owasp → /ship → /security-review → /pentest Security-first build chain
compliance-gate 1.0.0 /secure → /gdpr → /dependency-scan → /pentest Full compliance pass with unified report
full-deploy 1.0.0 /docker → /github-actions → /monitoring → /preflight Complete deploy pipeline
design-to-code 1.0.0 /design-system → /responsive → /dark-mode → /ux Full design implementation chain
data-pipeline 1.0.0 /api-scaffold → /integration-test → /load-test Data-heavy app setup chain
tech-debt-sprint 1.0.0 /tech-debt → /code-smell → /dead-code → /iterate-review Debt reduction sprint
launch-readiness 1.0.0 /cpo-review → /growth-audit → /ux → /secure → /preflight Full pre-launch quality gate with go/no-go decision
investor-ready 1.0.0 /cto-review → /cfo-review → /cpo-review → /sales-readiness → /codebase-health Comprehensive investor due-diligence brief
healthcare-audit 1.0.0 /hipaa → /clinical-data-review → /healthcare-compliance → /security-review Full healthcare compliance and security audit
fintech-launch 1.0.0 /pci-dss → /fintech-api → /fraud-detection → /credit-risk → /preflight Complete fintech launch readiness pipeline
logistics-optimize 1.0.0 /route-optimizer → /warehouse-ops → /inventory-forecast → /supply-chain-risk → /load-test Full logistics optimization and stress testing
compliance-suite 1.0.0 /regulatory-compliance → /gdpr → /soc2 → /dependency-scan → /pentest Cross-industry compliance hardening pipeline
public-services-audit 1.0.0 /benefits-processing → /benefits-fraud → /government-compliance → /security-review Government services compliance and fraud audit
education-suite 1.0.0 /dropout-risk → /curriculum-optimizer → /student-personalization → /school-ops Complete education system analysis pipeline
housing-audit 1.0.0 /affordable-housing → /eviction-risk → /housing-compliance → /rent-burden Affordable housing compliance and risk assessment
impact-org 1.0.0 /impact-measurement → /fundraising-optimizer → /grant-writer → /donor-retention Nonprofit operational optimization pipeline
game-launch 1.0.0 /game-performance → /game-qa → /game-accessibility → /game-security → /game-ux Complete game launch readiness pipeline
game-design-audit 1.0.0 /game-design-review → /game-economy → /balance-test → /player-analytics → /game-monetization Full game design analysis pipeline
mobile-launch 1.0.0 /mobile-performance → /mobile-qa → /mobile-security-review → /store-compliance → /app-store-optimization Mobile app launch readiness pipeline
mobile-publish 1.0.0 /mobile-ci-cd → /app-store-publish → /play-store-publish → /mobile-analytics Full mobile publishing pipeline
cleanup-sprint 2.0.0 /dead-code → /code-smell → /linter Deep codebase cleanup -- kills dead code, fixes lint warnings, removes orphaned files
mvp-spec 1.0.0 /mvp → /spec Analyzes app from video/screenshots, then generates implementation stories
design-pipeline 2.0.0 /design-setup → /design-build → /design-audit → /design-polish Full design implementation pipeline -- tokens, components, audit, and polish in sequence
design-overhaul 2.0.0 /design-audit → /design-simplify → /design-tokens → /design-adapt → /design-polish Complete design overhaul -- audit existing UI, simplify, normalize tokens, adapt layouts, and polish

meta -- Skills About Skills (9 skills)

Skill Version Description
bootstrap 3.1.0 Scaffolds a new project from a saved template -- creates CLAUDE.md, initial memory, and recommends first skill
evolve 1.0.0 Self-improving skill that reads /recall and /metrics output, identifies which skills need patching, and applies fixes
extract-template 1.0.0 Extracts a reusable project template from a successful project -- captures pipeline, conventions, and pitfalls
promote 1.0.0 Cross-project pattern detection -- reads all project memories, finds recurring patterns, promotes to global conventions
skill-creator 1.0.0 Creates new Claude Code skills following the marketplace SKILL.md format with proper frontmatter and quality scoring
skill-test 1.0.0 Validates a SKILL.md file against the marketplace quality rubric, checking schema, structure, and computing a score
registry-sync 1.0.0 Scans and validates all SKILL.md files in the registry, checks category READMEs, detects duplicates, produces health report
load-context 1.0.0 Load a saved conversation context to resume previous work -- supports local files, git repos, and URLs
save-context 1.0.0 Save the current conversation context as a reloadable snapshot for later resumption

Industry Verticals

Skills covering domain-specific regulations, workflows, and compliance across 40 industries:

Industry Skills Key Regulations/Standards
Healthcare healthcare-compliance, hipaa, clinical-data-review, healthcare-ops, healthcare-api, medical-billing, patient-engagement HIPAA, HITECH, HL7 FHIR, ICD-10/CPT
Finance credit-risk, fraud-detection, pci-dss, financial-compliance, portfolio-optimizer, fintech-api, insurance-claims PCI DSS v4.0, KYC/AML, SOX, BSA, Reg E
Logistics & Supply Chain route-optimizer, inventory-forecast, supply-chain-risk, warehouse-ops, procurement-review EDI, TSP/VRP, WMS, demand planning
Construction & Real Estate cost-overrun-predictor, property-roi, lease-optimizer, permit-compliance, real-estate-market ASC 842/IFRS 16, building codes, EVM
Manufacturing predictive-maintenance, production-optimizer, defect-detection, energy-efficiency, manufacturing-compliance ISO 9001/13485/14001, FDA 21 CFR Part 11, GMP, OSHA
Legal contract-risk, litigation-predictor, legal-discovery, regulatory-compliance TAR, e-discovery, RBAC/ABAC, audit trails
Energy & Utilities load-forecast, grid-optimizer, commodity-pricing, energy-compliance NERC CIP, FERC, EPA, ISO 50001, 49 CFR 192/195
Gaming game-design-review, game-economy, game-performance, player-analytics, game-monetization, level-design, game-ai, narrative-design, game-code-review, game-accessibility, multiplayer-review, game-qa, balance-test, game-security, game-ux, unity-scaffold, unreal-scaffold, godot-scaffold, web-game Unity, Unreal, Godot, CVAA, Xbox XAGs
Mobile ios-app, android-app, cross-platform-app, app-store-publish, play-store-publish, mobile-ci-cd, ota-updates, app-store-optimization, mobile-performance, mobile-analytics, mobile-ux-patterns, mobile-monetization, app-size-optimizer, mobile-security-review, store-compliance, mobile-test, device-matrix, mobile-qa App Store Guidelines, Play Store Policy, OWASP Mobile, StoreKit 2, Play Billing
Biotech & Life Sciences lab-automation, research-data-management, experiment-tracking, drug-discovery-ops, regulatory-submissions GAMP 5, 21 CFR Part 11, ICH, eCTD, FAIR
Insurance underwriting-analysis, actuarial-modeling, catastrophe-modeling, claims-workflow NAIC, Solvency II, ACORD, AM Best, SOA
Retail & E-commerce inventory-allocation, sku-optimization, dynamic-pricing, returns-optimization, merchandising-analytics GS1, RFID, Robinson-Patman, CPFR
Media & Entertainment production-budgeting, rights-management, content-performance, ad-yield-optimization, studio-operations AICP, SAG-AFTRA, DDEX, IAB, SMPTE
Travel & Hospitality revenue-management, staff-scheduling, demand-forecasting, travel-operations, service-triage IATA, ICAO, HEDNA, FLSA, ITIL
Facilities & Property Mgmt maintenance-scheduling, vendor-coordination, facilities-energy, lease-compliance, asset-lifecycle ASHRAE, BOMA, ENERGY STAR, LEED, IFMA
Accounting & Tax bookkeeping-automation, audit-support, tax-compliance, reconciliation GAAP, PCAOB, SOX, IRC, OECD BEPS
Research & Academia grant-management, funding-allocation, peer-review-ops, lab-management 2 CFR 200, NSF, NIH, COPE, OSHA lab
Fleet & Transportation vehicle-routing, fleet-maintenance, fuel-optimization, fleet-safety FMCSA, DOT, ELD, IFTA, EPA SmartWay
Corporate Operations procurement-analysis, vendor-management, compliance-ops, hr-ops, budget-allocation CIPS, COSO, ISO 37301, SHRM, FP&A
Textiles & Apparel production-scheduling, material-forecasting, ethical-sourcing, apparel-demand WRAP, SA8000, OEKO-TEX, Higg Index
Pharma Manufacturing batch-optimization, pharma-compliance, yield-prediction, pharma-quality-control cGMP, ICH Q7-Q14, 21 CFR 210/211, USP
Cybersecurity Operations threat-triage, alert-prioritization, incident-response, cyber-risk-modeling MITRE ATT&CK, NIST CSF, FAIR, STIX/TAXII
Defense & Aerospace defense-supply-chain, defense-maintenance, defense-budget, risk-simulation DFARS, ITAR, CMMC, MIL-STD, DoD 5000
Franchise Operations unit-economics, franchise-benchmarking, franchise-inventory, expansion-modeling FDD, IFA, Huff Model, COGS management
Mining & Natural Resources mining-maintenance, mining-safety, extraction-optimization, resource-estimation MSHA, JORC, NI 43-101, ISO 17359
Packaging & Distribution box-optimization, shipping-cost, warehouse-flow, damage-prediction ISTA, ASTM D4169, NMFC, DIM weight
Skilled Trades & Field Services job-dispatch, parts-inventory, technician-productivity, quote-automation FSM, RSMeans, Croston's method, VRP
Occupational Health & Safety incident-tracking, workplace-risk-scoring, safety-compliance, safety-training OSHA 29 CFR, ISO 45001, ANSI Z10, NFPA 70E
Behavioral Economics survey-analysis, pricing-sensitivity, behavioral-segmentation, consumer-modeling Van Westendorp, FAIR, RFM, CLV models

Social Impact Sectors

Skills for high-impact domains focused on human welfare, equity, and public good:

Sector Skills Focus Areas
Healthcare (Beyond Hospitals) mental-health-clinic, elder-care-ops, rural-health, disability-services, rehab-therapy, care-burnout-audit Burnout reduction, care access, scheduling, risk flagging
Education dropout-risk, curriculum-optimizer, student-personalization, teacher-workload, school-ops K-12, higher ed, personalization, IDEA/Title I
Government & Public Services benefits-processing, public-resource-allocation, emergency-response, government-compliance, benefits-fraud FedRAMP, Section 508, FISMA, FOIA
Housing & Affordable Housing affordable-housing, rent-burden, eviction-risk, housing-compliance Fair Housing, HUD, LIHTC, Section 8
Agriculture & Food Systems crop-yield, food-waste, climate-risk-agriculture Precision ag, food security, climate adaptation
Climate & Sustainability carbon-accounting, disaster-prediction, sustainability-metrics, environmental-compliance GHG Protocol, CDP, TCFD, SDGs, EPA
Legal Aid & Public Defense legal-aid, case-outcome-predictor, rights-explainer Access to justice, bias detection, plain language
Nonprofits & NGOs fundraising-optimizer, grant-writer, impact-measurement, donor-retention Impact measurement, grant management, donor CRM
Emergency & Crisis Services crisis-triage, volunteer-coordination, emergency-resource 911 dispatch, resource deployment, mutual aid
Elder Care & Caregiving fall-risk, medication-adherence, caregiver-coordination Wearable sensors, medication management, burnout
Mental Health & Behavioral crisis-risk-monitor, treatment-outcome, care-plan-optimizer, therapist-documentation PHQ-9/GAD-7, crisis protocols, HIPAA
Financial Literacy debt-payoff, spending-behavior, retirement-optimizer Payoff strategies, Monte Carlo, Social Security
Workforce Development skill-gap, resume-optimizer, training-path, employer-matching O*NET, ATS, competency-based, bias detection
Rehabilitation recovery-metrics, therapy-personalization, setback-predictor FIM/Barthel, exercise personalization, readmission

Industry & Social Impact Pipelines

/healthcare-audit       (runs: /hipaa → /clinical-data-review → /healthcare-compliance → /security-review)
/fintech-launch         (runs: /pci-dss → /fintech-api → /fraud-detection → /credit-risk → /preflight)
/logistics-optimize     (runs: /route-optimizer → /warehouse-ops → /inventory-forecast → /supply-chain-risk → /load-test)
/compliance-suite       (runs: /regulatory-compliance → /gdpr → /soc2 → /dependency-scan → /pentest)
/game-launch            (runs: /game-performance → /game-qa → /game-accessibility → /game-security → /game-ux)
/game-design-audit      (runs: /game-design-review → /game-economy → /balance-test → /player-analytics → /game-monetization)
/mobile-launch          (runs: /mobile-performance → /mobile-qa → /mobile-security-review → /store-compliance → /app-store-optimization)
/mobile-publish         (runs: /mobile-ci-cd → /app-store-publish → /play-store-publish → /mobile-analytics)
/public-services-audit  (runs: /benefits-processing → /benefits-fraud → /government-compliance → /security-review)
/education-suite        (runs: /dropout-risk → /curriculum-optimizer → /student-personalization → /school-ops)
/housing-audit          (runs: /affordable-housing → /eviction-risk → /housing-compliance → /rent-burden)
/impact-org             (runs: /impact-measurement → /fundraising-optimizer → /grant-writer → /donor-retention)

Recommended Pipelines

New Project

/bootstrap → /research → /spec → /build → /polish

Feature Development

/backend-spec → /arch-review → /story-implementer → /qa

Fast Iteration

/ship [task] → /qa → /analyze

Quality Gate

/polish  (runs: /ux ∥ /scale-audit → /qa → /analyze)

Full Test Coverage

/test-suite  (scans gaps, routes to unit/e2e/integration/load/contract/a11y/visual)

Security Hardening

/secure-ship  (runs: /owasp → /ship → /security-review → /pentest)

Compliance Audit

/compliance-gate  (runs: /secure → /gdpr → /dependency-scan → /pentest)

Deploy Pipeline

/full-deploy  (runs: /docker → /github-actions → /monitoring → /preflight)

Tech Debt Paydown

/tech-debt-sprint  (runs: /tech-debt → /code-smell → /dead-code → /iterate-review)

Executive Review

/cto-review → /cfo-review → /cpo-review

Launch Readiness

/launch-readiness  (runs: /cpo-review → /growth-audit → /ux → /secure → /preflight)

Investor Due Diligence

/investor-ready  (runs: /cto-review → /cfo-review → /cpo-review → /sales-readiness → /codebase-health)

Design Implementation

/design-pipeline  (runs: /design-setup → /design-build → /design-audit → /design-polish)

Design Overhaul

/design-overhaul  (runs: /design-audit → /design-simplify → /design-tokens → /design-adapt → /design-polish)

Retrospective

/recall → /metrics → /evolve

Skill Dependency Graph

/build (orchestrator)
  ├── /mvp
  ├── /backend-spec
  ├── /arch-review (parallel)
  ├── /story-implementer (parallel)
  ├── /ux ∥ /manual-test-plan
  ├── /qa
  └── /analyze

/ship (fast build)
  ├── pre-build validation
  ├── /analyze (iteration 3)
  └── /readme

/iterate (iterative build)
  ├── pre-build validation
  ├── /analyze (iterations 2, final)
  └── /readme

/test-suite (test orchestrator)
  ├── coverage scan
  ├── /unit-test
  ├── /e2e
  ├── /integration-test
  ├── /load-test
  ├── /contract-test
  ├── /accessibility-test
  └── /visual-regression

/secure (security orchestrator)
  ├── /owasp
  ├── /pentest
  ├── /gdpr
  ├── /soc2
  ├── /encryption
  └── /dependency-scan

/document (docs orchestrator)
  ├── /readme
  ├── /api-docs
  ├── /adr
  ├── /changelog
  ├── /diagram
  ├── /onboarding
  └── /runbook

/devops (deploy orchestrator)
  ├── /docker
  ├── /github-actions
  ├── /k8s
  ├── /terraform
  ├── /monitoring
  └── /secrets

/integrate (integration orchestrator)
  ├── /auth-provider
  ├── /stripe
  ├── /email
  ├── /push-notifications
  ├── /search
  ├── /storage
  ├── /realtime
  └── /analytics-tracking

/dx (productivity orchestrator)
  ├── /devcontainer
  ├── /env-setup
  ├── /git-hooks
  ├── /linter
  ├── /monorepo
  └── /release

/polish (quality combo)
  ├── /ux (parallel track A)
  ├── /scale-audit (parallel track B)
  ├── /qa
  └── /analyze

/qa (testing)
  └── /analyze (phase 4)

/launch-readiness (launch combo)
  ├── /cpo-review
  ├── /growth-audit
  ├── /ux
  ├── /secure
  └── /preflight

/investor-ready (investor combo)
  ├── /cto-review
  ├── /cfo-review
  ├── /cpo-review
  ├── /sales-readiness
  └── /codebase-health

/design-pipeline (design combo)
  ├── /design-setup
  ├── /design-build
  ├── /design-audit
  └── /design-polish

/design-overhaul (design combo)
  ├── /design-audit
  ├── /design-simplify
  ├── /design-tokens
  ├── /design-adapt
  └── /design-polish

/evolve (meta)
  └── reads /recall + /metrics output

SKILL.md Format

Every skill uses the skills-hub.ai marketplace format:

---
name: my-skill
description: One-sentence description of what it does (10-1000 chars)
version: "1.0.0"
category: build
platforms:
  - CLAUDE_CODE
---

Your skill instructions here. This is the main content
loaded as context when the skill is invoked.

Valid Categories

build test qa review deploy docs security ux analysis productivity integration combo meta

Valid Platforms

CLAUDE_CODE CURSOR CODEX_CLI OTHER

Quality Scoring

Skills are scored 0-100 on the marketplace:

  • Schema (0-25): Required fields present, description >= 50 chars, valid semver, valid category
  • Instructions (0-75): >= 500 chars, structured phases/steps, I/O spec, error handling, guardrails, examples, output format
  • Minimum to publish: 20

Contributing

  1. Create a new directory under the appropriate category: {category}/{skill-name}/SKILL.md
  2. Follow the SKILL.md format above
  3. Ensure your skill scores >= 20 on the quality scale (run /skill-test to check)
  4. Submit a PR

Key Design Patterns

These patterns are validated across 7+ production projects:

  • Self-healing validation: Every skill includes category-specific retry loops that detect failures and re-attempt with corrective action. Validation blocks are tailored per category (e.g., build skills verify compilation, test skills verify passing suites, deploy skills verify infrastructure state)
  • Self-evolution telemetry: Every skill logs execution metadata (duration, pass/fail, retry count, category) to project memory. The /evolve meta-skill reads this telemetry to identify underperforming skills and patch them automatically
  • Pre-build validation: Static analysis gate before feature work begins
  • Co-commit rules: Firestore rules, server validation, and model serialization ship with features
  • Domain analysis feedback: /analyze embedded as a quality gate in build loops
  • Subagent spawning: 8 combo skills use parallel Agent tool spawning to run independent tracks concurrently -- polish, full-test, cleanup-sprint, research, retro, review-implement, secure-ship, and compliance-suite
  • Wiring completeness: Detect features that exist in one layer but are never connected
  • Monolith decomposition: Files exceeding 500 lines are split before adding features
  • Orchestrator pattern: Main skills scan for gaps and route to specialized sub-skills
  • Modern CSS-first design: Design skills use oklch color spaces, container queries, scroll-driven animations, view transitions, and anchor positioning. Cross-platform skills target web, Flutter, SwiftUI, and Compose
  • Zero-question autonomy: All skills run fully autonomously without prompting for user input -- they detect context, make decisions, and execute

About

Official skill collection for skills-hub.ai — 45 production-tested skills in 13 categories

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 71.7%
  • HTML 24.1%
  • Shell 4.2%