Skills are packaged expertise your agent loads on demandβproven playbooks for complex tasks instead of winging it every time. Think deep research with multi-source verification, structured code review, meeting notes that follow your format, or PR descriptions that match your conventions.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/lvndry/jazz/llms.txt
Use this file to discover all available pages before exploring further.
What are skills?
A skill is a specialized instruction set that teaches your agent how to handle specific types of work:- Deep research - Multi-source verification, query decomposition, citation tracking
- Code review - Security analysis, best practices, TypeScript patterns
- Email triage - Categorization, prioritization, automated responses
- Documentation - Structured writing, API reference generation, examples
Built-in skills
Jazz ships with 20+ production-ready skills:Development
- code-review - Security analysis, performance checks, best practices
- commit-message - Semantic commit messages following conventions
- pr-description - Generate PR descriptions from git diff
- documentation - Technical writing and API documentation
- boilerplate - Code generation templates
Research & Writing
- deep-research - Multi-source research with verification pipelines
- meeting-notes - Structured meeting summaries
- journal - Daily journaling and reflection
- decision-log - Document important decisions and trade-offs
Productivity
- email - Email triage and response drafting
- calendar - Schedule management and conflict resolution
- todo - Task planning and progress tracking
- digest - Daily news and content summaries
Knowledge Management
- obsidian - Obsidian vault management, note linking, canvas creation
- browser-use - Web automation and data extraction
Domain-Specific
- budget - Financial planning and expense tracking
- investment-analysis - Market research and portfolio analysis
- startup-brainstorm - Idea validation and business planning
- persona - Character and personality development
Using skills
Browse available skills
In any chat session:Automatic activation
Skills activate automatically when you ask relevant questions:Manual activation
Explicitly request a skill:Skill structure
Skills are stored asSKILL.md files:
skills/ directory structure
Example: Deep research skill
The deep-research skill provides a comprehensive research pipeline:Workflow phases
Query decomposition
Breaks complex questions into atomic sub-questions:Source:
skills/deep-research/SKILL.md:46-74Research planning
Creates a structured search strategy:
- Prioritizes sub-questions (critical β high β medium β low)
- Plans parallel vs sequential searches
- Defines source requirements (academic, official, expert, news)
- Sets confidence targets
skills/deep-research/SKILL.md:96-125Parallel search execution
Executes searches efficiently:
- Batches 3-5 independent queries
- Diverse source strategy to avoid echo chambers
- Tracks search budget (aim for 10-20 total searches)
- Records publication dates and source types
skills/deep-research/SKILL.md:133-162Iterative verification
Critical verification phase:
- Is each claim supported by 2+ sources?
- Do sources have different biases?
- Are there credible contradictions?
- Whatβs missing that would change conclusions?
skills/deep-research/SKILL.md:169-200Time awareness
The skill respects temporal constraints:- User specifies βthis yearβ β restricts sources to 2024
- User specifies βrecent studiesβ β prioritizes last 2-3 years
- No time frame given β uses most recent information
skills/deep-research/SKILL.md:19-29
Quality checklist
Before delivering, the skill ensures:- β All sub-questions addressed
- β Every claim has citation
- β Contradictions acknowledged
- β Confidence levels stated
- β Sources are diverse and credible
- β Full sources list included
skills/deep-research/SKILL.md:313-323
Example: Todo skill
The todo skill helps plan and track multi-step work:When to use
Create todos when:- Task has 3+ distinct steps
- Work spans multiple files or systems
- User asks for a plan or breakdown
- Complex debugging or investigation
skills/todo/SKILL.md:11-20
Workflow
Source:skills/todo/SKILL.md:45-65
Installing community skills
Jazz follows the .agents convention, so any compatible skill works:From the ecosystem
Manual installation
Drop a skill in the skills directory:Project-local vs global
- Global skills (
~/.jazz/skills/) - Available to all agents - Project skills (
./skills/) - Available only in current directory
Creating custom skills
Create aSKILL.md file with YAML frontmatter:
Skill frontmatter
| Field | Required | Description |
|---|---|---|
name | Yes | Unique identifier (lowercase, hyphens) |
description | Yes | When and why to use this skill |
Best practices
Skill with reference files
For complex skills, add supporting documentation:skills/deep-research/SKILL.md:622-624
Advanced: Skill composition
Skills can reference other skills:Debugging skills
Check if a skill is loaded
Verify skill location
Test skill activation
Use explicit keywords from the skillβs description:Skill examples in practice
Example 1: Research report
Example 2: Code review
Example 3: Task planning
Next steps
- Workflows - Combine skills with scheduled automation
- MCP integration - Connect skills to external services
- Configuration - Customize skill behavior