-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.example.json
More file actions
23 lines (23 loc) · 961 Bytes
/
queue.example.json
File metadata and controls
23 lines (23 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[
{
"id": "example-001",
"title": "Write unit tests for user service",
"repo": ".",
"prompt": "Read src/services/user.ts. Write comprehensive unit tests in src/services/user.test.ts. Cover: create, update, delete, validation errors, edge cases. Use the existing test framework (check package.json). Run the tests and fix any failures. Commit your work.",
"authority": "auto_safe",
"max_turns": 20,
"status": "pending",
"created_at": "2026-03-09T00:00:00Z"
},
{
"id": "example-002",
"title": "Document the API endpoints",
"repo": ".",
"prompt": "Read all files in src/routes/. Create docs/api.md documenting every endpoint: method, path, request body, response body, auth requirements. Use markdown tables. Commit your work.",
"authority": "auto_safe",
"max_turns": 15,
"blocked_by": ["example-001"],
"status": "pending",
"created_at": "2026-03-09T00:01:00Z"
}
]