Agent Skill
2/7/2026

example-skill

Example skill demonstrating the registry structure and format

S
smith6jt
1GitHub Stars
1Views
npx skills add smith6jt-cop/Skills_Registry

SKILL.md

Nameexample-skill
DescriptionExample skill demonstrating the registry structure and format

name: example-skill description: "Example skill demonstrating the registry structure and format" author: Skills Registry Team date: 2024-12-10

example-skill - Research Notes

Experiment Overview

ItemDetails
Date2024-12-10
GoalCreate an example skill to demonstrate the skills registry format
EnvironmentAny system with Claude Code installed
StatusSuccess

Context

When setting up a skills registry, it helps to have a concrete example showing the expected structure and format. This skill serves as that reference.

Verified Workflow

  1. Copy the template folder:
cp -r templates/experiment-skill-template plugins/training/your-skill-name
  1. Rename the skills subdirectory:
mv plugins/training/your-skill-name/skills/TEMPLATE_NAME \
   plugins/training/your-skill-name/skills/your-skill-name
  1. Update plugin.json with your skill's metadata:
{
  "name": "your-skill-name",
  "version": "1.0.0",
  "description": "Specific triggers: (1) when X, (2) when Y",
  "author": { "name": "Your Name" },
  "skills": "./skills",
  "repository": "https://github.com/smith-cop/Skills_Registry"
}
  1. Fill in SKILL.md with your learnings, especially the Failed Attempts table.

  2. Validate before committing:

python scripts/validate_plugins.py

Failed Attempts (Critical)

AttemptWhy it FailedLesson Learned
Generic descriptionsSkills weren't discoverable by /adviseAlways include specific trigger conditions
Omitting failed attemptsTeammates repeated same mistakesDocument failures even more than successes
Vague parametersResults weren't reproducibleInclude exact, copy-pasteable configs

Final Parameters

The minimum required plugin.json structure:

{
  "name": "skill-name",
  "description": "Trigger conditions...",
  "skills": "./skills"
}

Key Insights

  • The Failed Attempts table is referenced more than any other section
  • Specific trigger conditions in descriptions make /advise more useful
  • Include environment details for reproducibility
  • Keep skills focused - one experiment per skill

References

Skills Info
Original Name:example-skillAuthor:smith6jt