82 lines
2.2 KiB
Markdown
82 lines
2.2 KiB
Markdown
# code_work_spawner
|
|
|
|
Repository issue thread assistant with an Agent Orchestrator style YAML config.
|
|
|
|
It consumes issue tracker events for configured GitHub or Gitea repositories,
|
|
reads issue threads, and uses CLI responders such as `codex`, `opencode`, or
|
|
`copilot-cli` to decide when to reply. Polling via `gh` and `tea` is the
|
|
currently bundled event source, with the runtime structured so future
|
|
channel-based sources can plug into the same processing pipeline. It supports
|
|
multi-repo config, responder fallback chains, and optional Discord webhook and
|
|
desktop notifications.
|
|
|
|
## Highlights
|
|
|
|
- Consume GitHub and Gitea issue events across multiple repositories
|
|
- Trigger replies from mentions or meaningful thread updates
|
|
- Run planning and bug-verification flows in isolated worktrees
|
|
- Send optional Discord or desktop notifications for assistant events
|
|
|
|
## Requirements
|
|
|
|
- Dart SDK
|
|
- `gh` and/or `tea` CLI authenticated for the target repositories
|
|
- Local checkouts for configured repositories
|
|
- Optional local responder CLIs such as `codex`, `opencode`, or `copilot-cli`
|
|
|
|
## Config
|
|
|
|
Create a local `agent-orchestrator.yaml` and use
|
|
[`examples/README.md`](examples/README.md) plus
|
|
[`examples/simple-github.yaml`](examples/simple-github.yaml) as the reference.
|
|
|
|
Generate a starter config:
|
|
|
|
```bash
|
|
dart run bin/code_work_spawner.dart init-config
|
|
# Write it to a file:
|
|
dart run bin/code_work_spawner.dart init-config --output agent-orchestrator.yaml
|
|
# Overwrite an existing file:
|
|
dart run bin/code_work_spawner.dart init-config --output agent-orchestrator.yaml --force
|
|
```
|
|
|
|
## Run
|
|
|
|
```bash
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
```
|
|
|
|
Single event-source reconciliation cycle:
|
|
|
|
```bash
|
|
dart run bin/code_work_spawner.dart --once
|
|
```
|
|
|
|
Long-running tracker runtime:
|
|
|
|
```bash
|
|
dart run bin/code_work_spawner.dart
|
|
```
|
|
|
|
Override tracker CLI paths when needed:
|
|
|
|
```bash
|
|
dart run bin/code_work_spawner.dart \
|
|
--config /path/to/agent-orchestrator.yaml \
|
|
--db /path/to/state.sqlite3 \
|
|
--gh-command /usr/bin/gh \
|
|
--tea-command /usr/bin/tea
|
|
```
|
|
|
|
## Testing
|
|
|
|
```bash
|
|
dart run tool/validate_gherkin_test_format.dart
|
|
dart analyze
|
|
dart test
|
|
```
|
|
|
|
## ref
|
|
|
|
[agent-orchestrator](https://github.com/ComposioHQ/agent-orchestrator)
|