Skill Claude CodeCodex
A code review procedure that checks whether concurrent code can safely share data and perform operations at the same time. Concurrency means multiple parts of a program run in overlapping periods.
Skill Claude CodeCodex
A code review procedure that checks whether concurrent code can safely share data and perform operations at the same time. Concurrency means multiple parts of a program run in overlapping periods.
Skill Claude CodeCodex
A technical-design guide that turns a short requirement into a written technical plan. It examines inputs and outputs, data, concurrent work, transactions, caching, reliability, latency, and overload handling.
Skill Claude CodeCodex
A documentation audit tool that compares project documents with the code and checks several linked records, such as routes, database models, and service methods. It also scans selected rules and configuration areas for omissions or unsafe patterns.
Skill Claude CodeCodex
A code-audit guide that checks whether service methods enforce the business rules and state changes documented for a domain. A domain is the part of a product concerned with one area of business behavior.
Skill Claude CodeCodex
A review tool for checking how a service method handles failures. It compares the method's error branches with documented failure paths and their tests.
Skill Claude CodeCodex
A code-audit guide for checking database and service input/output patterns against documented rules. It looks for unnecessary repeated queries, N+1 queries, and independent operations run one after another.
Skill Claude CodeCodex
A generator for HTTP controller handlers based on API interface documents. A controller handler receives a web request, validates it, calls the service layer, and formats the response.
Skill Claude CodeCodex
A skill that generates Gin authentication middleware from a middleware design document. Gin is a Go web framework, and middleware is code that checks or changes a request before it reaches an endpoint.
Skill Claude CodeCodex
A generator that turns a database table definition, called DDL, into a GORM model. GORM is a Go library that maps database tables to Go structs.
Skill Claude CodeCodex
A skill that generates a message-queue consumer for a Go service from its scheduled-task design. A message queue delivers events between services, and a consumer reads those events; this one is designed to batch them, store them, update Redis, and send failures to a dead-letter queue.
Skill Claude CodeCodex
A code-generation guide for creating HTTP route registration files from a routing document. It registers routes by audience, HTTP method, path, controller, and validation middleware.
Skill Claude CodeCodex
A code generator for one step in a Saga, a way to coordinate a multi-step transaction that can undo earlier work if a later step fails. It creates the main action, its compensation action, and checks that repeating the step is safe.
Skill Claude CodeCodex
A coding helper that creates scheduled-task implementations from a design document, including command-line, recurring, cron, controller, and service parts.
Skill Claude CodeCodex
A code-generation guide for implementing service methods from a service-design document. It selects error handling, the appropriate MySQL database client, and how MySQL and Redis writes are handled.
Skill Claude CodeCodex
A skill that creates interface-level test files under test/cases for a specified API endpoint. It uses API documentation and seed data to build test outlines for successful requests and common errors.
Skill Claude CodeCodex
A code audit that checks changed Go code against documented performance rules, especially code used frequently or on request paths.
Skill Claude CodeCodex
A workflow that rebuilds selected application code from documentation, treating the documented design as the source of truth.
Skill Claude CodeCodex
A workflow for updating project documentation after a software change. It connects changed code and design information to documents such as architecture, API, service, database, and testing notes.
Skill Claude CodeCodex
A documentation-maintenance task that scans selected folders and synchronizes their files and counts with INDEX.md, a Markdown index file.