Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion .github/workflows/test-dispatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,27 @@ safe-outputs:
# Test Dispatcher Workflow

This workflow demonstrates the dispatch-workflow safe output capability.
The agent can trigger the test-workflow using the test_workflow tool.

**Your task**: Call the `dispatch_workflow` tool to trigger the `test-workflow` workflow.

**Important**: You MUST use the safe output tool - do NOT write to files or attempt other methods.

## Instructions

1. **Call the safe output tool**: Use `dispatch_workflow` to trigger the test-workflow
2. **Workflow name**: Specify `test-workflow` as the workflow to dispatch
3. **Inputs (optional)**: You can provide test parameters if needed, but they are optional

## Example

The agent should call the `dispatch_workflow` tool like this:

```json
{
"type": "dispatch_workflow",
"workflow_name": "test-workflow",
"inputs": {
"test_param": "example value"
}
}
```
Loading