diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-02-08 21:35:45 -1000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-02-08 21:35:45 -1000 |
| commit | 2e2b2187b957e9af78797a67ec5c6874615fae02 (patch) | |
| tree | 1181dbb7e43f5d30cb025fa4d50fd4e7a2c893b3 /test/fixtures | |
Initial project: task model, executor, API server, CLI, storage, reporter
Claudomator automation toolkit for Claude Code with:
- Task model with YAML parsing, validation, state machine (49 tests, 0 races)
- SQLite storage for tasks and executions
- Executor pool with bounded concurrency, timeout, cancellation
- REST API + WebSocket for mobile PWA integration
- Webhook/multi-notifier system
- CLI: init, run, serve, list, status commands
- Console, JSON, HTML reporters with cost tracking
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'test/fixtures')
| -rw-r--r-- | test/fixtures/tasks/batch-tasks.yaml | 27 | ||||
| -rw-r--r-- | test/fixtures/tasks/simple-task.yaml | 11 |
2 files changed, 38 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"] diff --git a/test/fixtures/tasks/simple-task.yaml b/test/fixtures/tasks/simple-task.yaml new file mode 100644 index 0000000..d49b066 --- /dev/null +++ b/test/fixtures/tasks/simple-task.yaml @@ -0,0 +1,11 @@ +name: "Hello World" +description: "A simple test task" +claude: + model: "sonnet" + instructions: | + Say hello and list the files in the current directory. + working_dir: "/tmp" +timeout: "5m" +tags: + - "test" + - "simple" |
