一键导入
install
Use to install Space-Agents in a project. Creates .space-agents/ directory and initializes Beads for issue tracking. Run once per project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use to install Space-Agents in a project. Creates .space-agents/ directory and initializes Beads for issue tracking. Run once per project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Structure work into plans and Beads. Three modes: plan from brainstorm, plan from scratch, or create Beads from existing plan.
Execute a single task with Pathfinder/Builder/Inspector crew. Self-fetches work from Beads.
Select feature, select mode, delegate to execution skill.
Start a Space-Agents session. Displays welcome screen with project status.
HOUSTON spawns Pathfinder, Builder, Inspector per task. Best for medium features (4-10 tasks).
Launch ralph.sh in background. Lightweight mode (default) or full Pod crew (--pod). Best for large features (10+ tasks).
| name | install |
| description | Use to install Space-Agents in a project. Creates .space-agents/ directory and initializes Beads for issue tracking. Run once per project. |
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.