Skill Claude CodeCodex
Audit UI code for accessibility (a11y) issues against WCAG and suggest concrete fixes for semantics, keyboard, contrast, and ARIA.
Skill Claude CodeCodex
Audit UI code for accessibility (a11y) issues against WCAG and suggest concrete fixes for semantics, keyboard, contrast, and ARIA.
Skill Claude CodeCodex
Design a REST or GraphQL API endpoint or resource — paths, methods, schemas, status codes, and errors — following the project's conventions.
Skill Claude CodeCodex
Record who did what, when, and to what — append-only, tamper-evident audit trails for security-sensitive actions, without logging secrets.
Skill Claude CodeCodex
Implement authentication and authorization safely — verify identity, manage sessions and tokens, store credentials securely, and enforce least-privilege access checks.
Skill Claude CodeCodex
Run work asynchronously with a job queue — enqueue reliably, process idempotently, retry with backoff, dead-letter failures, and make jobs observable.
Skill Claude CodeCodex
Write and run reproducible performance benchmarks with stable, statistically meaningful measurements using the project's tooling.
Skill Claude CodeCodex
Add or improve caching safely — pick the right layer and key, set TTL and invalidation, and verify correctness and hit rate.
Skill Claude CodeCodex
Generate a changelog entry from recent git commits for release notes.
Skill Claude CodeCodex
Generate or improve a CI pipeline (GitHub Actions, GitLab CI, etc.) that installs, lints, tests, and builds the project.
Skill Claude CodeCodex
Review the current branch diff for bugs, security issues, and quality problems with severity ratings.
Skill Claude CodeCodex
Generate a conventional commit message from staged git changes.
Skill Claude CodeCodex
Structure application configuration safely — layer sources, validate at startup, keep secrets out of code, and document every setting.
Skill Claude CodeCodex
Size and manage DB/HTTP connection pools to avoid exhaustion — set sane limits, use timeouts, validate connections, and reuse clients instead of opening per-request.
Skill Claude CodeCodex
Configure CORS correctly and safely — allowlist real origins, handle preflight, scope credentials and headers narrowly, and never reflect arbitrary origins.
Skill Claude CodeCodex
Validate and sanitize input at trust boundaries — define a schema, fail closed with clear errors, normalize data, and never trust client-supplied values.
Skill Claude CodeCodex
Choose and verify the right database indexes for real query patterns — read the plan, order composite columns correctly, avoid over-indexing, and build without locking production.
Skill Claude CodeCodex
Find and safely remove unused code — dead functions, unreachable branches, unused imports, exports, and dependencies.
Skill Claude CodeCodex
Systematically diagnose and fix an error, stack trace, or failing test by finding the root cause first.
Skill Claude CodeCodex
Audit project dependencies for outdated, deprecated, and known-vulnerable packages and recommend safe updates.
Skill Claude CodeCodex
Ship a build to production safely — pick a rollout strategy, gate on health, sequence migrations, and have a fast, tested rollback.
Skill Claude CodeCodex
Add docstrings and inline documentation to functions, matching the language's conventions and existing style.
Skill Claude CodeCodex
Generate a production-ready Dockerfile and .dockerignore for the current project.
Skill Claude CodeCodex
Produce a reproducible developer setup — required tooling, env vars, install/run steps — and a getting-started guide for new contributors.
Skill Claude CodeCodex
Harden error handling and edge cases — validate inputs, handle failures explicitly, and fail safely without leaking internals.