Agent Forge: Open Source Tool Scaffolds Multi-Agent Pipelines for Claude Code

What Agent Forge Does
Agent Forge is an open source Claude Code skill that generates complete multi-agent pipeline scaffolding from a use case description. The tool was created after analyzing existing multi-agent systems and identifying a common pattern: prompt files for each agent, shell scripts for orchestration, and filesystem-based communication via JSON files.
Key Features and Output
When you describe what you want to automate, Agent Forge asks a few questions and generates:
CLAUDE.md- shared context that every agent reads automatically- Prompt files for each agent with role, inputs, outputs, and error handling
- Orchestrator script with sequential and parallel execution support
- Data flow directories for inter-agent communication
- GitHub Actions config for scheduled runs
- README with architecture diagram
The generated pipeline runs with bash scripts/run-pipeline.sh. The tool works for content pipelines, code review automation, research workflows, data processing, competitive intelligence, and other use cases.
Installation and Usage
Install for personal use across all projects:
git clone https://github.com/luckybajaj22031996/agent-forge.git ~/.claude/skills/agent-forgeOr upload the ZIP file in Claude.ai Settings > Customize > Skills.
To use it, simply say "I want to build a multi-agent pipeline that does X" and the skill kicks in.
Project Details
The tool is MIT licensed and available on GitHub at https://github.com/luckybajaj22031996/agent-forge. The creator welcomes feedback and pull requests.
📖 Read the full source: r/ClaudeAI
👀 See Also

Vektori's Memory Architecture: Principles from Claude's Leaked System
Vektori implements a three-layer hierarchical sentence graph for AI memory, inspired by leaked principles from Claude's architecture. The system uses strict quality filters, skeptical retrieval with a 0.3 minimum score, and maintains correction history across sessions.

osu-mcp: An MCP Server That Lets Claude Analyze Your osu! Stats in Plain English
osu-mcp is an MCP server for the osu! API v2, now on the official MCP Registry. It exposes 12 tools for player profiles, score history, beatmap search, rankings, and more. A demo showed Claude computing pp-per-play efficiency across player accounts to reveal that volume, not accuracy, was the bottleneck.

Claude-IDE-Bridge Now Works on Remote Servers for AI-Assisted Development
The Claude-IDE-Bridge tool now connects Claude AI to remote development environments on VPS or cloud machines, allowing access to live diagnostics, open files, and test failures from any device.

Pilot: A Browser Automation Tool Built Entirely with Claude Code
A non-developer used Claude Code to build Pilot, a Chrome automation tool that lets AI control browsers via accessibility tree navigation. The tool assigns numbers to clickable elements so Claude can issue commands like 'click 5' instead of guessing screen positions.