blob: e1c97b73b29ba88408dab6c09a19f15fc4fb3bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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"]
|