@tmustier/pi-skill-creator
Detailed guidance for creating Agent Skills (Pi-compatible Agent Skills format).
Package details
Install @tmustier/pi-skill-creator from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@tmustier/pi-skill-creator- Package
@tmustier/pi-skill-creator- Version
0.3.4- Published
- Jul 16, 2026
- Downloads
- 445/mo · 58/wk
- Author
- tmustier
- License
- MIT
- Types
- skill
- Size
- 17.4 KB
- Dependencies
- 0 dependencies · 0 peers
Pi manifest JSON
{
"skills": [
"SKILL.md"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
Agent Skill Creator
Guidelines and templates for creating Agent Skills that follow the Agent Skills format and can be loaded by Pi and other compatible agent clients.
Installation
pi install npm:@tmustier/pi-skill-creator
Validator script
scripts/validate_skill.py uses a PEP 723 uv run --script shebang so PyYAML is provisioned in an ephemeral environment — no system-wide Python packages required.
Prerequisite: install uv (e.g. brew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh), then:
scripts/validate_skill.py /path/to/my-skill
# or, equivalently:
uv run scripts/validate_skill.py /path/to/my-skill
README.md is optional for ordinary Agent Skill validation. For a publishable human-facing package, require a README with an Installation section explicitly:
scripts/validate_skill.py --require-readme /path/to/my-skill