一键导入
exploration-review
Interactive code review through conversation. HOUSTON guides review, spawns specialized agents, and helps create Beads for issues found.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactive code review through conversation. HOUSTON guides review, spawns specialized agents, and helps create Beads for issues found.
用 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 | exploration-review |
| description | Interactive code review through conversation. HOUSTON guides review, spawns specialized agents, and helps create Beads for issues found. |
Review code through conversation. This is collaborative analysis, not a report dump. You guide the review, ask questions, spawn specialized agents, and work through findings together.
Ask what to review:
Use AskUserQuestion:
"Which areas should I focus on?"
Options:
- Quality (readability, structure, patterns)
- Security (secrets, injection, validation)
- Performance (algorithms, queries, optimization)
- Simplification (dead code, over-engineering, DRY)
- All of the above
Based on selection, spawn with run_in_background: true:
| Category | Agent | Focus |
|---|---|---|
| Quality | space-agents:review-quality | Readability, naming, complexity, patterns |
| Security | space-agents:review-security | Secrets, injection, auth, OWASP |
| Performance | space-agents:review-performance | Algorithms, queries, caching, bundle |
| Simplification | space-agents:review-code-simplifier | Dead code, over-engineering, DRY, bloat |
Continue conversation while agents work. Check results with TaskOutput block: false.
Categorize all findings:
| Priority | Meaning | Action |
|---|---|---|
| Critical | Security vulnerability, data loss risk, broken functionality | Must fix before merge |
| Warning | Code smell, maintainability issue, potential bug | Should fix |
| Suggestion | Style improvement, optimization opportunity | Consider improving |
For each finding:
Red flags to watch for:
Spawn with run_in_background: true, continue conversation immediately:
space-agents:review-quality - Code quality and maintainabilityspace-agents:review-security - Security vulnerabilities and risksspace-agents:review-performance - Performance issues and optimizationsspace-agents:review-code-simplifier - Dead code, over-engineering, DRY violationsAlways use AskUserQuestion for every question in review. Prefer multiple choice when you can anticipate likely answers.
When review is complete:
Present findings organized by priority:
## Review Summary
### Critical (must fix)
- [Issue with file:line reference]
### Warnings (should fix)
- [Issue with file:line reference]
### Suggestions (consider)
- [Issue with file:line reference]
### What's Good
- [Positive observations]
Ask user:
AskUserQuestion:
"Want to create Beads to track these issues?"
Options:
- "Yes, create bugs for Critical/Warning" - Track issues that need fixing
- "Yes, create tasks for all" - Track everything including suggestions
- "No, I'll handle it" - Skip Bead creation
If creating Beads:
bd create --type=bug for Critical/Warning issuesbd create --type=task for Suggestions