Getting Started
Welcome to CodeFactory — the autonomous PR babysitter that watches your repositories, triages review feedback, and dispatches AI agents to fix code.
Prerequisites
- Node.js 22+ — Download
- Git — installed and configured
- GitHub Personal Access Token — with
reposcope (create one)
Installation
Clone the repository and install dependencies:
git clone https://github.com/yungookim/codefactory.git
cd codefactory
npm install
Quick Start
1. Start the development server
npm run dev
This launches the dashboard at http://localhost:5001.
2. Connect a GitHub repository
- Open the dashboard in your browser.
- Click Add Repository and paste the URL of a GitHub repository you manage.
- Enter your GitHub Personal Access Token when prompted.
3. Watch CodeFactory work
Once connected, CodeFactory will:
- Monitor open pull requests in real time.
- Sync review comments and change requests.
- Triage feedback into actionable tasks.
- Dispatch AI agents (Claude Code or OpenAI Codex) to fix issues.
- Push the fixes back to the PR branch.
Desktop App
CodeFactory is also available as a native desktop application powered by Tauri:
npm run tauri:dev # Development
npm run tauri:build # Production build
Next Steps
- PR Babysitter — Learn how autonomous PR monitoring works.
- Agent Dispatch — Understand how AI agents are dispatched to fix code.
- Configuration — Customize CodeFactory for your workflow.