Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Orchestrates BMAD, Superpowers, Sudocode, Context7, security-guidance, and agency-agents into a composable skill-based development workflow with conditional LSP support for Rust and TypeScript.
npx claudepluginhub romaindecoster/ironforge --plugin ironforgeRuns the BMAD analysis phases to produce structured project artefacts: brief, PRD, and architecture. Activates the appropriate BMAD agent for each phase. Each phase requires explicit user validation before the next begins. Produces files consumed by /ironforge:bmad-to-sudocode.
Converts existing BMAD artefacts (brief, PRD, architecture) into Sudocode specs and issues. Invocable standalone on projects that already have BMAD docs. Checks which files exist, maps each to Sudocode, and generates a dependency graph between issues.
Ironforge full pipeline orchestrator. Chains all skills in order for a new project or feature: start → bmad-analyze → bmad-to-sudocode → implement → review. Use this for projects with no existing artefacts. For projects with partial artefacts, invoke individual skills directly.
Subagent that queries the Graphify knowledge graph and returns a ≤300-token structured summary. Called by BMAD agents (bmad-analyze, implement, full-workflow) before each phase. Never call MCP graph tools directly in the main session — always go through this subagent.
Initialize Graphify on an existing project. Builds the code knowledge graph, configures the Claude Code integration, installs git hooks for incremental rebuild, and adds graphify-out/ to .gitignore. Only useful for existing projects — greenfield projects have no ROI.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Language-agnostic development process harness implementing the Stateless Agent Methodology (SAM) 7-stage pipeline with ARL human touchpoint model and Voltron-style language plugin composition. Provides orchestration, workflows, planning, verification, and testing methodology that any language plugin can compose with.
PROJECT.md-first autonomous development with hybrid auto-fix documentation. 8-agent pipeline, auto-orchestration, docs auto-update on commit (true vibe coding). Knowledge base system with 90% faster repeat research. Strict mode enforces SDLC best practices automatically. Works for ANY Python/JavaScript/TypeScript/Go project.
Full-cycle project development - brainstorm ideas, create specifications, plan architecture, initialize projects, and execute implementation with integrated workflows from superpowers and spec-kit
Universal Claude Code workflow with specialized agents, skills, hooks, and output styles for any software project. Includes orchestrator, code-reviewer, debugger, docs-writer, security-auditor, refactorer, and test-architect agents.
Essential development commands for coding, debugging, testing, optimization, and documentation
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
A Claude Code plugin that orchestrates six development tools and conditional LSPs into a composable, skill-based development workflow.
Ironforge installs and coordinates the following tools:
| Tool | Role |
|---|---|
| BMAD | Specialized agents: @bmad-agent-analyst, @bmad-agent-pm, @bmad-agent-sm, @bmad-agent-dev, @bmad-brainstorming |
| Superpowers | TDD enforcement, brainstorming discipline, sub-agents |
| Sudocode | Git-native persistent memory: specs, issues, statuses (.sudocode/) |
| Context7 | Up-to-date, version-specific library documentation injected into prompts |
| security-guidance | Security prevention hook during code writing (automatic) |
| agency-agents | 144 specialized agents for review, QA, architecture, and more |
| LSP | Activated when |
|---|---|
| rust-analyzer | Cargo.toml detected |
| TypeScript LSP | package.json or tsconfig.json detected |
One command installs Ironforge and all dependencies:
bash <(curl -sSL https://raw.githubusercontent.com/RomainDECOSTER/ironforge/main/install.sh)
This automatically:
~/.claude/agents/After installation, verify everything is configured:
/ironforge:setup
Ironforge supports three modes. Start with /ironforge:start — it reads the project context, proposes the right mode, and tells you what to invoke next.
| Mode | When | Entry point |
|---|---|---|
| FAST | Bug fix, small change (< 1h) | Superpowers /quick-spec |
| FEATURE | New feature, new component (1h–1 day) | /ironforge:start |
| FULL | New module, major refactor (1 day+) | /ironforge:start |
Skills are composable — invoke any skill independently when artefacts already exist.
| Command | Description |
|---|---|
/ironforge:start | Reads project context, proposes mode and entry point, waits for confirmation |
/ironforge:bmad-analyze | Runs BMAD phases (brief → PRD → architecture) with human gates at each step |
/ironforge:bmad-to-sudocode | Converts existing BMAD docs into Sudocode specs and issues |
/ironforge:implement [issue-id] | TDD implementation of Sudocode issues (RED → GREEN → REFACTOR → COMMIT) |
/ironforge:review | Code review (@engineering-code-reviewer) + QA sign-off (@testing-reality-checker) |
/ironforge:full-workflow <task> | Orchestrator: chains all skills for a project with no existing artefacts |
/ironforge:setup | Verify and install all dependencies |
Starting fresh:
/ironforge:start Build a JWT authentication system
Already have BMAD docs, need Sudocode issues:
/ironforge:bmad-to-sudocode
Resuming implementation on a specific issue:
/ironforge:implement i-0042
Ready to merge:
/ironforge:review
Ironforge ships a parallel copilot/ subtree for GitHub Copilot CLI. The same nine skills are
available with prose-based agent delegation instead of @agent-name shorthand.
Install:
bash <(curl -sSL https://raw.githubusercontent.com/RomainDECOSTER/ironforge/main/install-copilot.sh)
This installs Ironforge (copilot/ subtree), BMAD Method, and agency-agents automatically.
The following dependencies require a separate manual install via copilot plugin install or
their respective CLI install commands:
After installation, verify everything is configured:
/ironforge:setup
Limitations:
@agent shorthandmcp__graphify__<tool_name>) may need verification against
your Copilot MCP configurationgraphify install writes its hook to the Claude Code settings.json path; verify it is
registered in your Copilot settings after running /ironforge:graph-initStandardized paths expected by all Ironforge skills:
docs/
briefs/ → docs/briefs/brief.md
prd/ → docs/prd/prd.md
arch/ → docs/arch/architecture.md
.sudocode/ → specs and issues (FEATURE and FULL modes)
Context7 activates automatically whenever a library or framework is detected during design or implementation. It injects current, version-specific documentation into the prompt.
Manual trigger:
use context7
security-guidance runs as a PreToolUse hook before every Edit or Write operation. It warns about command injection, XSS, SQL injection, and other OWASP vulnerabilities. Fully automatic.