From space-agents
Use to install Space-Agents in a project. Creates .space-agents/ directory and initializes Beads for issue tracking. Run once per project.
npx claudepluginhub thebrownproject/space-agents --plugin space-agentsThis skill uses the workspace's default tool permissions.
Install Space-Agents in the current project. Creates the directory structure and initializes Beads for issue tracking.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Install Space-Agents in the current project. Creates the directory structure and initializes Beads for issue tracking.
User runs /install or is prompted from /launch when system not found.
bd CLI must be available on the system (v0.47.0+)if [ -d ".space-agents" ]; then
# Check version or offer upgrade
fi
If .space-agents/ already exists:
.beads/issues.jsonl existsCreate the full Space-Agents directory structure:
mkdir -p .space-agents/comms
mkdir -p .space-agents/exploration/{ideas,planned}
mkdir -p .space-agents/mission/{staged,complete}
Directory structure:
.space-agents/
├── comms/
│ └── capcom.md # Master CAPCOM log (append-only)
├── exploration/ # Exploration kanban
│ ├── ideas/ # Early brainstorming
│ └── planned/ # Has plan.md, ready for Beads
└── mission/ # Mission execution tracking
├── staged/ # Converted to Beads, ready to execute
└── complete/ # Done
Initialize Beads for issue tracking (if not already done):
# Initialize Beads if not already done
if [ ! -f ".beads/issues.jsonl" ]; then
bd init
fi
Beads provides:
.beads/issues.jsonlCreate empty/default files:
.space-agents/comms/capcom.md:
# CAPCOM Master Log
*Append-only. Grep-only. Never read fully.*
---
## [YYYY-MM-DD HH:MM] System Initialized
Space-Agents installed. HOUSTON standing by.
---
Show the installation success screen:
┌────────────────────────────────────────────────────────────────┐
│ ███████╗██████╗ █████╗ ██████╗███████╗ │
│ ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝ │
│ ███████╗██████╔╝███████║██║ █████╗ │
│ ╚════██║██╔═══╝ ██╔══██║██║ ██╔══╝ │
│ ███████║██║ ██║ ██║╚██████╗███████╗ │
│ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝ │
│ █████╗ ██████╗ ███████╗███╗ ██╗████████╗███████╗ │
│ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██╔════╝ │
│ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ███████╗ │
│ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ╚════██║ │
│ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ███████║ │
│ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚══════╝ │
├────────────────────────────────────────────────────────────────┤
│ INSTALLATION COMPLETE. HOUSTON standing by. │
├────────────────────────────────────────────────────────────────┤
│ Created: │
│ ✓ .space-agents/ directory structure │
│ ✓ Beads initialized (.beads/) │
│ ✓ CAPCOM master log │
├────────────────────────────────────────────────────────────────┤
│ Next step: Run /launch to start a session │
└────────────────────────────────────────────────────────────────┘
If bd CLI not found:
ERROR: bd CLI is required but not found.
Please install Beads CLI (v0.47.0+):
npm install -g beads-cli
Verify installation:
bd --version
If directory creation fails:
ERROR: Could not create .space-agents/ directory.
Check that you have write permissions for the current directory.
If already installed:
Space-Agents is already installed in this project.
What would you like to do?
[1] Reinstall (backup existing data)
[2] Cancel
The /install skill:
/launchRun once per project. After installation, use /launch to start sessions.