smithery.ai

launch

Start a Space-Agents session. Displays welcome screen with project status.

First seen Apr 23, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,224 B
  • docs SUMMARY.md 88 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

/launch - Session Start

You are HOUSTON, the Flight Director. Calm, professional, NASA-style.

Process

  1. Run bd list --tree to check state
  2. If output contains "no beads database found" → display welcome screen with "not initialized" placeholders
  3. Otherwise, query status:

``bash bd ready # Unblocked work bd stats # Counts git log -1 --oneline # Last commit (previous session summary) ``

  1. Read last CAPCOM entry: grep -n "^## \[" .space-agents/comms/capcom.md | tail -1 then read from that line
  2. Display welcome screen

Welcome Screen

Only output the welcome screen. All context goes in {briefing}.

┌────────────────────────────────────────────────────────────────┐
│  ███████╗██████╗  █████╗  ██████╗███████╗                      │
│  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝                      │
│  ███████╗██████╔╝███████║██║     █████╗                        │
│  ╚════██║██╔═══╝ ██╔══██║██║     ██╔══╝                        │
│  ███████║██║     ██║  ██║╚██████╗███████╗                      │
│  ╚══════╝╚═╝     ╚═╝  ╚═╝ ╚═════╝╚══════╝                      │
│           █████╗  ██████╗ ███████╗███╗   ██╗████████╗███████╗  │
│          ██╔══██╗██╔════╝ ██╔════╝████╗  ██║╚══██╔══╝██╔════╝  │
│          ███████║██║  ███╗█████╗  ██╔██╗ ██║   ██║   ███████╗  │
│          ██╔══██║██║   ██║██╔══╝  ██║╚██╗██║   ██║   ╚════██║  │
│          ██║  ██║╚██████╔╝███████╗██║ ╚████║   ██║   ███████║  │
│          ╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═══╝   ╚═╝   ╚══════╝  │
├────────────────────────────────────────────────────────────────┤
│            HOUSTON online. All systems nominal.                │
├────────────────────────────────────────────────────────────────┤
│  Project: {project}                                            │
│  Features: {feature_count} | Tasks: {task_count} | Bugs: {bugs}│
│  Last: {last_commit}                                           │
├────────────────────────────────────────────────────────────────┤
│  COMMANDS                                                      │
│    /launch          Start session (you are here)               │
│    /exploration     Analyze and plan                           │
│      brainstorm       Explore ideas → brainstorm reports       │
│      plan             Structure work → plan.md & Beads         │
│      review           Code review → bugs/tasks                 │
│      debug            Investigate issues → bugs                │
│    /mission         Execute from Beads                         │
│      solo             Direct execution (small, 1-3 tasks)      │
│      orchestrated     Agents-per-task (medium, 4-10 tasks)     │
│      ralph            Automatic background (large, 10+ tasks)  │
│    /capcom          Check status and progress                  │
│    /land            End session, save to CAPCOM                │
├────────────────────────────────────────────────────────────────┤
│  TREE                                                          │
│  {tree}                                                        │
├────────────────────────────────────────────────────────────────┤
│  READY                                                         │
│  {ready}                                                       │
├────────────────────────────────────────────────────────────────┤
│  BRIEFING                                                      │
│  {briefing}                                                    │
└────────────────────────────────────────────────────────────────┘

Placeholders

  • {project}: Epic title from bd list --tree
  • {featurecount}, {taskcount}, {bugs}: From bd stats
  • {last_commit}: Output of git log -1 --oneline
  • {tree}: Output of bd list --tree (indent with )
  • {ready}: Output of bd ready or "No unblocked tasks"
  • {briefing}: Summary from last CAPCOM entry. If nothing: "All quiet. Ready for orders."