Split work without losing the root objective
Fan out implementation slices, keep parent/child lineage, and bring verifier results back into one run.
LLM-agnostic ยท local or distributed actors
Bring Claude Code, Copilot, custom MCP servers, or any LLM-backed worker. Run parallel actors locally on one machine or distribute them across laptops, CI, and private networks.
Orchestration control plane events live
Workers matched 8
Governed gates 3
Events tailed 142
planner session rank workers batch delegate dashboard digest
local implementer remote verifier CI reducer loop controller
questions approvals artifact manifest event replay recovery
Steer run Approve Answer Abort
Exact process
NFLTR is the control plane around agent-authored work. Your planner and workers make domain decisions; NFLTR carries the task graph, governance, status, and recovery path for both local actor teams and distributed fleets.
Attach a planner
Start nfltr mcp with an API key. The planner publishes task digests and polls the command queue from nfltr.xyz.
Register workers by role and capability
Workers can wrap Claude Code, Copilot, custom MCP servers, repo-local tools, or service agents. Labels capture role, model family, repo access, platform, capacity, and locality so the planner can probe and rank them.
Decompose and delegate
The planner turns a goal into child tasks, dispatches one task or a batch, and keeps lineage so the dashboard can show root, child, and verifier state.
Steer work while it runs
Operators answer worker questions, approve gated dispatch, reject unsafe work, or abort tasks through the same command queue.
Verify, rework, reduce
Verifier, reducer, collector, and loop-controller agents record explicit outcomes. NFLTR stores the loop state without inventing the decision for them.
Observe and recover
The relay stores live digests, event tails, result summaries, artifact manifests, and recovery metadata so stalled or resumed work remains inspectable.
Problems solved
Fan out implementation slices, keep parent/child lineage, and bring verifier results back into one run.
Run planner, implementer, verifier, and reducer actors on one machine to validate coordination before moving any worker to another host.
Workers can stop for input, policy can require approval, and the dashboard can answer or reject without restarting the run.
Route work to laptops, CI hosts, private repos, or specialized environments by labels, reachability, and capacity while keeping one observable task graph.
Task digests, event history, and recovery metadata keep state visible when a worker or planner goes away and comes back.
Persist status, events, result summaries, artifact manifests, approval state, and reviewer annotations for later inspection.
Use cases
Use local nfltr orch when coordination quality matters more than machine count. Use distributed orchestration when the best worker is defined by repo access, hardware, network, secrets, platform, or availability.
Local nfltr orch
Distributed nfltr orch
Workflow
Use the CLI to attach planners and workers, then keep the run visible in the hosted dashboard.
Connect your local planner process to the hosted control plane and publish live task digests.
Register the planner
nfltr mcp --proxy-url https://nfltr.xyz --write-mcp-json .vscode/mcp.json
Where to start