Loading...
Loading...
Meta-skill for creating complex skill packages with scripts, data, and multi-file structures
npx skill4agent add nemori-ai/agent_skills skill-creatorRule: Scripts should accept output path parameters, letting callers specify output locations. Skill directories only store code.For detailed guidelines:skills_read(path="skills/skill-creator/docs/script-guidelines.md")
skill-name/
├── SKILL.md # Entry guide (required)
├── scripts/ # Executable scripts
│ ├── main.py
│ └── pyproject.toml (dependency config)
├── data/ # Templates and data files
└── docs/ # Detailed documentation (optional)skills_read(path="skills/skill-creator/docs/quick-start.md")skills_read(path="skills/skill-creator/docs/skillmd-template.md")skills_read(path="skills/skill-creator/docs/script-guidelines.md")skills_read(path="skills/skill-creator/docs/iteration-and-cleanup.md")skills_read(path="skills/skill-creator/docs/full-example.md")| Tool | Purpose | Example |
|---|---|---|
| List all skills | View available skills |
| List files in skill | Check file structure |
| Read skill documentation | Learn skill usage |
| Create skill skeleton | Create new skill |
| Add/overwrite file | Add script |
| Execute skill command | Test script |
| Execute shell command | Delete/rename file |
# 1. Create skill skeleton
skills_create(
name="hello-world",
description="Example skill",
instructions="# Hello World\n\nRun `skills_run(name=\"hello-world\", command=\"python scripts/hello.py\")`"
)
# 2. Add script
skills_write(
path="skills/hello-world/scripts/hello.py",
content='print("Hello, World!")'
)
# 3. Test
skills_run(name="hello-world", command="python scripts/hello.py")