Skill Claude CodeCodex
Retry outbound calls safely — retry only idempotent, transient failures with capped exponential backoff and jitter, set timeouts and budgets, and trip a circuit breaker.
Skill Claude CodeCodex
Retry outbound calls safely — retry only idempotent, transient failures with capped exponential backoff and jitter, set timeouts and budgets, and trip a circuit breaker.
Skill Claude CodeCodex
Scaffold a new component, module, or feature with boilerplate, tests, and wiring that match the project's existing structure and conventions.
Skill Claude CodeCodex
Add full-text or filtered search — pick the right engine, index the right fields, rank by relevance, and paginate results without leaking unauthorized data.
Skill Claude CodeCodex
Scan the codebase and git history for hardcoded secrets and credentials, then remediate and prevent leaks.
Skill Claude CodeCodex
Issue, store, refresh, and revoke sessions and tokens securely — pick server sessions vs. JWTs, set cookie flags correctly, rotate on privilege change, and make logout actually revoke.
Skill Claude CodeCodex
Soft-delete and restore records safely — mark instead of destroy, filter deleted rows everywhere, keep constraints and uniqueness working, and purge on a schedule.
Skill Claude CodeCodex
Generate unit tests for changed or specified code, matching the project's existing test framework and conventions.
Skill Claude CodeCodex
Handle dates and times correctly across timezones and DST — store in UTC, convert at the edges, use IANA zones not offsets, and reason about wall-clock vs. instants.
Skill Claude CodeCodex
Add or improve static type annotations (Python hints, TypeScript types, Go/Rust signatures) and verify with the type checker.
Skill Claude CodeCodex
Build reliable webhook senders and receivers — verify signatures, process idempotently, respond fast, and retry with backoff.