← ClaudeAtlas

core-nxtg-forgelisted

Ground truth for the NXTG-Forge platform — the real forge CLI subcommands, the /forge:* slash commands, the .forge/state.json + events.jsonl model, both MCP servers (Rust orchestrator + Node governance), the agent roster, and the security hooks. Use when working inside or on NXTG-Forge (the forge-plugin, forge-orchestrator, or forge-ui repos), when a user asks "what does forge <x> do", how state/checkpoints/drift work, which MCP tool to call, which agent to invoke, or when a task references `forge init/plan/run/status`, `/forge:...`, `.forge/`, governance health, or the two forge MCP servers.
nxtg-ai/forge-plugin · ★ 5 · AI & Automation · score 76
Install: claude install-skill nxtg-ai/forge-plugin
# NXTG-Forge — Platform Ground Truth NXTG-Forge is a governance-native AI development system with three independent repos wired only through MCP (no shared code). This skill is the authoritative map; verify against source before asserting behavior, because earlier docs invented CLI that never shipped (see Gotchas). | Repo | What it is | Integration | |------|-----------|-------------| | `forge-orchestrator` | Rust binary `forge` (CLI + stdio MCP server, ~4 MB) | orchestrator-mcp (Rust) | | `forge-plugin` | Pure-markdown Claude Code plugin — commands, agents, skills, hooks + a Node MCP server | governance-mcp (Node) | | `forge-ui` | Vite 7 + React 19 dashboard on :5050 | spawned by `/forge:dashboard` | ## The `forge` CLI (forge-orchestrator binary) These are the ONLY real subcommands (source: `forge-orchestrator/src/main.rs`, `src/cli/`): ```bash forge init [name] # Initialize .forge/, detect AI tools on PATH, write state.json forge plan # Generate task plan from SPEC.md forge status [--events]# Task board / project state (zero-context-friendly recovery view) forge run # Execute planned tasks autonomously forge start # Interactive/guided run forge verify # Run verification gate forge uat [finding] # Record/inspect UAT findings forge sync # Sync state with disk (task files ↔ state.json) forge mcp # Start the stdio MCP server (JSON-RPC 2.0). No subcommands. forge dashboard # Launch the TUI