Browse 138,453 skills across 70 categories. Mirrored from majiayu000/claude-skill-registry.
Transform academic course assignment PDFs into structured, actionable markdown checklists with dates, unique IDs, and cu...
Academic writing, research methodology, and scholarly communication workflows. Use when writing papers, literature revie...
Track assignments, due dates, grades, and study notes from Canvas LMS (iCal feed) and GoodNotes exports.
Manage academy enrollments by appending rows to a Google Sheet (used by Zapier/n8n to grant LearnWorlds access).
Action-Domain-Responder pattern knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for ADR (we...
Generates Architecture Decision Records (ADR) for PHP projects. Creates structured decision documentation with context,...
Analyzes coupling and cohesion metrics in PHP codebases. Calculates Afferent/Efferent coupling (Ca/Ce), LCOM metrics, in...
Analyzes PHP codebase for SOLID principle violations. Detects God classes (SRP), type switches (OCP), broken contracts (...
Analyzes PHP codebase for test coverage gaps. Detects untested classes, methods, branches, exception paths, and edge cas...
Generates API documentation for PHP projects. Creates endpoint documentation with parameters, responses, and examples.
Generates ARCHITECTURE.md files for PHP projects. Creates layer documentation, component descriptions, and architectural...
Generates CHANGELOG.md files following Keep a Changelog format. Creates version history documentation.
Analyzes bounded context boundaries in DDD projects. Detects cross-context coupling, shared kernel violations, context m...
Analyzes PHP code for encapsulation violations. Detects public mutable state, exposed internals, Tell Don't Ask violatio...
Analyzes PHP code for immutability violations. Checks Value Objects, Events, DTOs for readonly properties, no setters, f...
Detects leaky abstractions in PHP code. Identifies implementation details exposed in interfaces, concrete returns from a...
Knowledge base for Claude Code formats and patterns. Use when creating or improving commands, agents, skills, or hooks.
Clean Architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Clean Architecture a...
Generates code examples for PHP documentation. Creates minimal, copy-paste ready examples with expected output.
CQRS architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Command Query Respons...
Generates ADR Action classes for PHP 8.5. Creates single-responsibility HTTP endpoint handlers with PSR-7 support. Inclu...
Generates DDD Aggregates for PHP 8.5. Creates consistency boundaries with root entity, domain events, and invariant prot...
Generates DDD Anti-Corruption Layer for PHP 8.5. Creates translation layer between bounded contexts or external systems....
Generates Builder pattern for PHP 8.5. Creates step-by-step object construction with fluent interface and validation. In...
Generates Bulkhead pattern for PHP 8.5. Creates resource isolation with semaphore-based concurrency limiting and thread...
Generates Chain of Responsibility pattern for PHP 8.5. Creates handler chains for request processing with middleware-sty...
Generates Circuit Breaker pattern for PHP 8.5. Creates resilience component protecting against cascading failures with s...
Generates CQRS Commands and Handlers for PHP 8.5. Creates immutable command DTOs with handlers that modify state. Includ...
Generates Decorator pattern for PHP 8.5. Creates wrapper classes for dynamic behavior addition without inheritance. Incl...
Generates DI Container configuration for PHP 8.5. Creates module classes, service providers, container configuration, an...
Generates DDD Domain Events for PHP 8.5. Creates immutable event records with metadata, past-tense naming. Includes unit...
Generates DDD Domain Services for PHP 8.5. Creates stateless services for business logic that doesn't belong to entities...
Generates DTO (Data Transfer Object) for PHP 8.5. Creates immutable objects for layer boundaries, API requests/responses...
Generates DDD Entities for PHP 8.5. Creates identity-based objects with behavior, state transitions, and invariant prote...
Generates DDD Factory for PHP 8.5. Creates factories for complex domain object instantiation with validation and encapsu...
Generates PHPUnit integration tests for PHP 8.5. Creates tests with real dependencies, database transactions, HTTP mocki...
Generates Mediator pattern for PHP 8.5. Creates coordination layer for complex component interactions with event dispatc...
Generates InMemory repository implementations for PHP 8.5 testing. Creates fake repositories with array storage, support...
Generates Null Object pattern for PHP 8.5. Creates safe default implementations eliminating null checks. Includes unit t...
Generates Object Pool pattern for PHP 8.5. Creates reusable object containers for expensive resources like connections....
Generates Transactional Outbox pattern components for PHP 8.5. Creates OutboxMessage entity, repository, publisher, and...
Generates Policy pattern for PHP 8.5. Creates encapsulated business rules for authorization, validation, and domain cons...
Generates PSR-11 Container implementation for PHP 8.5. Creates ContainerInterface with service resolution, autowiring su...
Generates PSR-13 Hypermedia Links implementation for PHP 8.5. Creates LinkInterface, EvolvableLinkInterface, and LinkPro...
Generates PSR-14 Event Dispatcher implementation for PHP 8.5. Creates EventDispatcherInterface, ListenerProviderInterfac...
Generates PSR-15 HTTP Middleware implementation for PHP 8.5. Creates MiddlewareInterface and RequestHandlerInterface wit...
Generates PSR-16 Simple Cache implementation for PHP 8.5. Creates CacheInterface with get/set/delete operations and TTL...
Generates PSR-17 HTTP Factories implementation for PHP 8.5. Creates RequestFactoryInterface, ResponseFactoryInterface, S...
Generates PSR-18 HTTP Client implementation for PHP 8.5. Creates ClientInterface with request sending and exception hand...
Generates PSR-20 Clock implementation for PHP 8.5. Creates ClockInterface implementations including SystemClock, FrozenC...
Generates PSR-3 Logger implementation for PHP 8.5. Creates LoggerInterface implementations with log levels, context inte...
Generates PSR-6 Cache implementation for PHP 8.5. Creates CacheItemPoolInterface and CacheItemInterface implementations...
Generates PSR-7 HTTP Message implementations for PHP 8.5. Creates Request, Response, Stream, Uri, and ServerRequest clas...
Generates CQRS Queries and Handlers for PHP 8.5. Creates read-only query DTOs with handlers that return data without sid...
Generates Rate Limiter pattern for PHP 8.5. Creates request throttling with token bucket, sliding window, and fixed wind...
Generates Read Model/Projection for PHP 8.5. Creates optimized query models for CQRS read side with projections and deno...
Generates DDD Repository interfaces and implementation stubs for PHP 8.5. Creates domain interfaces in Domain layer, imp...
Generates ADR Responder classes for PHP 8.5. Creates HTTP response builders with PSR-7/PSR-17 support. Includes unit tes...
Generates Retry pattern for PHP 8.5. Creates resilience component with exponential backoff, jitter, and configurable ret...
Generates Saga pattern components for PHP 8.5. Creates Saga interfaces, steps, orchestrator, state management, and compe...
Generates DDD Specification for PHP 8.5. Creates reusable business rule objects for validation, filtering, and querying...
Generates State pattern for PHP 8.5. Creates state machines with context, state interface, and concrete states for behav...
Generates Strategy pattern for PHP 8.5. Creates interchangeable algorithm families with context class, strategy interfac...
Generates Test Data Builder and Object Mother patterns for PHP 8.5. Creates fluent builders with sensible defaults and f...
Generates test doubles (Mocks, Stubs, Fakes, Spies) for PHP 8.5. Creates appropriate double type based on testing needs...
Generates PHPUnit unit tests for PHP 8.5. Creates isolated tests with AAA pattern, proper naming, attributes, and one be...
Generates Application Use Cases for PHP 8.5. Creates orchestration services that coordinate domain objects, handle trans...
Generates DDD Value Objects for PHP 8.5. Creates immutable, self-validating objects with equality comparison. Includes u...
DDD architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Domain-Driven Design a...
Detects code smells in PHP codebases. Identifies God Class, Feature Envy, Data Clumps, Long Parameter List, Long Method,...
Detects test antipatterns and code smells in PHP test suites. Identifies 15 smells (Logic in Test, Mock Overuse, Fragile...
Diagram knowledge base. Provides Mermaid syntax, C4 model, diagram types, and best practices for technical diagrams.
Documentation knowledge base. Provides documentation types, audiences, best practices, and antipatterns for technical do...
Documentation QA knowledge base. Provides quality checklists, audit criteria, and metrics for documentation review.
Event-Driven Architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for EDA audits in...
Event Sourcing knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Event Sourcing architect...
Generates Getting Started guides for PHP projects. Creates step-by-step tutorials for first-time users.
GRASP principles knowledge base for PHP 8.5 projects. Provides quick reference for 9 responsibility assignment patterns...
Hexagonal Architecture (Ports & Adapters) knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines f...
Layered Architecture knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for traditional N-tier...
Generates Mermaid diagrams for technical documentation. Provides templates for flowcharts, sequence diagrams, class diag...
Outbox Pattern knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for transactional outbox, po...
PSR-4 autoloading standard knowledge base for PHP 8.5 projects. Provides quick reference for namespace-to-path mapping,...
PSR-1 and PSR-12 coding standards knowledge base for PHP 8.5 projects. Provides quick reference for basic coding standar...
PHP Standards Recommendations (PSR) overview knowledge base. Provides comprehensive reference for all accepted PSRs incl...
Generates README.md files for PHP projects. Creates structured documentation with badges, installation, usage, and examp...
Saga Pattern knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for saga orchestration, choreo...
SOLID principles knowledge base for PHP 8.5 projects. Provides quick reference for SRP, OCP, LSP, ISP, DIP with detectio...
Stability Patterns knowledge base. Provides patterns, antipatterns, and PHP-specific guidelines for Circuit Breaker, Ret...
Testing knowledge base for PHP 8.5 projects. Provides testing pyramid, AAA pattern, naming conventions, isolation princi...
Generates troubleshooting guides and FAQ sections for PHP projects. Creates problem-solution documentation.
Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/F...
Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.
Core pattern for flexible, testable Go APIs