helderberto/agent-skills

My personal SDLC toolbelt for AI coding agents — PRD to ship.

13Stars on the repository
50Mods indexed here, across every type
11d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

a11y-audit

01

helderberto/agent-skills

Skill Claude CodeCodex

Audit accessibility compliance in frontend code. Use when user asks to "check accessibility", "/a11y-audit", "audit a11y", "check WCAG", or wants to find accessibility issues. Don't use for backend code, non-UI files, or projects without HTML/JSX output.

13 11d ago A 67 tokens original MIT

architecture-audit

02

helderberto/agent-skills

Skill Claude CodeCodex

Explore a codebase to surface architectural friction and propose refactors toward deep modules (simple interface, large implementation) as GitHub issue RFCs. Use when the user asks to audit architecture, find structural friction, or identify refactor opportunities across a codebase. Don't use for single-module…

13 11d ago A 83 tokens original MIT

code-review

03

helderberto/agent-skills

Skill Claude CodeCodex

Review a GitHub Pull Request for bugs, security, performance, and code quality. Use when user asks to review a PR or wants pull request feedback. Don't use for reviewing local uncommitted changes, creating new PRs, or merging branches.

13 11d ago A 53 tokens original MIT

code-simplify

04

helderberto/agent-skills

Skill Claude CodeCodex

Simplify working code without changing behavior — reduce complexity, remove dead abstractions, favor clarity over cleverness. Use when code works but is harder to read or maintain than it should be, or the user asks to "simplify", "clean up", "reduce complexity", or "make this clearer". Don't use to add features or…

13 11d ago A 106 tokens original MIT

codebase-design

05

helderberto/agent-skills

Skill Claude CodeCodex

Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.

13 11d ago A 57 tokens copy · 84% MIT

commit

06

helderberto/agent-skills

Skill Claude CodeCodex

Group unstaged changes into atomic commits by concern, following repository style. Use when user asks to "commit", "create a commit", "commit changes", or "/commit". Don't use for pushing (that belongs to /ship) or creating pull requests.

13 11d ago A 53 tokens original MIT

create-adr

07

helderberto/agent-skills

Skill Claude CodeCodex

Record an Architecture Decision Record (ADR) — a 1–3 sentence note capturing what was decided and why. Use when user says "create an ADR", "record this decision", "/create-adr", or just decided something architecturally significant. Don't use for forward-looking specs (use /spec) or general repo conventions (use…

13 11d ago A 77 tokens original MIT

create-pull-request

08

helderberto/agent-skills

Skill Claude CodeCodex

Create a GitHub pull request — fills the repo's PR template, conventional-commit title, ticket refs. Draft mode via --draft.

13 11d ago A 34 tokens original MIT

create-skill

09

helderberto/agent-skills

Skill Claude CodeCodex

Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill, or asks "make a skill for X". Don't use for benchmarking or optimizing a skill's triggering with evals (use skill-creator), or for one-off prose edits to an existing…

13 11d ago A 73 tokens original MIT

deps-audit

10

helderberto/agent-skills

Skill Claude CodeCodex

Check dependencies for known vulnerabilities and staleness. Use when user asks to "audit dependencies", "/deps-audit", "check for vulnerabilities", or wants to check dependency health. Don't use for reviewing code quality.

13 11d ago A 47 tokens original MIT

diagnose

11

helderberto/agent-skills

Skill Claude CodeCodex

Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.

13 11d ago A 66 tokens copy · 80% MIT

domain-modeling

12

helderberto/agent-skills

Skill Claude CodeCodex

Actively build and sharpen a project's domain model — challenge terms, pin down a ubiquitous language, and write the glossary and decisions down as they crystallize. Use when the user wants to define domain terminology, resolve ambiguous terms, or when another skill needs the shared vocabulary. Don't use for recording…

13 11d ago A 84 tokens original MIT

e2e

13

helderberto/agent-skills

Skill Claude CodeCodex

Write end-to-end tests for user flows using Cypress. Use when user asks to "write e2e tests", "/e2e", "add Cypress tests", or wants to test a user flow end-to-end. Don't use for unit tests, component tests, or projects using Playwright, Puppeteer, or other non-Cypress frameworks.

13 11d ago A 73 tokens original MIT

explain-code

14

helderberto/agent-skills

Skill Claude CodeCodex

Explains code with visual diagrams and analogies. Use when explaining how code works, walking through a codebase area, or when the user asks "how does this work?" Don't use for modifying code, fixing bugs, generating new implementations, or multi-session concept learning (use /teach).

13 11d ago A 62 tokens original MIT

fortify

15

helderberto/agent-skills

Skill Claude CodeCodex

Fortify existing code by splitting large functions, adding edge-case coverage, and backfilling unit tests. Use when user asks to "fortify", "harden", "bulletproof", "make robust", "make solid", "strengthen", "add missing tests", "split functions", or wants to improve reliability of existing code. Don't use for new…

13 11d ago A 93 tokens original MIT

helderberto/agent-skills

Skill Claude CodeCodex

Front-load UI construction decisions — component boundary and prop API, where state lives, data/async, the required UI states (loading/empty/error), responsive behavior, and accessibility by construction. Use when creating or refactoring a component, page, or design-system primitive. Don't use for pure logic (tdd)…

13 11d ago A 102 tokens original MIT

grill-me

17

helderberto/agent-skills

Skill Claude CodeCodex

A relentless interview to sharpen a plan or design. Use when the user wants to stress-test a plan, pressure-test assumptions, or says "grill me" or "poke holes in this". Don't use for code review (use /code-review) or gathering initial requirements (use /spec).

13 11d ago A 63 tokens original MIT

handoff

18

helderberto/agent-skills

Skill Claude CodeCodex

Compact the current conversation into a handoff document for another agent to pick up. Use when the user wants to hand off, transfer context to a fresh session, or says "write a handoff". Don't use to summarize for the current session (just answer) or to brief on plan progress (use /test).

13 11d ago A 66 tokens original MIT

harden

19

helderberto/agent-skills

Skill Claude CodeCodex

Harden code proactively against vulnerabilities at the boundary where untrusted input enters the system. Use when implementing auth, handling user input, storing or transmitting sensitive data, integrating external APIs, adding file uploads, or any code that crosses a trust boundary. Don't use for reactive secret…

13 11d ago A 77 tokens original MIT

i18n

20

helderberto/agent-skills

Skill Claude CodeCodex

Audit internationalization coverage and find hardcoded strings. Use when user asks to "check i18n", "/i18n", "find hardcoded strings", "check translations", or wants to verify translation coverage. Don't use for backend string extraction, non-frontend code, or projects without an i18n library.

13 11d ago A 68 tokens original MIT

lint

21

helderberto/agent-skills

Skill Claude CodeCodex

Run linting and formatting checks. Use when user asks to "run linter", "/lint", "check linting", "fix lint errors", or requests code linting/formatting. Don't use for running tests or type-checking only.

13 11d ago A 52 tokens original MIT

perf-audit

22

helderberto/agent-skills

Skill Claude CodeCodex

Audit frontend bundle size and performance. Use when user asks to "audit performance", "/perf-audit", "analyze bundle", "check bundle size", or wants to find performance bottlenecks. Don't use for backend performance, database query optimization, or projects without a frontend build step.

13 11d ago A 62 tokens original MIT

plan

23

helderberto/agent-skills

Skill Claude CodeCodex

Turn a spec into a multi-phase implementation plan using tracer-bullet vertical slices. Use after /spec when a spec exists at .specs/specs/ .md, or when the user asks to break work into phases or slices. Don't use without a spec, or for single-file changes with obvious scope.

13 11d ago A 65 tokens original MIT

prose-fix

24

helderberto/agent-skills

Skill Claude CodeCodex

Fix prose formatting, typos, and clarity issues in markdown or text files. Use when user asks to "fix dashes", "fix typos", "clean up text", "improve sentences", or "/prose-fix". Don't use for code style, linting, or full rewrites.

13 11d ago A 67 tokens original MIT