Example skill
Reusable skills for AI coding agentsFrom the repository description
npx -y skills add fiedlrob/agent-skills --skill example-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 482 tokens by cl100k_base, as published. Nobody here has run it
SKILL
This is the tool-agnostic core for the example skill. Keep reusable workflow
instructions here, and put tool-specific discovery metadata in adapter files
under adapters/.
Name
example-skill
Description
A reference skill that demonstrates the structure, sections, and writing style expected of skills in this repository. Use it as a starting template when authoring a new skill.
When to use
- You are creating a new skill and want a known-good layout to copy.
- You want a concrete example of how the sections in
CONTRIBUTING.mdmap onto a realSKILL.md.
When not to use
- For real agent work. This skill performs no task on its own; it only illustrates structure.
- When an existing skill already covers your task. Improve that skill instead of duplicating it.
Required workflow
- Copy the
skills/example-skill/directory toskills/<your-skill-name>/. - Replace the
NameandDescriptionwith your skill's specifics. - Fill in
When to useandWhen not to usewith concrete trigger rules. - Write the
Required workflowas ordered, concrete steps the agent can follow without guessing. - Update
adapters/codex/SKILL.mdandadapters/claude/SKILL.mdwith the loader metadata and short entrypoint text for those tools. - Add
Safety notesfor any destructive, external, or irreversible action. - Delete
references/orscripts/directories if your skill does not need them. Keep both adapter directories.
Safety notes
- This skill does not run commands, write files, or contact external services.
- When adapting it, mark any step that deletes data, pushes to a remote, or calls an external API, and require confirmation before that step runs.
Optional examples
To scaffold a new skill from this template:
cp -r skills/example-skill skills/my-new-skill
See references/optional-reference.md for a checklist, and
scripts/optional-helper.sh for a small validation helper. The Codex and
Claude adapter examples live under adapters/.
What ships with it: 2 files
2.6 KB alongside SKILL.md, 1 of them executable
references/
scripts/
- optional-helper.shruns1.8 KB