AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP unreviewed MIT Self-run

Forge

mcp-belchman-forge · by belchman

Agent orchestration for Claude Code — intelligent routing, pattern learning, memory, and team coordination

No reviews yet
0 installs
43 views
0.0% view→install

Install

$ agentstack add mcp-belchman-forge

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Destructive filesystem operation.

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Forge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

FlowForge

[](https://github.com/belchman/flow-forge/actions/workflows/ci.yml) [](LICENSE)

Agent orchestration for Claude Code. FlowForge adds intelligent routing, pattern learning, memory, safety guardrails, and team coordination to your Claude Code sessions through hooks, an MCP server, and 60 built-in agents.

Features

  • Agent routing — routes tasks to the best agent using pattern matching, capability scoring, and learned weights; routing weights update on every tool call (active learning), not just session end
  • Pattern learning — records what works and improves routing over time via short-term/long-term pattern promotion; patterns promote instantly within the same turn when effectiveness is confirmed
  • Trajectory learning — records complete tool-use sequences per session, judges outcomes, distills successful paths into reusable strategies
  • Semantic memory — SQLite + HNSW vector search with real semantic embeddings (AllMiniLM-L6-v2 via fastembed), DBSCAN topic clustering, per-cluster P95 dedup thresholds, and cluster-aware decay; routing vectors created instantly for similarity-based generalization
  • Guidance control plane — configurable safety gates on all tool uses with trust scoring, SHA-256 audit chain, and automatic rule enforcement
  • Work tracking — tracks tasks, epics, and bugs with a full audit trail; native Kanbus crate integration (no CLI shelling), Beads JSONL reads, and Claude Tasks dual-write; work-stealing redistributes stale/abandoned tasks automatically
  • Conversation storage — ingests Claude Code JSONL transcripts into SQLite for querying past sessions
  • Checkpoints & forks — named snapshots at any point in a conversation; fork a session to branch reasoning
  • Co-agent mailbox — peer agents on the same work item exchange messages, auto-injected into context
  • Plugin SDK — extend FlowForge with custom tools, hooks, and agents via TOML manifests (no recompilation)
  • 13 Claude Code hooks — session lifecycle, guidance gates, trajectory recording, prompt routing, edit tracking, work-stealing heartbeats, team monitoring
  • 53 MCP tools — memory, learning, agents, sessions, conversations, checkpoints, forks, mailbox, team, work tracking, guidance, plugins, trajectories, clustering
  • 60 built-in agents — specialized agents for coding, architecture, security, testing, DevOps, documentation, consensus, and more
  • tmux team monitor — real-time dashboard for multi-agent coordination

Quick Start

git clone https://github.com/belchman/flow-forge.git
cd flow-forge
./setup.sh

This builds FlowForge and installs the flowforge binary to ~/.cargo/bin/. Then initialize it in your project:

cd /path/to/your/project
flowforge init --project

Start a new Claude Code session to activate hooks.

Manual Install

cargo install --path crates/flowforge-cli
cd /path/to/your/project
flowforge init --project

Prerequisites

  • Rust toolchain (1.88+)

Usage

# See all available agents
flowforge agent list

# Route a task to the best agent
flowforge route "fix the authentication bug"

# Store and recall knowledge
flowforge memory set auth_pattern "JWT with refresh tokens"
flowforge memory search "auth"

# Track work items
flowforge work create --type task --title "Fix login flow"
flowforge work status
flowforge work claim 
flowforge work stealable

# Guidance control plane
flowforge guidance rules
flowforge guidance trust
flowforge guidance audit
flowforge guidance verify

# Conversation history and checkpoints
flowforge session history
flowforge session checkpoint "before-refactor"
flowforge session fork --checkpoint "before-refactor"

# Co-agent mailbox
flowforge mailbox send --work-item  --from agent-a "found the bug"
flowforge mailbox read

# Trajectory learning
flowforge learn stats
flowforge learn trajectories
flowforge learn trajectory 

# Semantic embeddings
flowforge learn download-model   # Pre-download the embedding model
flowforge learn clusters          # View topic clusters

# Plugin management
flowforge plugin list
flowforge plugin info 

# Start the tmux team monitor
flowforge tmux start

# Test hooks with realistic Claude Code payloads
flowforge test-hooks

# Show overall status
flowforge status

Architecture

flowforge (single binary, ~7.5 MB)
├── flowforge-cli      CLI commands + 13 hook handlers
├── flowforge-core     Config, types, hook I/O, guidance engine, plugin loader, work tracking
├── flowforge-memory   SQLite DB, HNSW vectors, semantic embeddings, DBSCAN clustering, pattern learning, trajectory judge
├── flowforge-agents   60 built-in agents, registry, router (+ plugin agents)
├── flowforge-mcp      MCP server (53 tools over JSON-RPC 2.0)
└── flowforge-tmux     tmux team monitor

Hooks

FlowForge wires into all 13 Claude Code hook events:

| Event | What FlowForge Does | |-------|---------------------| | SessionStart | Creates session record, initializes trust score, starts trajectory recording, syncs work items | | SessionEnd | Closes trajectory, runs judgment + distillation, ingests transcript, consolidates patterns | | UserPromptSubmit | Routes to best agent, sets trajectory task description, injects context + mailbox messages, records routing outcomes immediately, creates routing vectors for instant generalization, lazy embedder loading, trivial prompt gate | | PreToolUse | Runs 5 guidance gates on ALL tools, executes plugin hooks, updates work heartbeats, blocks dangerous commands, failure escalation (ASK at 2 failures, DENY at 3+) | | PostToolUse | Records trajectory step (success), tracks file edits, injection follow-through tracking (rates routing/test/file-dep/pattern injections as followed or ignored), active learning routing weight updates | | PostToolUseFailure | Records trajectory step (failure) with error context, records error patterns, active learning routing weight penalties | | PreCompact | Injects guidance before context compaction | | SubagentStart | Updates monitor, stores transcript path, assigns work to agent | | SubagentStop | Ingests agent transcript, extracts patterns from output | | TeammateIdle | Detects stale work items, marks them stealable, updates monitor | | TaskCompleted | Maps Claude task to work item by title, releases work claims, links trajectory, updates routing weights | | Stop | Ends active session | | Notification | Logs to audit trail |

MCP Tools

When Claude connects to the FlowForge MCP server, 53 tools become available:

| Category | Tools | |----------|-------| | Memory | memory_get, memory_set, memory_delete, memory_list, memory_search, memory_import | | Learning | learning_store, learning_search, learning_feedback, learning_stats, learning_clusters | | Agents | agents_list, agents_info, agents_route | | Sessions | session_status, session_history, session_metrics, session_agents | | Conversations | conversation_history, conversation_search, conversation_ingest | | Checkpoints | checkpoint_create, checkpoint_list, checkpoint_get | | Forks | session_fork, session_forks, session_lineage | | Mailbox | mailbox_send, mailbox_read, mailbox_history, mailbox_agents | | Team | team_status, team_log | | Work | work_create, work_list, work_update, work_log, work_close, work_sync, work_load, work_claim, work_release, work_steal, work_heartbeat | | Guidance | guidance_rules, guidance_trust, guidance_audit, guidance_verify | | Plugins | plugin_list, plugin_info | | Trajectories | trajectory_list, trajectory_get, trajectory_judge |

Guidance Control Plane

The guidance engine evaluates every tool use against 5 configurable gates:

  1. Destructive ops — blocks rm -rf /, DROP TABLE, git reset --hard, fork bombs, etc.
  2. Secrets detection — denies tool inputs containing AWS keys, bearer tokens, private keys, API secrets
  3. File scope — blocks writes to .env, *.key, *.pem, .ssh/*, and custom protected paths
  4. Custom rules — user-defined regex rules in config.toml scoped to tool, command, or file
  5. Diff size — asks for confirmation on edits exceeding max_diff_lines

Trust scoring adjusts per session: denials lower trust, clean passes raise it. Above the threshold, ask auto-promotes to allow. All decisions are logged with SHA-256 hash chains for tamper-evident auditing.

Work-Stealing

When agents stall or die, their work items are automatically redistributed:

  • Every tool use sends a heartbeat for claimed work items
  • TeammateIdle hook detects items with stale heartbeats (configurable threshold)
  • Stale items are marked stealable; abandoned items are auto-released back to pending
  • Other agents can steal stealable items via flowforge work steal

Plugin SDK

Extend FlowForge without recompiling:

.flowforge/plugins/my-plugin/
├── plugin.toml          # Manifest: tools, hooks, agents
├── scripts/
│   └── my_tool.py       # Tool: reads JSON from stdin, writes JSON to stdout
└── agents/
    └── specialist.md    # Agent definition (markdown)
[plugin]
name = "my-plugin"
version = "0.1.0"

[[tools]]
name = "my_custom_tool"
description = "Does a thing"
command = "python3 scripts/my_tool.py"
timeout = 5000

[[hooks]]
event = "PreToolUse"
command = "bash scripts/check.sh"
priority = 10

[[agents]]
path = "agents/specialist.md"

Trajectory Learning

FlowForge records the complete tool-use sequence for every session:

  1. Recording — each tool use is logged as a step with SHA-256 hashed input (errors now include context)
  2. Judgment — at session end, trajectories are scored: success_ratio * 0.6 + work_item_factor * 0.3 + pattern_match * 0.1
  3. Distillation — successful trajectories are converted to reusable strategy patterns stored in HNSW
  4. Consolidation — old failures are pruned, similar successes are merged
  5. Active learning — every tool call immediately feeds routing weight updates (success +0.05, failure -0.05) instead of waiting for session-end judgment

Semantic Memory

FlowForge uses real semantic embeddings instead of simple hash-based n-grams:

  • Embedder abstraction — Embedder trait with two implementations: HashEmbedder (fast, zero-dependency fallback) and SemanticEmbedder (384-dim AllMiniLM-L6-v2 quantized via fastembed)
  • DBSCAN clustering — patterns are automatically grouped into topic clusters using DBSCAN (via linfa); clusters are recomputed during consolidation when the outlier count exceeds a threshold
  • Per-cluster P95 thresholds — deduplication uses each cluster's 95th-percentile distance instead of a single global threshold, so tightly-related patterns are deduped more aggressively
  • Cluster-aware search — results in the same cluster as the query get a 10% similarity boost
  • Adaptive decay — large active clusters (>10 members) decay at 0.5x rate; isolated outliers decay at 2.0x rate
  • Feature-gated — semantic embeddings are on by default (semantic Cargo feature). Compile with --no-default-features for hash-only mode
  • Lazy loading — the ONNX model is loaded via OnceCell only when semantic embedding is actually needed, not on every hook invocation
  • Prompt-length gate — trivial prompts (<4 words) skip all ML-heavy operations (routing, semantic search, pattern injection)
  • Instant routing vectors — when routing fires, the task pattern is embedded and stored immediately so similarity-based generalization works on the very next prompt
  • Auto-backfill — existing routing weights without vectors are automatically vectorized on the next prompt that loads learned weights

The embedding model (~30 MB) is downloaded automatically on first use from Hugging Face. Pre-download with flowforge learn download-model.

CLI Reference

| Command | Description | |---------|-------------| | flowforge init --project | Initialize FlowForge in the current project | | flowforge init --global | Set up global config | | flowforge status | Show overall FlowForge status | | flowforge agent list\|info\|search | Manage agents | | flowforge route "" | Route a task to the best agent | | flowforge memory get\|set\|delete\|list\|search | Memory operations | | flowforge session current\|list\|metrics\|agents\|history\|ingest\|checkpoint\|checkpoints\|fork\|forks | Session management | | flowforge learn store\|search\|stats\|trajectories\|trajectory\|judge\|clusters\|download-model | Pattern learning, trajectories, clustering | | flowforge work create\|list\|update\|close\|sync\|status\|log\|claim\|release\|stealable\|steal\|load | Work tracking + work-stealing | | flowforge mailbox send\|read\|history\|agents | Co-agent mailbox | | flowforge guidance rules\|trust\|audit\|verify | Guidance control plane | | flowforge plugin list\|info\|enable\|disable | Plugin management | | flowforge tmux start\|update\|stop\|status | tmux team monitor | | flowforge mcp serve | Start the MCP server | | flowforge config get\|set | View/modify config values | | flowforge statusline | Output status line for Claude Code | | flowforge test-hooks [--event NAME] [--verbose] | Test all hooks with realistic Claude Code payloads |

Testing

# Run all tests
cargo test --workspace

# Test hooks with realistic Claude Code payloads
flowforge test-hooks
flowforge test-hooks --verbose            # Show stdin/stdout/stderr/timing
flowforge test-hooks --event pre-tool-use # Test a single hook

# Run with clippy lints
cargo clippy --workspace -- -D warnings

# Check formatting
cargo fmt --all --check

408+ tests across 6 crates:

| Crate | Tests | Coverage | |-------|-------|----------| | flowforge-cli | 55 | CLI commands, hooks, work item mapping, realistic Claude Code payloads, sessions, mailbox, MCP (integration) | | flowforge-core | 33 | Config validation, status transitions, types, error handling | | flowforge-memory | 143 | DB operations, transactions, schema indexes, semantic + hash embedding, HNSW search, pattern learning, DBSCAN clustering | | flowforge-mcp | 87 | JSON-RPC server, tool dispatch, parameter validation | | flowforge-agents | 19 | Agent loading, registry, routing | | flowforge-tmux | 11 | State management, display rendering |

Project Structure

.
├── agents/                  60 built-in agent definitions (markdown)
│   ├── core/                coder, reviewer, researcher, tester, planner
│   ├── specialized/         architect, security, frontend, backend, database, devops, docs
│   ├── coordination/        team-lead, integrator
│   ├── swarm/               hierarchical, mesh, adaptive coordinators
│   ├── hive-mind/           queen, scout, worker, collective intelligence
│   ├── consensus/           byzantine, crdt, gossip, quorum, raft, security
│   ├── github/              PR, issues, releases, code review, workflow
│   ├── sparc/               specification, pseudocode, architecture, refinement, completion
│   ├── goal/                goal planner, code goal planner
│   ├── testing/             production validator, TDD
│   ├── analysis/            code analyzer, code quality
│   ├── data/                ML model
│   ├── documentation/       OpenAPI docs
│   ├── devops/              CI/CD GitHub Actions
│   └── custom/              database, project, python, rust specialists
├── crates/
│   ├── flowforge-cli/       Binary entry point, commands, hooks
│   ├── flowforge-core/      Config, types, guidance engine, plugin loader, work tracking
│   ├── flowforge-memory/    SQLi

…

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [belchman](https://github.com/belchman)
- **Source:** [belchman/Forge](https://github.com/belchman/Forge)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.