brunel-agent
v0.2.0
Published
**Brunel** orchestrates a team of Claude coding agents to work on GitHub issues and file pull requests:
Downloads
35
Readme
Brunel orchestrates a team of Claude coding agents to work on GitHub issues and file pull requests:
- Tag an issue
brunel:ready, and it will be assigned to an agent - Agents automatically respond to test failures, code reviews, and any comments you leave on the PR
- Agents run in your terminal, and use any skills you have installed
Quickstart
- Install the Brunel GitHub App on your repo: github.com/apps/brunel-foreman
- Install the Brunel client locally:
npm install -g brunel-agent - Put an Anthropic key/token in your env:
export ANTHROPIC_API_KEY=sk-ant-...orexport CLAUDE_CODE_OAUTH_TOKEN=sk-ant-... - Run
brunel worker:startin your repo - Tag issues
brunel:readyin GitHub
Go to brunel.dev and find your repo in the dashboard to see the status of tasks and workers.
Configuration
Optional: create a brunel.config.ts file in your repo, e.g.:
export default {
model: "sonnet",
effort: "high",
permissionMode: "acceptEdits",
verbose: false,
thinkOutLoud: true,
};