AI DevKit

Active
GitHub TypeScript No License

Description

A local-first control plane for AI coding agents. Unifies configuration across Claude Code, Codex CLI, Gemini CLI with local memory and cross-agent communication.

Key Features

  • One config for every agent - same .ai-devkit.json shared across Claude Code, Codex CLI, Gemini CLI, etc.
  • Local memory retrieval - SQLite stores decisions, conventions, fixes, search on demand to avoid context bloat
  • Cross-agent communication - agent send command routes messages between multiple running agents
  • Real-time TUI console - unified dashboard monitoring all local Agent sessions
  • Composable engineering skills - dev-lifecycle, verify, tdd, review, security etc. as modular skills
  • Extensible architecture - add custom skills and middleware via plugin mechanism

Use Cases

💡 Multi-agent collaboration teams use unified config to seamlessly switch between Claude Code, Codex CLI, Gemini CLI.
💡 Individual developers use it to manage multiple AI coding agents, avoiding duplicate configuration across different CLIs.
💡 Enterprise R&D teams build standard Agent workflows based on it, unifying coding standards and security policies.

Quick Start

```bash
# One-click initialization
npx ai-devkit@latest init

# List all running agents
ai-devkit agent list

# Start TUI console
ai-devkit agent console

# Cross-agent messaging
ai-devkit agent send --to codex --prompt "Please review current PR"
```

Related Projects