Local-first workspace for open-source maintainers and coding agents.
AgentBoard CE helps developers and open-source maintainers manage local projects, command templates, coding agent prompts, issue triage, pull request review, release notes, and documentation workflows from one dashboard.
Open-source maintainers juggle multiple tools daily — terminal, issue trackers, code review, release notes, documentation. AgentBoard CE brings these workflows together in a single local-first application:
- Local-First: All data stored in SQLite on your machine. No cloud services, no external API keys required, no telemetry.
- Developer-Focused: Clean UI with dark mode, keyboard-friendly navigation, and responsive design.
- Agent-Ready: Pre-configured profiles for popular coding agents like Codex, Claude, and Cursor.
- Workflow Automation: Streamline issue triage, PR reviews, and release note generation.
- Overview of all projects, commands, agents, and drafts
- Quick actions for common tasks
- Recent activity feed
- Manage local projects and repositories
- Track tech stack, package managers, and commands
- Git integration for branch and status information
- Quick access to start, test, and build commands
- Local branch and working tree status (clean/dirty)
- Remote origin URL display
- Modified, staged, and untracked file lists
- Recent commits overview with hash, message, author, and date
- Copy Git Summary for AI coding tools (Codex, Claude, Cursor)
- Refresh Git Status on demand
- Reusable command templates for common tasks
- Categories: dev, build, test, deploy, git, custom
- Dangerous command detection and confirmation
- Command output history
- Run commands with real-time output streaming
- Project-aware command execution
- Output history and copy support
- Pre-configured profiles for popular coding agents
- Specialized prompts for different tasks (bug fixing, code review, security, docs, etc.)
- Support for Codex, Claude, Cursor, and more
- Copy prompts for direct use
- Structured issue draft creation
- Automatic categorization and priority assignment
- Suggested labels and maintainer replies
- Copy as Markdown
- Structured review checklist
- Risk assessment and required changes
- Suggested approval/request-changes comments
- Copy as Markdown
- Generate structured release notes following Keep a Changelog format
- Support for breaking changes and migration guides
- Export as Markdown
- Built-in documentation and getting started guides
- Theme customization (light/dark/system)
- Language selection (English, Simplified Chinese, Russian)
- Default project configuration
- Command runner preferences
- Data export/import
All screenshots use demo data only. No real projects, paths, or credentials are shown.
Overview of all projects, commands, agents, and recent drafts at a glance.
Manage local projects and repositories with tech stack, commands, and git status.
View project details, run commands, and check git status for a specific project.
Run commands with real-time output streaming in the terminal workspace.
Pre-configured profiles for coding agents like Codex, Claude, and Cursor.
Create structured issue drafts with categorization, priority, and suggested replies.
Generate review drafts with risk assessment and suggested comments.
Generate structured release notes following the Keep a Changelog format.
Theme, language, project defaults, and data management.
- Node.js 18+
- npm, yarn, or pnpm
# Clone the repository
git clone https://github.com/YOUR_USERNAME/agentboard-ce.git
cd agentboard-ce
# Install dependencies
npm install
# Set up the database
npx prisma migrate dev
# Seed with sample data
npm run seed
# Start the development server
npm run devOpen http://localhost:3000 in your browser.
npm run lint # Run ESLint
npm run build # Build for production
npm run start # Start production server
npx prisma studio # Open Prisma Studio (database GUI)- Framework: Next.js 15 with App Router
- Language: TypeScript
- Database: SQLite with Prisma ORM
- Styling: Tailwind CSS
- UI Components: Custom components with shadcn/ui patterns
- Icons: Lucide React
- Forms: React Hook Form with Zod validation
- Git Integration: simple-git
- Notifications: Sonner
- i18n: next-intl
AgentBoard CE supports multiple languages:
| Language | Code | Status |
|---|---|---|
| English | en |
Default |
| Simplified Chinese | zh-CN |
Supported |
| Russian | ru |
Supported |
- The default language is English on first launch, regardless of browser locale.
- Language preference is persisted in
localStorageand a cookie. - Switch language from the globe icon in the header or from Settings > Language.
- All UI strings, form labels, placeholders, toast messages, and documentation are fully translated.
- Create
messages/<locale>.jsonfollowing the structure ofmessages/en.json. - Add the locale to
src/i18n/config.ts(localesarray andlocaleNamesmap). - Add a toast message to
src/components/language-selector.tsx. - Submit a PR!
AgentBoard CE is designed with privacy in mind:
- No telemetry: Zero data collection or tracking.
- No cloud sync: All data stays on your machine.
- No API keys required: The current MVP works entirely offline.
- Local SQLite database: Your data is stored in a local file (
prisma/dev.db). - No user accounts: No authentication, no sessions, no accounts.
- Open source: Inspect every line of code.
agentboard-ce/
├── src/
│ ├── app/ # Next.js App Router pages
│ │ ├── api/ # API routes
│ │ ├── dashboard/ # Dashboard page
│ │ ├── projects/ # Project management
│ │ ├── commands/ # Command templates
│ │ ├── terminal/ # Terminal workspace
│ │ ├── agents/ # Agent profiles
│ │ ├── issues/ # Issue triage
│ │ ├── pr-reviews/ # PR review
│ │ ├── release-notes/# Release notes
│ │ ├── docs/ # Documentation
│ │ └── settings/ # Settings
│ ├── components/ # React components
│ ├── i18n/ # Internationalization config
│ └── lib/ # Utility functions
├── messages/ # Translation files (en, zh-CN, ru)
├── prisma/
│ ├── schema.prisma # Database schema
│ └── seed.ts # Seed data
├── docs/ # Documentation files
└── screenshots/ # App screenshots
| Version | Focus |
|---|---|
| v0.1.0 | Local MVP and open-source release |
| v0.2.0 | Git status and local repository insights |
| v0.3.0 | GitHub Issues and Pull Requests integration |
| v0.4.0 | Codex/OpenAI maintainer workflows |
| v0.5.0 | Desktop packaging with Tauri or Electron |
| v1.0.0 | Stable local-first maintainer workspace |
See docs/roadmap.md for details.
Future versions will integrate with AI coding agents for:
- Automated issue triage and categorization
- AI-assisted PR review with risk assessment
- Test failure analysis and suggestions
- Release notes generation from git history
- Documentation update suggestions
- Code quality checks and refactoring plans
See docs/codex-workflows.md for details.
We welcome contributions! Please see:
For security concerns, please see SECURITY.md.
This project is licensed under the MIT License. See LICENSE for details.
AgentBoard CE — Your local-first workspace for open-source maintenance.








