bootstrap_workflow
Initiate and automate workflow execution for development projects, starting from git setup to task delegation, using guided, automated, or hybrid modes.
Instructions
Initializes a new workflow execution with boomerang role, starting from git setup through task creation and delegation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
executionMode | No | Workflow execution mode | GUIDED |
initialRole | No | Initial role to start the workflow with | boomerang |
projectPath | No | Project path for context |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"executionMode": {
"default": "GUIDED",
"description": "Workflow execution mode",
"enum": [
"GUIDED",
"AUTOMATED",
"HYBRID"
],
"type": "string"
},
"initialRole": {
"default": "boomerang",
"description": "Initial role to start the workflow with",
"enum": [
"boomerang",
"researcher",
"architect",
"senior-developer",
"code-review"
],
"type": "string"
},
"projectPath": {
"description": "Project path for context",
"type": "string"
}
},
"type": "object"
}