con un clic
skill-authoring
Author, activate, and manage reusable instruction sets called skills.
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ú
Author, activate, and manage reusable instruction sets called skills.
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.
Basado en la clasificación ocupacional SOC
| name | skill-authoring |
| description | Author, activate, and manage reusable instruction sets called skills. |
| allowed_tools | skill-activate skill-list skill-read bash |
This skill teaches you how to author, activate, and manage skills.
A skill is a directory containing a SKILL.md file (and optional supporting files)
that describes a specialized workflow. Skills live under /home/user/skills/{name}/.
Once activated, a skill's index entry appears in every turn's context, and its SKILL.md
body is injected as a system message when a task specifies "skill": "{name}".
Every skill must have a SKILL.md with valid YAML frontmatter:
---
name: skill-name # Required. Must match the directory name exactly.
description: One sentence describing what this skill does.
allowed_tools: tool1 tool2 # Optional. Space-delimited tool names.
compatibility: agent/1.0 # Optional. Version compatibility string.
---
See references/format-reference.md for the full schema.
skill-activate {name} — activate a skill from /home/user/skills/{name}/SKILL.mdskill-list — list active skills (name, status, activations, last used, description)skill-list --status retired — show retired skills onlyskill-list --verbose — include allowed_tools, compatibility, content_hashskill-read {name} — view SKILL.md content with status and telemetry header/home/user/skills/{name}/SKILL.md with valid frontmatterreferences/, scripts/)skill-activate {name} to make it activeskill-list and skill-read {name}name in frontmatter must match the directory name exactlydescription is requiredCall skill-activate {name} again. The skill transitions from retired → active.