From space-agents
Installs Space-Agents in current project: creates .space-agents/ directories for comms, exploration, and mission tracking; initializes Beads git-backed issues via bd CLI. Run /install once per project.
How this skill is triggered — by the user, by Claude, or both
Slash command
/space-agents:installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install Space-Agents in the current project. Creates the directory structure and initializes Beads for issue tracking.
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.
npx claudepluginhub thebrownproject/space-agents --plugin space-agentsCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.