How to Create a Custom Template from Scratch
1
Create Template Directory
Create a new directory for your template with the required structure:
2
Create TEMPLATE.yaml
Create the main template configuration file:
3
Create agents.yaml
Define your agents and their tasks:
4
Test Your Template Locally
Run your template to verify it works:
How to Create a Template with CLI
1
Initialize Template
2
Edit Generated Files
3
Validate Template
4
Run Template
Template File Structure
TEMPLATE.yaml Schema
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Template name |
version | string | Yes | Semantic version |
description | string | No | Template description |
author | string | No | Author name |
variables | object | No | Input variables |
requires.tools | array | No | Required tools |
requires.packages | array | No | Required packages |
requires.tools_sources | array | No | Tool source modules |

