con un clic
claude-config
How agents, skills, and commands work in Claude Code projects.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
How agents, skills, and commands work in Claude Code projects.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
GitHub conventions -- branch naming, commit format, issue/PR templates, and safe issue/PR referencing in comments.
API error response format -- machine-readable codes, human-readable reasons, status code rules.
Language-agnostic code hygiene -- honest comments, no dead/reinvented/duplicated code, truthful names, real implementations, and scoped (never blanket) diagnostic suppressions.
Language-agnostic structural craft -- decompose on responsibility not size, prefer deep modules over shallow piles, and shape cohesion, coupling, interfaces, error contracts, and data invariants. Sibling to code-hygiene and readable-code.
Documentation writing conventions -- style, structure, tone, and quality standards.
CSS design system principles -- token usage, semantic layering, mobile-first, component isolation.
Basado en la clasificación ocupacional SOC
| name | claude-config |
| description | How agents, skills, and commands work in Claude Code projects. |
| when_to_use | Creating or modifying files in .claude/ -- agents, skills, commands, or settings. |
Three distinct configuration types in .claude/. Each has a clear purpose -- never conflate them.
An agent defines who you are. It shapes focus, identity, and constraints for a subagent.
Agents are not workflows. They define a lens for approaching work, not steps to follow. A backend-reviewer says "you care about async correctness and session handling" -- not "Step 1: read the diff."
Good: Role identity, focus areas, evaluation criteria, output format, what to read for context. Bad: Step-by-step procedures, bash scripts, workflow orchestration.
A skill defines what you know. It provides conventions, recommendations, how-tos, and reference material.
Skills are not workflows. They provide knowledge for good decision-making.
A skill MAY include a sequence when it's critical reference -- but as illustrative guidance, not a script to execute.
Good: Conventions, patterns, templates, recommendations, how-tos, reference material. Bad: Rigid step-by-step procedures, orchestration logic, state management.
A command defines what to do. An explicit, purposeful sequence triggered by the user.
/command-name) and expected outputCommands are workflows. They define what to do; skills inform how to do each step well.
Good: Step sequences, action triggers, workflow orchestration, expected outcomes. Bad: General knowledge, conventions, recommendations unrelated to the workflow.
backend-reviewer, issue-plannerlogging-patterns, github-conventionsplan-issue, review-prNaming should be predictable within a category but not forced into a single suffix.
If a file does two of these, split it.
.claude/workspace/ is the conventional path for working documents -- plans, research, scratch files. Skills and commands that need to write intermediate files should use this directory.