Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →

patricio0312rev/skills

153 skills43.9k installs8.1k starsGitHub

Install

npx skills add https://github.com/patricio0312rev/skills

Skills in this repo

1Framer Motion AnimatorCreates smooth animations and micro-interactions using Framer Motion including page transitions gestures scroll-based animations and orchestrated sequences Use when users request add animation framer motion page transition animate component or micro-interactions name framer-motion-animator description Creates smooth animations and micro-interactions using Framer Motion including page transitions gestures scroll-based animations and orchestrated sequences Use when users request add animation framer motion page transition animate component or micro-interactions Framer Motion Animator Build delightful animations and interactions with Framer Motion's declarative API Identify animation needs Entrance exit hover gestures 2 Choose animation type Simple variants gestures layout 3 Define motion values Opacity scale position rotation 4 Add transitions Duration easing spring physics 5 Orchestrate sequences Stagger delay parent-child 6 Optimize performance GPU-accelerated properties Installation bash npm install framer-motion Basic Animations Simple Animation tsx import motion from framer-motion Animate on mount export function FadeIn children children React ReactNode return motion div initia.8.7kinstalls2Eslint Prettier Configeslint-prettier-config is an agent skill from patricio0312rev/skills that installs ESLint, Prettier, and required plugins, then writes flat-config ESLint rules, Prettier formatting options, and integration so format-on-save and lint scripts do not conflict. The workflow covers dependency installation, ESLint extends and rules, Prettier options, npm lint and format scripts, and optional pre-commit hooks for validation. Developers invoke eslint-prettier-config when starting a TypeScript React or Next.js repo or when existing lint and Prettier setups fight each other. It delivers ready-to-run configs aligned with modern flat-config ESLint rather than legacy .eslintrc-only patterns.916installs3Postman Collection Generatorpostman-collection-generator is a Backend & APIs skill that automatically builds importable Postman collection JSON from API codebases. The workflow scans route definitions in Express, Next.js, Fastify, Hono, and similar frameworks, extracts HTTP methods, paths, parameters, request bodies, and headers, then organizes endpoints by resource folders. Developers reach for postman-collection-generator when users ask to generate postman collection, export to postman, create postman file, or postman import without hand-maintaining collections. Output is ready-to-import Postman JSON that QA, partners, and frontend teams can exercise immediately. The skill eliminates drift between live route files and stale manual collections, making it ideal after adding or refactoring API endpoints in Node-oriented stacks.577installs4Changelog Writerchangelog-writer is a patricio0312rev/skills agent skill that generates professional changelogs and release notes from version control history. The workflow analyzes git commits since the last release, categorizes changes by impact type including breaking changes, features, fixes, and improvements, and formats output according to the Keep a Changelog standard with semantic versioning suggestions and version tagging guidance. The skill also parses PR titles and issue references to produce structured release documentation. Developers reach for changelog-writer when preparing a release, responding to requests like create changelog or write release notes, or converting raw commit history into customer-facing version documentation.540installs5Bruno Collection Generatorbruno-collection-generator from patricio0312rev/skills automates Bruno collection creation for the open-source, Git-friendly Bruno API client. The core workflow scans API route definitions, extracts HTTP methods, paths, parameters, and bodies, initializes a bruno.json manifest, and writes organized .bru files with folder structure, environments, and authentication blocks. It supports Express, Next.js, Fastify, and comparable route layouts. Developers invoke it on prompts like generate bruno collection, bruno api testing, create bru files, or bruno import—typically right after routes stabilize and before manual client setup. Output is a ready-to-run Bruno collection mirroring the codebase rather than hand-maintained Postman exports, keeping API tests versioned beside backend code.497installs6Jsdoc Typescript Docsjsdoc-typescript-docs in patricio0312rev/skills standardizes inline documentation for TypeScript codebases through a six-step workflow: document functions with parameters and returns, document interfaces and enums, add purpose descriptions, include code examples, generate TypeDoc output, and wire automated doc generation into CI. Agents apply patterns for async functions, generics, overloads, and factory methods so public exports stay readable in VS Code and JetBrains IDEs. The skill includes TypeDoc configuration guidance with entry points, markdown plugins, validation flags, and category ordering for published API references. An output checklist and JSDoc tags reference help teams enforce completeness across modules before release. Developers reach for jsdoc-typescript-docs when a library lacks consistent JSDoc, when TypeDoc generation is planned, or when teams want CI-enforced documentation before npm publish. Triggers include requests for JSDoc, API docs, TypeDoc, TSDoc, or inline documentation on TypeScript modules.457installs7Dockerfile Optimizerdockerfile-optimizer is a container-focused agent skill that analyzes an existing Dockerfile, then applies production patterns such as multi-stage builds, cache-friendly instruction ordering, slim runtime bases, and security hardening. The workflow starts by identifying waste in current layers, separates build and runtime stages, and minimizes what ships in the final image. Developers reach for dockerfile-optimizer when a Docker build is slow, images are bloated, or a service needs containerization that follows best practices before CI/CD deploys. Trigger phrases include optimize Dockerfile, reduce Docker image size, Docker best practices, and containerize application. The skill is aimed at teams shipping Node, Python, Go, or polyglot services where Dockerfile quality affects deploy time and attack surface.424installs8Websocket Realtime Builderwebsocket-realtime-builder is a patricio0312rev/skills Claude skill for building realtime features with Socket.io on Node/Express and React clients. Its six-step core workflow covers choosing Socket.io versus native WebSocket, configuring the server, adding token authentication middleware, implementing rooms, defining event handlers, and handling graceful reconnection. Server examples use TypeScript with express, http.createServer, socket.io auth via handshake tokens, namespaces like `/chat`, and room patterns such as `user:{id}` and `room:{id}`. Client-side patterns include a reusable `useSocket` hook and a `useChat` hook with typing indicators, plus a ten-item output checklist covering auth middleware, reconnection, presence, rate limiting, and Redis scaling. npm packages are socket.io on the server and socket.io-client on the client. Invoke for live chat, push notifications, or collaborative dashboards.417installs9Animation Micro Interaction Packanimation-micro-interaction-pack is a Claude Code agent skill from patricio0312rev/skills that guides developers adding performant animations and micro-interactions to web interfaces. The skill documents reusable patterns for hover effects including scale, lift translateY, glow box-shadow, and color shifts, plus entrance animations such as fade-in, slide-in, and zoom-in with list stagger. Exit patterns cover fade-out, slide-out, and scale-out, while loading states include pulse, skeleton waves, and progress bars. Gesture feedback and reduced-motion accessibility support ensure interactions remain usable under prefers-reduced-motion. The skill triggers on tasks involving animations, transitions, micro-interactions, or motion design keywords. Developers reach for animation-micro-interaction-pack when refactoring flat UI components into responsive, polished interfaces without importing a full animation framework or writing motion logic from scratch.389installs10Explaining Codeexplaining-code is a Claude Code skill from patricio0312rev/skills that standardizes how agents teach code behavior through four required elements: an everyday analogy, an ASCII flow diagram, a step-by-step execution walkthrough, and a common gotcha or misconception. The skill triggers when users ask how code works, request codebase teaching, or need conversational explanations of complex logic. It favors multiple analogies for harder concepts and keeps tone approachable rather than terse reference dumps. Developers reach for explaining-code during reviews, onboarding docs, or pair sessions where understanding matters more than editing files.365installs11Conventional Commitsconventional-commits is a Claude Code agent skill that writes standardized semantic git commit messages following the Conventional Commits specification. The skill analyzes staged file changes, selects an appropriate type such as feat or fix, optionally assigns a scope for the affected module, and drafts an imperative-mood description plus breaking-change and footer lines when needed. Developers reach for conventional-commits when they want commit history that powers semantic-release, standard-version, or changelog generators without memorizing every formatting rule. The workflow covers type selection, scope identification, description writing, and footer handling so messages stay machine-parseable across monorepos and team repos.355installs12Nginx Config Optimizernginx-config-optimizer is a Claude Code agent skill from patricio0312rev/skills that produces optimized Nginx configurations for high-performance web serving and reverse proxying. The skill follows a five-step workflow: define architecture (reverse proxy, load balancer, or static serving), configure security with SSL/TLS, security headers, and rate limiting, optimize performance through caching, compression, and buffer tuning, set up upstream backend pools, and add monitoring via access logs and metrics. Developers reach for nginx-config-optimizer when prompts mention Nginx setup, reverse proxy, load balancer, web server config, or Nginx optimization. The output is a ready-to-deploy nginx.conf-style configuration aligned with modern best practices rather than a generic template dump.347installs13Api Docs Generatorapi-docs-generator is a backend documentation skill in patricio0312rev/skills that guides developers from route analysis to a shippable API reference. The workflow analyzes endpoints, writes OpenAPI 3.x YAML or JSON with schemas and realistic examples, deploys interactive docs via Swagger UI, Redoc, or Stoplight Elements, optionally generates TypeScript or Python clients with OpenAPI Generator, and validates specs using Spectral lint rules. It includes Express and FastAPI integration patterns, reusable components for parameters and error responses, security scheme templates, and a ten-item output checklist covering authentication, versioning, and SDK configuration. Reach for api-docs-generator when shipping a REST API, publishing a public developer portal, or keeping client SDKs synchronized with backend contracts without maintaining separate doc sets.331installs14Multi Tenant Safety Checkermulti-tenant-safety-checker is a patricio0312rev/skills agent skill focused on complete tenant isolation in multi-tenant applications. It guides PostgreSQL RLS setup with ENABLE ROW LEVEL SECURITY on tenant-scoped tables, CREATE POLICY tenant isolation rules filtering by tenant_id, automated isolation testing, and security audit checks at the query and policy level. Developers reach for multi-tenant-safety-checker when tasks mention multi-tenancy, tenant isolation, RLS, or data security in Supabase or PostgreSQL-backed SaaS codebases. The skill helps verify that users, orders, products, and similar tables cannot leak records across tenant boundaries before shipping shared-database architectures.316installs15Codebase Summarizercodebase-summarizer is a documentation agent skill from patricio0312rev/skills that scans repository structure and generates comprehensive architecture documentation. The workflow recursively analyzes folder trees, detects frameworks and architecture styles, maps module relationships, and produces ARCHITECTURE.md with system overviews, entry points, data flow diagrams, and edit-here-for-X navigation guides. Developers reach for codebase-summarizer when asked to document the codebase, explain architecture, create onboarding docs, or map the system. Triggers include document the codebase, explain the architecture, and create onboarding docs.315installs16Dark Mode Implementerdark-mode-implementer is a frontend agent skill in patricio0312rev/skills that walks developers through a six-step workflow: choose Tailwind, CSS-only, or React context strategy; define semantic color tokens; add a toggle; respect prefers-color-scheme; persist to localStorage; and prevent wrong-theme flash on hydration. It ships production-ready patterns including tailwind.config.js darkMode class setup, HSL CSS variable palettes for light and dark roots, a full ThemeProvider with system-preference listeners, inline layout scripts for Next.js, and next-themes integration. Toggle examples cover simple buttons, three-way light/dark/system selectors, and Framer Motion switches, plus Playwright tests for theme persistence. Developers invoke it when requests mention add dark mode, theme toggle, color scheme, or preventing FOUC on React and Tailwind apps.301installs17Unit Test Generatorunit-test-generator is a patricio0312rev/skills agent skill that writes unit test files mirroring source structure using the Arrange-Act-Assert (AAA) pattern with Vitest or Jest imports. For each function or module, the agent adds happy-path cases, boundary edge cases, and error-throwing scenarios, then notes coverage gaps developers can close manually. Teams reach for unit-test-generator when bootstrapping tests for untested utilities, expanding coverage before a release branch, or teaching AAA conventions across a TypeScript codebase without hand-writing every describe block.298installs18I18n Frontend Implementeri18n-frontend-implementer is an agent skill from patricio0312rev/skills that implements frontend internationalization with next-intl, react-i18next, or similar libraries. The six-step core setup covers package install, locales/en.json and locales/es.json dictionaries, IntlProvider wrapping, hierarchical translation namespaces, date/number/currency formatters, and a language switcher UI. Usage examples show useTranslations hooks, pluralized keys with count, and locale-aware date formatting. Best practices include namespace organization, extracting all user-visible strings, RTL support, and lazy-loading translation bundles. Developers reach for i18n-frontend-implementer when adding multi-language support, replacing hard-coded UI copy, implementing locale switchers, or standardizing i18n key structure in Next.js or React applications preparing for international rollout.297installs19Redis Patternsredis-patterns is an agent skill from patricio0312rev/skills that implements common Redis patterns for high-performance applications using ioredis. A six-step core workflow covers connection setup, pattern selection, CRUD with TTL, error handling, performance monitoring, and pipelining or clustering optimization. The skill includes ready-to-adapt TypeScript modules for Cache with stale-while-revalidate, SessionStore with nanoid sessions, RateLimiter with fixed, sliding, and token-bucket algorithms plus Express middleware, DistributedLock with Lua atomic release, PubSub on dedicated connections, and Leaderboard sorted-set helpers. A ten-item output checklist enforces retry strategy, key prefixing, TTL on all keys, graceful shutdown, and cluster-safe operations. Developers reach for redis-patterns when adding Redis caching layers, session stores, API rate limiters, distributed locks, or pub/sub event buses in Node.js or TypeScript backends.295installs20Accessibility Auditoraccessibility-auditor is a patricio0312rev/skills frontend agent skill for WCAG 2.1 compliance across Perceivable, Operable, Understandable, and Robust principles. The seven-step workflow audits existing code, verifies AA success criteria, fixes semantic HTML landmarks, adds ARIA attributes, implements keyboard navigation, and tests with jest-axe and axe-core Playwright. Developers reach for accessibility-auditor when requested for accessibility audits, a11y reviews, WCAG compliance checks, screen reader support, or keyboard navigation fixes before shipping React or HTML interfaces.290installs21Ai Agent Orchestratorai-agent-orchestrator is a Claude Code skill for building coordinated multi-agent AI systems when a single LLM thread cannot decompose complex work. The skill follows a six-step workflow: define specialized agents, design coordination workflows, implement agent-to-agent handoffs, add persistent shared memory, create a supervisor orchestrator, and monitor execution activity. It triggers on prompts mentioning multi-agent systems, agent orchestration, AI agent coordination, or autonomous agents. Rather than shipping a standalone runtime, the skill encodes orchestration patterns—delegation protocols, communication channels, durable context, and supervisor loops—that coding agents apply while scaffolding services in your repository. Developers reach for ai-agent-orchestrator when parallel specialist agents need structured handoffs, when long-running automations require state across steps, or when building internal agent platforms where workers must collaborate without losing task context. It fits backend services, agent frameworks, and dev tooling where multiple AI workers coordinate on one objective.285installs22Oauth2 Oidc Implementeroauth2-oidc-implementer is a patricio0312rev skill guiding secure OAuth 2.0 and OpenID Connect implementation from flow selection through production session handling. The workflow covers Authorization Code, PKCE, and Client Credentials flows, provider configuration, redirect and token exchange, secure token storage with refresh, and multiple identity provider support. Developers reach for oauth2-oidc-implementer when requests mention OAuth setup, OIDC implementation, social login, SSO integration, or authentication flow design. The skill emphasizes secure defaults for token lifecycle and session management rather than placeholder login buttons that leak credentials or skip refresh handling.282installs23Responsive Design Systemresponsive-design-system is a patricio0312rev frontend skill for building adaptive, mobile-first layouts with modern CSS and Tailwind. The workflow defines a responsive breakpoint system, sets fluid typography with clamp-based scaling, creates a responsive grid, adds container queries for component-level responsiveness, and builds adaptive components. Developers reach for responsive-design-system when requests mention responsive design, mobile-first layouts, breakpoints, fluid typography, or adaptive layout patterns. The skill targets production UI systems where viewport and container breakpoints must work together instead of fixed pixel font sizes or desktop-only grids.273installs24Mermaid Diagram Generatormermaid-diagram-generator: A skill for development. This provides functionality for development workflows.270installs25Auth Security Reviewerauth-security-reviewer: A skill for development. This provides functionality for development workflows.266installs26Scalability Playbookscalability-playbook: A skill for development. This provides functionality for development workflows.266installs27Skill Creatorskill-creator is an agent skill from patricio0312rev/skills that generates production-ready Claude Code skills when users request creating, generating, or adding skills to a collection. The workflow defines skill purpose and use cases, assigns the correct repository folder category—foundation, frontend, backend, and others—then authors SKILL.md with YAML frontmatter, instructional content, and optional references such as templates.md, conventions.md, or pattern libraries. skill-creator enforces established naming, description, and structure conventions so new skills install and trigger reliably in agent sessions. Developers reach for skill-creator when bootstrapping a new SKILL.md from scratch rather than copying ad-hoc markdown that lacks frontmatter, trigger phrases, or reference file organization.260installs28Form Wizard Builderform-wizard-builder: A skill for development. This provides functionality for development workflows.259installs29Storybook Setupstorybook-setup: A skill for development. This provides functionality for development workflows.259installs30Cost Latency Optimizercost-latency-optimizer: A skill for development. This provides functionality for development workflows.258installs31Rbac Permissions Builderrbac-permissions-builder: A skill for development. This provides functionality for development workflows.255installs32Core Web Vitals Tunercore-web-vitals-tuner: A skill for development. This provides functionality for development workflows.249installs33Visual Regression Testervisual-regression-tester: A skill for development. This provides functionality for development workflows.249installs34Structured Output Extractorstructured-output-extractor: A skill for development. This provides functionality for development workflows.248installs35Openapi Generatoropenapi-generator: A skill for development. This provides functionality for development workflows.246installs36Load Test Builderload-test-builder: A skill for development. This provides functionality for development workflows.245installs37Api Test Suite Generatorapi-test-suite-generator: A skill for development. This provides functionality for development workflows.242installs38Tailwind Gradient Buildertailwind-gradient-builder: A skill for development. This provides functionality for development workflows.242installs39Cypress Playwright Setupcypress-playwright-setup: A skill for development. This provides functionality for development workflows.238installs40Prisma Migration Assistantprisma-migration-assistant: A skill for development. This provides functionality for development workflows.236installs41Frontend Refactor Plannerfrontend-refactor-planner: A skill for development. This provides functionality for development workflows.235installs42Secure Headers Csp Buildersecure-headers-csp-builder: A skill for development. This provides functionality for development workflows.234installs43Curl Command Generatorcurl-command-generator: A skill for development. This provides functionality for development workflows.233installs44Vscode Workspace Setupvscode-workspace-setup: A skill for development. This provides functionality for development workflows.233installs45Page Layout Builderpage-layout-builder: A skill for development. This provides functionality for development workflows.231installs46Rate Limiting Abuse Protectionrate-limiting-abuse-protection: A skill for development. This provides functionality for development workflows.229installs47Data Integrity Auditordata-integrity-auditor: A skill for development. This provides functionality for development workflows.227installs48Readme Generatorreadme-generator: A skill for development. This provides functionality for development workflows.226installs49Api Mock Serverapi-mock-server: A skill for development. This provides functionality for development workflows.223installs50Guardrails Safety Filter Builderguardrails-safety-filter-builder: A skill for development. This provides functionality for development workflows.223installs51Cors Configurationcors-configuration: A skill for development. This provides functionality for development workflows.220installs52Backup Restore Runbook Generatorbackup-restore-runbook-generator: A skill for development. This provides functionality for development workflows.218installs53Queue Job Processorqueue-job-processor: A skill for development. This provides functionality for development workflows.218installs54Table Buildertable-builder: A skill for development. This provides functionality for development workflows.217installs55Env Secrets Managerenv-secrets-manager: A skill for development. This provides functionality for development workflows.216installs56Rfc Generatorrfc-generator: A skill for development. This provides functionality for development workflows.216installs57Api Contract Normalizerapi-contract-normalizer: A skill for development. This provides functionality for development workflows.215installs58Sql Query Optimizersql-query-optimizer: A skill for development. This provides functionality for development workflows.215installs59Adr Writeradr-writer: A skill for development. This provides functionality for development workflows.214installs60Input Validation Sanitization Auditorinput-validation-sanitization-auditor: A skill for development. This provides functionality for development workflows.213installs61Observability Setupobservability-setup: A skill for development. This provides functionality for development workflows.213installs62React Server Componentsreact-server-components: A skill for development. This provides functionality for development workflows.213installs63Api Security Hardenerapi-security-hardener: A skill for development. This provides functionality for development workflows.212installs64Project Scaffolderproject-scaffolder: A skill for development. This provides functionality for development workflows.212installs65Agent Orchestration Planneragent-orchestration-planner: A skill for development. This provides functionality for development workflows.211installs66Dependency Vulnerability Triagedependency-vulnerability-triage: A skill for development. This provides functionality for development workflows.211installs67Prompt Template Builderprompt-template-builder: A skill for development. This provides functionality for development workflows.211installs68Secrets Scannersecrets-scanner: A skill for development. This provides functionality for development workflows.211installs69Quality Gates Enforcerquality-gates-enforcer: A skill for development. This provides functionality for development workflows.210installs70Monorepo Setupmonorepo-setup: A skill for development. This provides functionality for development workflows.209installs71System Design Generatorsystem-design-generator: A skill for development. This provides functionality for development workflows.208installs72Dev Onboarding Builderdev-onboarding-builder: A skill for development. This provides functionality for development workflows.207installs73Flaky Test Detectiveflaky-test-detective: A skill for development. This provides functionality for development workflows.207installs74Github Actions Pipeline Creatorgithub-actions-pipeline-creator: A skill for development. This provides functionality for development workflows.207installs75Modal Drawer Systemmodal-drawer-system: A skill for development. This provides functionality for development workflows.206installs76Rest To Graphql Migratorrest-to-graphql-migrator: A skill for development. This provides functionality for development workflows.204installs77Secrets Env Managersecrets-env-manager: A skill for development. This provides functionality for development workflows.204installs78Backend Latency Profiler Helperbackend-latency-profiler-helper: A skill for development. This provides functionality for development workflows.202installs79Code Formatter Installercode-formatter-installer: A skill for development. This provides functionality for development workflows.202installs80Migration Plannermigration-planner: A skill for development. This provides functionality for development workflows.202installs81Caching Strategistcaching-strategist: A skill for development. This provides functionality for development workflows.201installs82Design To Component Translatordesign-to-component-translator: A skill for development. This provides functionality for development workflows.201installs83Pii Redaction Logging Policy Builderpii-redaction-logging-policy-builder: A skill for development. This provides functionality for development workflows.201installs84Etl Sync Job Builderetl-sync-job-builder: A skill for development. This provides functionality for development workflows.200installs85Event Driven Architectevent-driven-architect: A skill for development. This provides functionality for development workflows.200installs86Insomnia Collection Generatorinsomnia-collection-generator: A skill for development. This provides functionality for development workflows.200installs87Reliability Strategy Builderreliability-strategy-builder: A skill for development. This provides functionality for development workflows.200installs88Security Pr Checklist Skillsecurity-pr-checklist-skill: A skill for development. This provides functionality for development workflows.200installs89Webhook Receiver Hardenerwebhook-receiver-hardener: A skill for development. This provides functionality for development workflows.200installs90Component Scaffold Generatorcomponent-scaffold-generator: A skill for development. This provides functionality for development workflows.199installs91Data Retention Archiving Plannerdata-retention-archiving-planner: A skill for development. This provides functionality for development workflows.199installs92E2e Test Buildere2e-test-builder: A skill for development. This provides functionality for development workflows.199installs93Evaluation Harnessevaluation-harness: A skill for development. This provides functionality for development workflows.199installs94Background Jobs Designerbackground-jobs-designer: A skill for development. This provides functionality for development workflows.198installs95Caching Strategy Optimizercaching-strategy-optimizer: A skill for development. This provides functionality for development workflows.198installs96Dev Environment Bootstrapperdev-environment-bootstrapper: A skill for development. This provides functionality for development workflows.198installs97Langchain Workflow Builderlangchain-workflow-builder: A skill for development. This provides functionality for development workflows.198installs98Rbac Policy Testerrbac-policy-tester: A skill for development. This provides functionality for development workflows.198installs99Structured Logging StandardizerHelps teams adopt consistent structured logging: defining canonical fields, mapping errors to stable schemas, enforcing correlation IDs, and reviewing PRs so services emit parseable JSON logs ready for production observability.197installs100Domain Model Boundaries Mapperdomain-model-boundaries-mapper: A skill for development. This provides functionality for development workflows.196installs101Error Handling Standardizererror-handling-standardizer: A skill for development. This provides functionality for development workflows.195installs102Mcp Server Buildermcp-server-builder is an agent skill for solo builders who want Claude—and compatible hosts—to reach their APIs, files, or workflows through the Model Context Protocol. When someone asks to create an MCP server, build a Claude tool, or ship custom MCP integration, the skill walks a seven-step path: clarify purpose, pick stdio or HTTP/SSE transport, design JSON-schema tools and handlers, optionally expose resources and prompt templates, test with the MCP inspector, then configure Claude Desktop or API deployment. The embedded architecture diagram frames JSON-RPC over stdio between host and your app. TypeScript setup snippets accelerate a new repo without replacing your domain logic. Intermediate builders benefit most: you should understand basic Node tooling and what “tool schema” means for your use case. It delivers a runnable server package, not a hosted marketplace listing—pair with security review before exposing secrets or production data.195installs103React Hook Builderreact-hook-builder: A skill for development. This provides functionality for development workflows.195installs104Tech Debt Prioritizertech-debt-prioritizer: A skill for development. This provides functionality for development workflows.195installs105Typescript Strict Migratortypescript-strict-migrator: A skill for development. This provides functionality for development workflows.195installs106Git Hygiene Enforcergit-hygiene-enforcer: A skill for development. This provides functionality for development workflows.194installs107Hot Reload Optimizerhot-reload-optimizer: A skill for development. This provides functionality for development workflows.194installs108Pr Template Builderpr-template-builder: A skill for development. This provides functionality for development workflows.194installs109Rollback Workflow Builderrollback-workflow-builder: A skill for development. This provides functionality for development workflows.194installs110Tanstack Query Setuptanstack-query-setup: A skill for development. This provides functionality for development workflows.194installs111Alerting Dashboard Builderalerting-dashboard-builder: A skill for development. This provides functionality for development workflows.193installs112Integration Test Builderintegration-test-builder: A skill for development. This provides functionality for development workflows.193installs113Schema Consistency Checkerschema-consistency-checker: A skill for development. This provides functionality for development workflows.193installs114Threat Model Generatorthreat-model-generator: A skill for development. This provides functionality for development workflows.193installs115Vector Db Setupvector-db-setup: A skill for development. This provides functionality for development workflows.193installs116Contract Testing Buildercontract-testing-builder: A skill for development. This provides functionality for development workflows.192installs117Docs Starter Kitdocs-starter-kit: A skill for development. This provides functionality for development workflows.192installs118Release Automation Builderrelease-automation-builder: A skill for development. This provides functionality for development workflows.192installs119Coverage Strategistcoverage-strategist: A skill for development. This provides functionality for development workflows.191installs120Zustand State Builderzustand-state-builder: A skill for development. This provides functionality for development workflows.191installs121Api Versioning Deprecation Plannerapi-versioning-deprecation-planner: A skill for development. This provides functionality for development workflows.190installs122Postmortem Writerpostmortem-writer: A skill for development. This provides functionality for development workflows.190installs123Prompt Regression Testerprompt-regression-tester: A skill for development. This provides functionality for development workflows.190installs124Capacity Planning Helpercapacity-planning-helper: A skill for development. This provides functionality for development workflows.189installs125Data Seeding Fixtures Builderdata-seeding-fixtures-builder: A skill for development. This provides functionality for development workflows.189installs126Dependency Doctordependency-doctor: A skill for development. This provides functionality for development workflows.189installs127Deployment Checklist Generatordeployment-checklist-generator: A skill for development. This provides functionality for development workflows.189installs128Monorepo Ci Optimizermonorepo-ci-optimizer: A skill for development. This provides functionality for development workflows.189installs129State Ux Flow Builderstate-ux-flow-builder: A skill for development. This provides functionality for development workflows.189installs130Caching Cdn Strategy Plannercaching-cdn-strategy-planner: A skill for development. This provides functionality for development workflows.187installs131Db Performance Watchlistdb-performance-watchlist: A skill for development. This provides functionality for development workflows.187installs132Kubernetes Manifest Generatorkubernetes-manifest-generator: A skill for development. This provides functionality for development workflows.187installs133Auth Module Builderauth-module-builder: A skill for development. This provides functionality for development workflows.186installs134Llm Debuggerllm-debugger: A skill for development. This provides functionality for development workflows.186installs135Api Endpoint Generatorapi-endpoint-generator: A skill for development. This provides functionality for development workflows.185installs136Embedding Pipeline Builderembedding-pipeline-builder: A skill for development. This provides functionality for development workflows.185installs137Tool Function Schema Designertool-function-schema-designer: A skill for development. This provides functionality for development workflows.185installs138Vscode Rest Client Generatorvscode-rest-client-generator: A skill for development. This provides functionality for development workflows.185installs139Artifact Sbom Publisherartifact-sbom-publisher: A skill for development. This provides functionality for development workflows.183installs140Mocking Assistantmocking-assistant: A skill for development. This provides functionality for development workflows.183installs141Test Reporting Triage Skilltest-reporting-triage-skill: A skill for development. This provides functionality for development workflows.183installs142Service Layer Extractorservice-layer-extractor: A skill for development. This provides functionality for development workflows.182installs143Rag Pipeline Builderrag-pipeline-builder: A skill for development. This provides functionality for development workflows.177installs144Preview Environments Builderpreview-environments-builder: A skill for development. This provides functionality for development workflows.176installs145Load Test Scenario Builderload-test-scenario-builder: A skill for development. This provides functionality for development workflows.159installs146Terraform Module Builderterraform-module-builder: A skill for development. This provides functionality for development workflows.156installs147Doc To Vector Dataset Generatordoc-to-vector-dataset-generator: A skill for development. This provides functionality for development workflows.155installs148Graphql Schema Designergraphql-schema-designer: A skill for development. This provides functionality for development workflows.155installs149Performance Budget Setterperformance-budget-setter: A skill for development. This provides functionality for development workflows.155installs150Snapshot Test Refactorersnapshot-test-refactorer: A skill for development. This provides functionality for development workflows.155installs151Security Incident Playbook Generatorsecurity-incident-playbook-generator: A skill for development. This provides functionality for development workflows.154installs152Test Data Factory Buildertest-data-factory-builder: A skill for development. This provides functionality for development workflows.154installs153Incident Runbook Generatorincident-runbook-generator: A skill for development. This provides functionality for development workflows.153installs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.

patricio0312rev/skills · 153 skills · Skillselion