Demo skill
A demonstration skill showing the basic structure. Use this as a template when creating new skills.From its SKILL.md
npx -y skills add winghv/newhorse --skill demo-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 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
1.9 KB, 393 tokens by cl100k_base, as published. Nobody here has run it
Demo Skill
This is a demonstration skill that shows the basic structure of a Newhorse skill.
Overview
Skills are modular capabilities that can be added to agents. They define:
- Specific workflows and procedures
- Reference documentation
- Helper scripts for complex operations
When to Use
This skill is triggered when:
- User asks about how to create skills
- User wants to see an example skill structure
- User mentions "demo skill" or "example skill"
Skill Structure
demo-skill/
├── SKILL.md # This file - skill definition
├── scripts/ # Optional: executable scripts
│ └── example.py # Python helper script
└── references/ # Optional: reference docs
└── guide.md # Additional documentation
Usage Example
When a user asks: "Show me how skills work"
The agent should:
- Explain the skill structure
- Reference this SKILL.md as an example
- Point to the scripts/ directory for executable helpers
Creating New Skills
To create a new skill:
- Create a directory under
extensions/skills/ - Add a
SKILL.mdfile with frontmatter (name, description) - Optionally add scripts/ for helper code
- Optionally add references/ for documentation
SKILL.md Template
---
name: your-skill-name
description: Brief description of what this skill does and when to use it
version: 1.0.0
---
# Skill Name
## Overview
What this skill does...
## When to Use
Trigger conditions...
## Workflow
Step-by-step process...
Tips
- Keep SKILL.md under 500 lines
- Put detailed docs in references/
- Use scripts/ for deterministic operations
- Description field is crucial for skill triggering
What ships with it: 2 files
2.7 KB alongside SKILL.md, 1 of them executable
references/
- guide.md1.5 KB
scripts/
- example.pyruns1.2 KB