The original Python-based NXTG-Forge has evolved into three specialized, production-ready projects:
| New Repo | What It Is | Link |
|---|---|---|
| forge-orchestrator | Rust binary that coordinates Claude, Codex, and Gemini as a team. 9 MCP tools, file locking, knowledge flywheel, drift detection. | github.com/nxtg-ai/forge-orchestrator |
| forge-plugin | Drop-in Claude Code plugin. 19 commands, 22 agents, zero config. git clone and go. |
github.com/nxtg-ai/forge-plugin |
| forge-ui | React dashboard, Infinity Terminal, governance HUD, 22 AI agents. | github.com/nxtg-ai/forge-ui |
The original NXTG-Forge was a Python package (pip install nxtg-forge) that added slash commands to Claude Code. The new ecosystem:
- Dropped Python entirely -- The orchestrator is now a 3 MB Rust binary with zero runtime dependencies
- Added multi-AI support -- Not just Claude anymore. Codex CLI and Gemini CLI are first-class citizens
- Built an MCP server -- AI tools query and update orchestration state in real-time via Model Context Protocol
- Added a knowledge flywheel -- Every decision, learning, and pattern is captured and searchable
- Added governance -- Health scores, drift detection, architecture compliance, continuous validation
# Install the new orchestrator
cargo install --git https://github.com/nxtg-ai/forge-orchestrator
# Or just grab the Claude Code plugin
cd your-project
git clone https://github.com/nxtg-ai/forge-plugin.git .claude-forgeThank you to everyone who starred this repo. Your early support helped shape what Forge became.
Please star the new repos to follow along:
This repository is archived and read-only.