Create new Jazz skills for automating workflows. Use when the user asks to create a skill, make a skill, or wants to define custom automation behavior.
Create effective Jazz skills for automating workflows and specialized tasks.
Do not create the skill until you have enough information. If the user's request is vague (e.g. "create a skill", "I want a skill for X") or missing any of the items below, guide them through a short questionnaire instead of guessing.
You have enough info when you know:
~/.jazz/skills/, ~/.agents/skills) or project-specific (./skills/)?How to run the questionnaire:
skill-name/
├── SKILL.md # Required - main instructions
├── reference.md # Optional - detailed documentation
├── examples.md # Optional - usage examples
└── scripts/ # Optional - utility scripts
| Type | Path | Scope |
| -------- | ---------------------------- | ------------------------- |
| Global | ~/.jazz/skills/skill-name/ | Available in all projects |
| Project | ./skills/skill-name/ | Project-specific |
| Built-in | Ships with Jazz | Cannot be modified |
Every skill requires a SKILL.md with YAML frontmatter:
---
name: your-skill-name
description: Brief description of what this skill does and when to use it
---
# Your Skill Name
## Instructions
Clear, step-by-step guidance.
## Examples
Concrete usage examples.
| Field | Requirements | Purpose |
| ------------- | ----------------------------------------------- | ------------------------------------- |
| name | Max 64 chars, lowercase letters/numbers/hyphens | Unique identifier |
| description | Max 1024 chars | Helps Jazz decide when to apply skill |
The description determines when Jazz applies the skill.
Write in third person:
Be specific with trigger terms:
Include WHAT and WHEN:
Context window is shared. Only add information Jazz doesn't already know.
Good:
## Generate report
Use pandas for data analysis:
\`\`\`python
import pandas as pd
df = pd.read_csv("data.csv")
\`\`\`
Bad:
## Generate report
Data analysis is important for understanding patterns.
There are many ways to analyze data, but we recommend...
Use progressive disclosure for detailed content.
Essential info in SKILL.md; details in separate files:
## Additional resources
- For API details, see [reference.md](reference.md)
- For examples, see [examples.md](examples.md)
| Freedom | When | Example | | ----------------- | ------------------------- | ---------------------- | | High (text) | Multiple valid approaches | Code review guidelines | | Medium (template) | Preferred pattern | Report generation | | Low (script) | Consistency critical | Database migrations |
If the skill deals with news, research, or time-sensitive information:
## Report structure
\`\`\`markdown
# [Title]
## Summary
[Overview]
## Findings
- Finding 1
- Finding 2
## Recommendations
1. Action 1
2. Action 2
\`\`\`
## Workflow
- [ ] Step 1: Analyze input
- [ ] Step 2: Process data
- [ ] Step 3: Generate output
- [ ] Step 4: Validate results
**Step 1: Analyze input**
Run: `python scripts/analyze.py input.json`
## Choose workflow
**Creating new?** → Follow "Creation" section
**Editing existing?** → Follow "Edit" section
Gather purpose, location, triggers, requirements, examples. If the user hasn't provided all of these, guide them through questions until you have enough info—then proceed to Phase 2.
scripts\helper.py)helper, utils)Directory:
code-review/
├── SKILL.md
└── standards.md
SKILL.md:
---
name: code-review
description: Review code for quality and security. Use when reviewing PRs or code changes.
---
# Code Review
## Checklist
- [ ] Logic correct, handles edge cases
- [ ] No security vulnerabilities
- [ ] Follows style conventions
- [ ] Tests cover changes
## Feedback Format
- 🔴 **Critical**: Must fix
- 🟡 **Suggestion**: Consider improving
- 🟢 **Nice to have**: Optional
## Details
See [standards.md](standards.md) for coding standards.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer