What this is. The exhaustive field-by-field specification of the Biorouter workflow file format: every field's type and requirement, the parameter input types, template support, validation rules, and a complete worked example in both YAML and JSON. Status: Current — this is the authoritative schema document. Where the workflows index summarizes the same fields, this page wins. Audience: end users authoring workflow files by hand, and anyone automating against the format.
Workflows are reusable Biorouter configurations that package up instructions and settings so the setup can be easily shared and launched by others. This page specifies the file format. If you want the task-oriented walkthrough instead — creating a workflow from a session, running it, sharing it — read Creating and sharing workflows.
- Workflow file format
- Workflow location
- Core workflow schema
- Field specifications — activities, extensions, parameters, response, retry, settings, subworkflows
- Desktop metadata fields
- Template support
- Validation rules
- Complete workflow example
- Error handling
Workflows can be defined in:
.yaml(recommended) and.ymlfiles.jsonfiles
Note.
.ymlfiles aren't supported by the Biorouter CLI — they work in Desktop only.
See Creating and sharing workflows to learn how to create, use, and manage workflows.
Workflows can be loaded from:
-
Local filesystem:
- Current directory
- Directories specified in the
BIOROUTER_WORKFLOW_PATHenvironment variable
-
GitHub repositories:
- Configure using the
BIOROUTER_WORKFLOW_GITHUB_REPOconfiguration key - Requires GitHub CLI (
gh) to be installed and authenticated
- Configure using the
Workflow storage and discovery documents the full search order that biorouter workflow list uses, including the global and project-local libraries.
Workflows follow this schema structure:
| Field | Type | Required | Description |
|---|---|---|---|
description |
String | Yes | A detailed description of what the workflow does |
instructions |
String | Yes* | Template instructions that can include parameter substitutions |
prompt |
String | Yes* | A template prompt that can include parameter substitutions. Required in headless (non-interactive) mode. |
title |
String | Yes | A short title describing the workflow |
activities |
Array | No | List of example prompts that can include parameter substitutions. Activities appear as clickable bubbles in Biorouter Desktop. |
extensions |
Array | No | List of extension configurations |
parameters |
Array | No | List of parameter definitions for dynamic workflows |
response |
Object | No | Structured output schema for automation workflows |
retry |
Object | No | Configuration for automated retry logic with success validation |
settings |
Object | No | Configuration for model provider, model name, and other settings |
sub_workflows |
Array | No | List of subworkflows |
version |
String | No | The workflow format version, defaults to "1.0.0" if omitted |
*At least one of instructions or prompt must be provided.
The activities field defines an optional message and clickable activity bubbles (buttons) that appear when a workflow is opened in Biorouter Desktop.
Note. Activities are a Desktop-only feature. When workflows with activities are run via the CLI or as a scheduled job, the
activitiesfield is ignored and has no effect on workflow execution.
Activities can be defined in two ways:
-
Message activity: Displays the markdown-formatted activity text in an info box above the activity bubbles. For example:
activities: - "message: **Welcome!** Here's what I can help with:\n\n• 📊 Data analysis\n• 🔍 Code review\n• 📝 Documentation\n\nSelect an option below to begin."
Only include one
message:prefixed activity. Additionalmessage:prefixed activities become regular clickable bubbles (and display the literal "message:" text). -
Button activities: Text to display in activity bubbles, which send the activity text as a prompt when clicked
Activities support parameter substitution, allowing you to create dynamic, personalized activity bubbles. After users provide parameter values in the Workflow Parameters dialog, the values are substituted into the activity text before the bubbles are displayed.
The same workflow is shown twice — first in YAML, then the equivalent JSON.
YAML:
version: "1.0.0"
title: "Code Review Assistant"
description: "Review code with customizable focus areas"
parameters:
- key: language
input_type: string
requirement: required
description: "Programming language to review"
- key: focus
input_type: string
requirement: optional
default: "best practices"
description: "Review focus area"
activities:
- "message: Click an option below to start reviewing {{ language }} code with a focus on {{ focus }}."
- "Review the current file for {{ focus }}"
- "Suggest improvements for {{ language }} code quality"
- "Check for security vulnerabilities"
- "Generate unit tests"JSON:
{
"version": "1.0.0",
"title": "Code Review Assistant",
"description": "Review code with customizable focus areas",
"parameters": [
{
"key": "language",
"input_type": "string",
"requirement": "required",
"description": "Programming language to review"
},
{
"key": "focus",
"input_type": "string",
"requirement": "optional",
"default": "best practices",
"description": "Review focus area"
}
],
"activities": [
"message: Click an option below to start reviewing {{ language }} code with a focus on {{ focus }}.",
"Review the current file for {{ focus }}",
"Suggest improvements for {{ language }} code quality",
"Check for security vulnerabilities",
"Generate unit tests"
]
}In this example:
- The message activity displays instructions with substituted parameter values, for example: "Click an option below to start reviewing rust code with a focus on best practices."
- The first two activity bubbles use parameter substitution, for example: "Review the current file for best practices"
- The last two activity bubbles are static prompts that work regardless of parameters
The extensions field allows you to specify which Model Context Protocol (MCP) servers and other extensions the workflow needs to function. Each extension in the extensions array has the following schema:
| Field | Type | Description |
|---|---|---|
type |
String | Type of extension (e.g., "stdio") |
name |
String | Unique name for the extension |
cmd |
String | Command to run the extension |
args |
Array | List of arguments for the command |
env_keys |
Array | (Optional) Names of environment variables required by the extension |
timeout |
Number | Timeout in seconds |
bundled |
Boolean | (Optional) Whether the extension is bundled with Biorouter |
description |
String | Description of what the extension does |
available_tools |
Array | List of tool names within the extension that will be available. When not specified all will be available |
stdio: Standard I/O client with command and argumentsbuiltin: Built-in extension that is part of the bundled Biorouter MCP serverplatform: Platform extensions that run in the agent processstreamable_http: Streamable HTTP client with URI endpointfrontend: Frontend-provided tools called through the frontendinline_python: Inline Python code executed using uvx. Requirescodefield; optionaldependenciesfor packages.
The same extension list is shown twice — first in YAML, then the equivalent JSON.
YAML:
extensions:
- type: stdio
name: codesearch
cmd: uvx
args:
- mcp_codesearch@latest
timeout: 300
bundled: true
description: "Query your code search service directly from biorouter"
- type: stdio
name: presidio
timeout: 300
cmd: uvx
args:
- 'mcp_presidio@latest'
available_tools:
- query_logs
- type: stdio
name: github-mcp
cmd: github-mcp-server
args: []
env_keys:
- GITHUB_PERSONAL_ACCESS_TOKEN
timeout: 60
description: "GitHub MCP extension for repository operations"
- type: inline_python
name: data_processor
code: |
import pandas as pd
print("Processing data...")
dependencies:
- pandas
- numpy
timeout: 120
description: "Process data using pandas"JSON:
{
"extensions": [
{
"type": "stdio",
"name": "codesearch",
"cmd": "uvx",
"args": ["mcp_codesearch@latest"],
"timeout": 300,
"bundled": true,
"description": "Query your code search service directly from biorouter"
},
{
"type": "stdio",
"name": "presidio",
"timeout": 300,
"cmd": "uvx",
"args": ["mcp_presidio@latest"],
"available_tools": ["query_logs"]
},
{
"type": "stdio",
"name": "github-mcp",
"cmd": "github-mcp-server",
"args": [],
"env_keys": ["GITHUB_PERSONAL_ACCESS_TOKEN"],
"timeout": 60,
"description": "GitHub MCP extension for repository operations"
},
{
"type": "inline_python",
"name": "data_processor",
"code": "import pandas as pd\nprint(\"Processing data...\")",
"dependencies": ["pandas", "numpy"],
"timeout": 120,
"description": "Process data using pandas"
}
]
}This feature is only available through the CLI.
If a workflow uses an extension that requires a secret, Biorouter can prompt users to provide the secret when running the workflow:
- When a workflow is loaded, Biorouter scans all extensions (including those in subworkflows) for
env_keysfields - If any required environment variables are missing from the secure keyring, Biorouter prompts the user to enter them
- Values are stored securely in the system keyring and reused for subsequent runs
To update a stored secret, remove it from the system keyring and run the workflow again to be re-prompted.
Note. This feature is designed to prompt for and securely store secrets (such as API keys), but
env_keyscan include any environment variable needed by the extension (such as API endpoints, configuration values, etc.).
Users can press ESC to skip entering a variable if it's optional for the extension.
The parameters field allows you to create dynamic, reusable workflows that can be customized for different contexts. Parameters define placeholders that users fill in when running the workflow, making the workflow more flexible and adaptable.
Parameter substitution uses Jinja-style template syntax with {{ parameter_name }} placeholders. Each parameter in the parameters array has the following schema:
| Field | Type | Required | Description |
|---|---|---|---|
key |
String | Yes | Unique identifier for the parameter |
input_type |
String | Yes | Type of input: "string" (default), "number", "boolean", "date", "file", or "select" |
requirement |
String | Yes | One of: "required", "optional", or "user_prompt" |
description |
String | Yes | Human-readable description of the parameter |
default |
String | No | Default value for optional parameters |
options |
Array | No | List of available choices (required for select input type) |
required: Parameter must be provided when using the workflowoptional: Can be omitted if a default value is specifieduser_prompt: Will interactively prompt the user for input if not provided
The required and optional parameters work best for workflows opened in Biorouter Desktop. If a value isn't provided for a user_prompt parameter, the parameter won't be substituted and may appear as literal {{ parameter_name }} text in the workflow output.
string: Default type. The parameter value is used as-is in template substitutionnumber: Numeric values. Desktop UI provides number input validationboolean: True/false values. Desktop UI shows dropdown with "True"/"False" optionsdate: Date values. Currently renders as text inputfile: The parameter value should be a file path. Biorouter reads the file contents and substitutes the actual content (not the path) into the templateselect: Dropdown selection with predefined options. Requiresoptionsfield
Example:
parameters:
- key: max_files
input_type: number
requirement: optional
default: "10"
description: "Maximum files to process"
- key: output_format
input_type: select
requirement: required
description: "Choose output format"
options:
- json
- markdown
- csv
- key: enable_debug
input_type: boolean
requirement: optional
default: "false"
description: "Enable debug mode"
- key: source_code
input_type: file
requirement: required
description: "Path to the source code file to analyze"
prompt: "Process {{ max_files }} files in {{ output_format }} format. Debug: {{ enable_debug }}. Code:\n\n{{ source_code }}"Warning. Parameter rules enforced at load time:
- Optional parameters MUST have a default value specified
- Required parameters cannot have default values
- File parameters cannot have default values regardless of requirement type, to prevent unintended importing of sensitive files
- Select parameters MUST have an
optionsfield with available choices- Parameter keys must match any template variables used in instructions, prompt, or activities
When a workflow with parameters is opened in Biorouter Desktop, users are presented with a Workflow Parameters dialog where they can:
- Provide values for required parameters
- Modify or accept default values for optional parameters
- Enter values for
user_promptparameters
Once parameter values are submitted, they are substituted into the workflow's instructions, prompt, and activities fields before the workflow starts.
The response field enables workflows to enforce a final structured JSON output. When you specify a json_schema, Biorouter will:
- Validate the output: Validates the output JSON against your JSON schema with basic JSON schema validations
- Final structured output: Ensure the final output of the agent is a response matching your JSON structure
This feature is designed for non-interactive automation to ensure consistent, parseable output. Workflows can produce structured output when run from either the Biorouter CLI or Biorouter Desktop. See use cases and ideas for automation workflows.
| Field | Type | Required | Description |
|---|---|---|---|
json_schema |
Object | Yes | JSON schema for output validation |
response:
json_schema:
type: object
properties:
# Define your fields here, with their type and description
required:
# List required field namesversion: "1.0.0"
title: "Task Summary"
description: "Summarize completed tasks"
prompt: "Summarize the tasks you completed"
response:
json_schema:
type: object
properties:
summary:
type: string
description: "Brief summary of work done"
tasks_completed:
type: number
description: "Number of tasks finished"
next_steps:
type: array
items:
type: string
description: "Recommended next actions"
required:
- summary
- tasks_completedThe retry field enables workflows to automatically retry execution if success criteria are not met. This is useful for workflows that might need multiple attempts to achieve their goal, or for implementing automated validation and recovery workflows.
| Field | Type | Required | Description |
|---|---|---|---|
max_retries |
Number | Yes | Maximum number of retry attempts |
checks |
Array | Yes | List of success check configurations |
timeout_seconds |
Number | No | Timeout for success check commands (default: 300 seconds) |
on_failure_timeout_seconds |
Number | No | Timeout for on_failure commands (default: 600 seconds) |
on_failure |
String | No | Shell command to run when a retry attempt fails |
Each success check in the checks array has the following schema:
| Field | Type | Required | Description |
|---|---|---|---|
type |
String | Yes | Type of check - currently only "shell" is supported |
command |
String | Yes | Shell command to execute for validation (must exit with code 0 for success) |
- Workflow execution: The workflow runs normally with the provided instructions
- Success validation: After completion, all success checks are executed in order
- Retry decision: If any success check fails and retry attempts remain:
- Execute the on_failure command (if configured)
- Reset the agent's message history to initial state
- Increment retry counter and restart execution
- Completion: Process stops when either:
- All success checks pass (success)
- Maximum retry attempts are reached (failure)
version: "1.0.0"
title: "Counter Increment Task"
description: "Increment a counter until it reaches target value"
prompt: "Increment the counter value in /tmp/counter.txt by 1."
retry:
max_retries: 5
timeout_seconds: 10
checks:
- type: shell
command: "test $(cat /tmp/counter.txt 2>/dev/null || echo 0) -ge 3"
on_failure: "echo 'Counter is at:' $(cat /tmp/counter.txt 2>/dev/null || echo 0) '(need 3 to succeed)'"version: "1.0.0"
title: "Service Health Check"
description: "Start service and verify it's running properly"
prompt: "Start the web service and verify it responds to health checks"
retry:
max_retries: 3
timeout_seconds: 30
on_failure_timeout_seconds: 60
checks:
- type: shell
command: "curl -f http://localhost:8080/health"
- type: shell
command: "pgrep -f 'web-service' > /dev/null"
on_failure: "systemctl stop web-service || killall web-service"You can configure retry behavior globally using environment variables:
BIOROUTER_WORKFLOW_RETRY_TIMEOUT_SECONDS: Global timeout for success check commandsBIOROUTER_WORKFLOW_ON_FAILURE_TIMEOUT_SECONDS: Global timeout for on_failure commands
These environment variables are overridden by workflow-specific timeout configurations.
The settings field allows you to configure the AI model and provider settings for the workflow. This overrides the default configuration when the workflow is executed.
| Field | Type | Required | Description |
|---|---|---|---|
biorouter_provider |
String | No | The AI provider to use (e.g., "anthropic", "openai") |
biorouter_model |
String | No | The specific model name to use |
temperature |
Number | No | The temperature setting for the model (typically 0.0-1.0) |
settings:
biorouter_provider: "anthropic"
biorouter_model: "claude-sonnet-4-20250514"
temperature: 0.7settings:
biorouter_provider: "openai"
biorouter_model: "gpt-4o"
temperature: 0.3Note. Settings specified in a workflow will override your default Biorouter configuration when that workflow is executed. If no settings are specified, Biorouter will use your configured defaults.
The sub_workflows field specifies the subworkflows that the main workflow calls to perform specific tasks. Each subworkflow in the sub_workflows array has the following schema:
| Field | Type | Required | Description |
|---|---|---|---|
name |
String | Yes | Unique identifier for the subworkflow |
path |
String | Yes | Relative or absolute path to the subworkflow file |
values |
Object | No | Pre-configured parameter values that are passed to the subworkflow |
sequential_when_repeated |
Boolean | No | Forces sequential execution of multiple subworkflow instances. Set it to false to allow multiple instances to run in parallel |
description |
String | No | Optional description of the subworkflow |
sub_workflows:
- name: "security_scan"
path: "./subworkflows/security-analysis.yaml"
values: # in key-value format: {parameter_name}: {parameter_value}
scan_level: "comprehensive"
include_dependencies: "true"
- name: "quality_check"
path: "./subworkflows/quality-analysis.yaml"
description: "Performs code quality analysis"Workflows saved from Biorouter Desktop include additional metadata fields. These fields are used by the Desktop app for organization and management but are ignored by CLI operations.
| Field | Type | Required | Description |
|---|---|---|---|
workflow |
Object | Yes | Contains all workflow fields (title, description, instructions, etc.) |
name |
String | Yes | Display name used in Workflow Library |
isGlobal |
Boolean | Yes | Whether the workflow is available globally or locally to a project |
lastModified |
String | Yes | ISO timestamp of when the workflow was last modified |
isArchived |
Boolean | Yes | Whether the workflow is archived in the Desktop interface |
The plain format the CLI reads and writes — workflow fields at the top level.
YAML:
version: "1.0.0"
title: "Code Review Assistant"
description: "Automated code review with best practices"
instructions: "You are a code reviewer..."
prompt: "Review the code in this repository"
extensions: []JSON:
{
"version": "1.0.0",
"title": "Code Review Assistant",
"description": "Automated code review with best practices",
"instructions": "You are a code reviewer...",
"prompt": "Review the code in this repository",
"extensions": []
}The same workflow as saved by Desktop — the CLI fields nested under workflow, wrapped in the metadata fields above.
YAML:
name: "Code Review Assistant"
workflow:
version: "1.0.0"
title: "Code Review Assistant"
description: "Automated code review with best practices"
instructions: "You are a code reviewer..."
prompt: "Review the code in this repository"
extensions: []
isGlobal: true
lastModified: 2025-07-02T03:46:46.778Z
isArchived: falseJSON:
{
"name": "Code Review Assistant",
"workflow": {
"version": "1.0.0",
"title": "Code Review Assistant",
"description": "Automated code review with best practices",
"instructions": "You are a code reviewer...",
"prompt": "Review the code in this repository",
"extensions": []
},
"isGlobal": true,
"lastModified": "2025-07-02T03:46:46.778Z",
"isArchived": false
}Workflows support Jinja-style template syntax in instructions, prompt, and activities fields for parameter substitution:
instructions: "Follow these steps with {{ parameter_name }}"
prompt: "Your task is to {{ action }}"
activities:
- "Process {{ parameter_name }} with {{ action }}"Advanced template features include:
- Template inheritance using
{% extends "parent.yaml" %} - Blocks that can be defined and overridden:
{% block content %} Default content {% endblock %}
- The
indent()template filter
Use {% extends "parent.yaml" %} for template inheritance:
Parent workflow (parent.yaml):
version: "1.0.0"
title: "Parent Workflow"
description: "Base workflow template"
prompt: |
{% block prompt %}
Default prompt text
{% endblock %}Child workflow:
{% extends "parent.yaml" %}
{% block prompt %}
Modified prompt text
{% endblock %}Use the indent() filter to ensure multi-line parameter values are properly indented and can be resolved as valid JSON or YAML format. This example uses {{ raw_data | indent(2) }} to specify an indentation of two spaces when passing data to a subworkflow:
sub_workflows:
- name: "analyze"
path: "./analyze.yaml"
values:
content: |
{{ raw_data | indent(2) }}Built-in template parameters are automatically supported and don't need to be defined in the parameters array.
| Parameter | Description |
|---|---|
workflow_dir |
Automatically set to the directory containing the workflow file. Use it to reference companion files, for example: {{ workflow_dir }}/style-guide.md |
Validation rules from crates/biorouter/src/workflow/validate_workflow.rs (source on GitHub) are enforced when loading workflows and used by the biorouter workflow validate subcommand:
validate_prompt_or_instructions- At least one ofinstructionsorpromptmust be presentvalidate_json_schema- JSON response schema must be valid ifresponse.json_schemais specified
validate_parameters_in_template- All template variables must have corresponding parameter definitions, and all defined parameters must be used (no unused parameters)validate_optional_parameters- Optional parameters must have default valuesvalidate_optional_parameters- File parameters cannot have default values to prevent importing sensitive files
Note. Basic field requirements (required fields, types, character limits) are documented in the core workflow schema table.
One workflow exercising most of the schema at once, shown in YAML and then the equivalent JSON. Reading top to bottom, it demonstrates:
- All four non-default parameter kinds —
string(required_param),numberwith a default (file_count),selectwithoptions(output_format), andfile(config_file) - Template substitution of those parameters in
instructions - A
stdioextension declaration settingsoverriding the provider, model, and temperatureretrywith one shell check and anon_failurecleanup commandresponse.json_schemaenforcing a structured final output
YAML:
version: "1.0.0"
title: "Example Workflow"
description: "A sample workflow demonstrating the format"
instructions: "Process {{ file_count }} files using {{ required_param }} and output in {{ output_format }} format. Configuration: {{ config_file }}"
prompt: "Start processing with the provided parameters"
parameters:
- key: required_param
input_type: string
requirement: required
description: "A required text parameter"
- key: file_count
input_type: number
requirement: optional
default: 10
description: "Maximum number of files to process"
- key: output_format
input_type: select
requirement: required
description: "Choose the output format"
options:
- json
- markdown
- csv
- key: config_file
input_type: file
requirement: required
description: "Path to configuration file"
extensions:
- type: stdio
name: codesearch
cmd: uvx
args:
- mcp_codesearch@latest
timeout: 300
bundled: true
description: "Query codesearch directly from biorouter"
settings:
biorouter_provider: "anthropic"
biorouter_model: "claude-sonnet-4-20250514"
temperature: 0.7
retry:
max_retries: 3
timeout_seconds: 30
checks:
- type: shell
command: "echo 'Task validation check passed'"
on_failure: "echo 'Retry attempt failed, cleaning up...'"
response:
json_schema:
type: object
properties:
result:
type: string
description: "The main result of the task"
details:
type: array
items:
type: string
description: "Additional details of steps taken"
required:
- result
- detailsJSON:
{
"version": "1.0.0",
"title": "Example Workflow",
"description": "A sample workflow demonstrating the format",
"instructions": "Process {{ file_count }} files using {{ required_param }} and output in {{ output_format }} format. Configuration: {{ config_file }}",
"prompt": "Start processing with the provided parameters",
"parameters": [
{
"key": "required_param",
"input_type": "string",
"requirement": "required",
"description": "A required text parameter"
},
{
"key": "file_count",
"input_type": "number",
"requirement": "optional",
"default": "10",
"description": "Maximum number of files to process"
},
{
"key": "output_format",
"input_type": "select",
"requirement": "required",
"description": "Choose the output format",
"options": ["json", "markdown", "csv"]
},
{
"key": "config_file",
"input_type": "file",
"requirement": "required",
"description": "Path to configuration file"
}
],
"extensions": [
{
"type": "stdio",
"name": "codesearch",
"cmd": "uvx",
"args": ["mcp_codesearch@latest"],
"timeout": 300,
"bundled": true,
"description": "Query codesearch directly from biorouter"
}
],
"settings": {
"biorouter_provider": "anthropic",
"biorouter_model": "claude-sonnet-4-20250514",
"temperature": 0.7
},
"retry": {
"max_retries": 3,
"timeout_seconds": 30,
"checks": [
{
"type": "shell",
"command": "echo 'Task validation check passed'"
}
],
"on_failure": "echo 'Retry attempt failed, cleaning up...'"
},
"response": {
"json_schema": {
"type": "object",
"properties": {
"result": {
"type": "string",
"description": "The main result of the task"
},
"details": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional details of steps taken"
}
},
"required": ["result", "details"]
}
}
}Common errors to watch for:
- Missing required parameters
- Optional parameters without default values
- Template variables without parameter definitions
- Invalid YAML/JSON syntax
- Missing required fields
- Invalid extension configurations
- Invalid retry configuration (missing required fields, invalid shell commands)
When these occur, Biorouter will provide helpful error messages indicating what needs to be fixed.
- Invalid success checks: Shell commands that cannot be executed or have syntax errors
- Timeout errors: Success checks or on_failure commands that exceed their timeout limits
- Max retries exceeded: When all retry attempts are exhausted without success
- Missing required retry fields: When
max_retriesorchecksare not specified
- Workflows — the short orientation to this format, plus an index of the rest of this folder.
- Creating and sharing workflows — the task walkthrough for producing, running, and sharing files that follow this schema.
- Subworkflows — worked examples of the
sub_workflowsfield specified above. - Workflow storage and discovery — where these files live and how Biorouter finds them.
- biorouter CLI command reference —
biorouter workflow validate, which enforces the validation rules above.