Workflow commands let you automate recurring tasks with AI agents.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.
jazz workflow list
List all available workflows.- Local workflows: Project-specific workflows in
./workflows/ - Global workflows: User workflows in
~/.jazz/workflows/ - Built-in workflows: Workflows that ship with Jazz
- Name and description
- Schedule (if configured)
- Agent assignment
- Scheduling status (scheduled, running, not scheduled)
jazz workflow show
View detailed information about a workflow.Workflow name to display
- Full workflow configuration (YAML frontmatter)
- Workflow instructions (Markdown content)
- File location
- Schedule description (if configured)
jazz workflow run
Run a workflow immediately.Workflow name to run
Automatically approve tool executions based on workflow’s auto-approve policy
Agent ID or name to use for this run (overrides workflow configuration)
Internal flag indicating this run was triggered by the scheduler
Examples
jazz workflow schedule
Enable scheduled execution for a workflow.Workflow name to schedule
- macOS: Creates a
launchdplist in~/Library/LaunchAgents/ - Linux: Creates a
cronentry
schedule field (cron expression).
The workflow must have a
schedule field in its YAML frontmatter.Example
jazz workflow unschedule
Disable scheduled execution for a workflow.Workflow name to unschedule
jazz workflow scheduled
List all workflows that are currently scheduled.- Workflow name
- Cron schedule
- Human-readable schedule description
- Next scheduled run time
jazz workflow catchup
Run workflows that missed their scheduled execution.- Identifies workflows that should have run while your machine was off
- Lets you select which ones to run now
- Executes them with their configured auto-approve policy
Jazz can automatically run catch-up workflows on startup if
catchUpOnStartup: true is set in the workflow configuration.jazz workflow history
View workflow execution history.Optional workflow name to filter history
- Workflow name
- Start and end times
- Status (success, failed, running)
- Agent used
- Trigger (manual, scheduled, catch-up)
Examples
Built-in workflows
Jazz ships with several ready-to-use workflows:email-cleanup
email-cleanup
Schedule: HourlyArchives newsletters, organizes promotional emails, and flags important messages.
tech-digest
tech-digest
Schedule: Daily at 9 AMScans AI/tech news sources and compiles a personalized digest.
weather-briefing
weather-briefing
Schedule: Every morning at 7 AMProvides weather forecast and outfit recommendations.
market-analysis
market-analysis
Schedule: DailyStock and crypto analysis with buy/sell signals.
Tips
Next steps
Workflow guide
Learn how to create custom workflows
Workflow structure
YAML frontmatter and configuration reference