diff options
Diffstat (limited to 'test/fixtures/tasks/batch-tasks.yaml')
| -rw-r--r-- | test/fixtures/tasks/batch-tasks.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/fixtures/tasks/batch-tasks.yaml b/test/fixtures/tasks/batch-tasks.yaml new file mode 100644 index 0000000..e1c97b7 --- /dev/null +++ b/test/fixtures/tasks/batch-tasks.yaml @@ -0,0 +1,27 @@ +tasks: + - name: "Lint Check" + claude: + model: "sonnet" + instructions: "Run the linter and report any issues." + working_dir: "/tmp" + timeout: "10m" + priority: "high" + tags: ["ci", "lint"] + + - name: "Unit Tests" + claude: + model: "sonnet" + instructions: "Run the test suite and summarize results." + working_dir: "/tmp" + timeout: "15m" + tags: ["ci", "test"] + + - name: "Security Audit" + claude: + model: "opus" + instructions: "Review the codebase for security vulnerabilities." + working_dir: "/tmp" + max_budget_usd: 5.00 + timeout: "30m" + priority: "low" + tags: ["security"] |
