BeClaude

space-agents

New
3Community RegistryGeneralby Fraser Brown

Multi-agent orchestration system for Claude Code. HOUSTON coordinates Voyages, Missions, and Objectives while fresh Pods execute work autonomously.

First seen 6/7/2026

Summary

Space Agents is a multi-agent orchestration system for Claude Code that coordinates complex workflows through a central HOUSTON controller, enabling autonomous execution of tasks by fresh Pods.

  • It uses Beads for persistent context tracking across sessions and supports solo, orchestrated, or background automation modes, making it ideal for large-scale codebase exploration, debugging, and planning.

Overview

code
███████╗██████╗  █████╗  ██████╗███████╗
██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝
███████╗██████╔╝███████║██║     █████╗
╚════██║██╔═══╝ ██╔══██║██║     ██╔══╝
███████║██║     ██║  ██║╚██████╗███████╗
╚══════╝╚═╝     ╚═╝  ╚═╝ ╚═════╝╚══════╝
         █████╗  ██████╗ ███████╗███╗   ██╗████████╗███████╗
        ██╔══██╗██╔════╝ ██╔════╝████╗  ██║╚══██╔══╝██╔════╝
        ███████║██║  ███╗█████╗  ██╔██╗ ██║   ██║   ███████╗
        ██╔══██║██║   ██║██╔══╝  ██║╚██╗██║   ██║   ╚════██║
        ██║  ██║╚██████╔╝███████╗██║ ╚████║   ██║   ███████║
        ╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═══╝   ╚═╝   ╚══════╝

Agent orchestration plugin for Claude Code, powered by Beads and the Ralph loop.

Features

  • Multi-session persistence: Beads tracks issues, dependencies, and context across sessions
  • Structured exploration: Brainstorm ideas, create plans, review code, debug issues
  • Agent orchestration: Solo (direct), Orchestrated (agents per task), or Ralph loop (background automation)
  • Session logging: CAPCOM log preserves decisions and progress for future sessions

Prerequisites

  • Beads CLI (npm install -g beads-cli)
  • Optional: mprocs (npm install -g mprocs) for watching Ralph loop live

Install

1. Add the plugin (in Claude Code):

code
/plugin marketplace add thebrownproject/space-agents
/plugin install space-agents@thebrownproject-space-agents

2. Initialize in your project:

code
/install

This creates the .space-agents/ directory structure and initializes Beads for issue tracking. Run once per project.

Workflow

code
/launch → /exploration → /mission → /land
CommandPurpose
/launchStart session, see project status
/explorationBrainstorm, plan, review, or debug
/missionExecute work from Beads
/landEnd session, save context to CAPCOM

Exploration Modes

ModeOutput
brainstormIdeas and analysis in exploration/ideas/
planImplementation plans in exploration/planned/
reviewCode review findings as Beads
debugInvestigation results as Beads

Mission Modes

ModeBest for
soloSmall work (1-3 tasks). HOUSTON executes directly
orchestratedMedium work (4-10 tasks). Agent per task
ralphLarge work (10+ tasks). Background automation

Multi-Agent Execution

In orchestrated and ralph modes, each task is executed by a 3-agent crew:

code
Pathfinder → Builder → Inspector
AgentRole
PathfinderExplores codebase, gathers context, identifies patterns and risks
BuilderImplements the task using TDD approach
InspectorTwo-pass review: requirements verification, then quality/patterns/security

The Ralph loop spawns these as Pods with fresh context each iteration, looping until all tasks complete or a blocker halts execution. When issues are found, bugs are inserted into Beads as blockers; Ralph resolves these before continuing to the next task.

Install & Usage

1
Create the agents directory
mkdir -p .claude/agents
2
Save the agent file

Add the configuration to .claude/agents/space-agents.md

3
Invoke with @agent-name
@space-agents

Use Cases

Orchestrate multiple agents to brainstorm ideas, create plans, and review code across a large codebase.
Automate background debugging sessions that run independently while you continue other work.
Maintain persistent context across Claude Code sessions for long-running projects with many dependencies.
Coordinate a structured exploration of a new codebase, generating reports and summaries from multiple perspectives.
Run a Ralph loop to continuously monitor and fix issues in a repository without manual intervention.
Log all decisions and progress to a CAPCOM log for later review or handoff to another developer.

Usage Examples

1

/space-agents orchestrate a mission to refactor the authentication module, assigning one agent to analyze dependencies and another to propose changes.

2

Start a Ralph loop to automatically fix linting errors in the src/ directory and commit fixes.

3

Use space-agents to brainstorm and create a plan for adding a new feature, logging all decisions to the CAPCOM log.

View source on GitHub
agent

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is space-agents?

Space Agents is a multi-agent orchestration system for Claude Code that coordinates complex workflows through a central HOUSTON controller, enabling autonomous execution of tasks by fresh Pods. It uses Beads for persistent context tracking across sessions and supports solo, orchestrated, or background automation modes, making it ideal for large-scale codebase exploration, debugging, and planning.

How to install space-agents?

To install space-agents: create the agents directory (mkdir -p .claude/agents), then add the config to .claude/agents/space-agents.md. Finally, @space-agents in Claude Code.

What is space-agents best for?

space-agents is a agent categorized under General. It is designed for: agent. Created by Fraser Brown.

What can I use space-agents for?

space-agents is useful for: Orchestrate multiple agents to brainstorm ideas, create plans, and review code across a large codebase.; Automate background debugging sessions that run independently while you continue other work.; Maintain persistent context across Claude Code sessions for long-running projects with many dependencies.; Coordinate a structured exploration of a new codebase, generating reports and summaries from multiple perspectives.; Run a Ralph loop to continuously monitor and fix issues in a repository without manual intervention.; Log all decisions and progress to a CAPCOM log for later review or handoff to another developer..