Community生產力與協作github.com

mpbt-hq/starfleetctl

multi agent coordination / command & control toolkit following the Startrek fleet metaphor

starfleetctl 是什麼?

starfleetctl is a Claude Code agent skill that multi agent coordination / command & control toolkit following the Startrek fleet metaphor.

相容平台~Claude Code~Codex CLI~Cursor
npx skills add mpbt-hq/starfleetctl

Installed? Explore more 生產力與協作 skills: steipete/gemini, steipete/gh-issues, steipete/skill-creator · View all 6 →

在你喜歡的 AI 中提問

開啟一個已預先載入此 Agent Skill 的新對話。

說明文件

starfleet — fleet coordination

Fleet-wide coordination for concurrent AI-agent sessions ("ships"). Covers inter-ship communication, concurrency/isolation, task capture, and the starfleetctl CLI.

Inter-ship communication (comms)

Ships communicate via starfleetctl comms. Messages arrive automatically via system prompt injection — never call comms inbox manually (the poller already injects unseen messages).

Comms rules

  1. Always answer. When a tell or ask arrives, reply via starfleetctl comms tell <sender>. Silence means the message was lost.
  2. Ack after responding. starfleetctl comms ack <id> to clear from inbox.
  3. Comms questions → answer in two places: via comms tell (so sender gets it) AND on the local console (so the human can see it).
  4. Keep the board current. Set status after starting or finishing work.
  5. Never call comms --help. The full reference is in the starfleetctl skill or this document.

Key comms subcommands

CommandPurpose
comms tell <ship> "<msg>"Send a directive to a ship
comms tell <ship> --stdinSend a large payload via stdin
comms broadcast "<msg>"Send to all ships
comms ask "<question>"Ask a question (async reply expected)
comms ack <id>Acknowledge/remove a message from inbox
comms boardShow fleet status board
comms board --jsonMachine-readable board (for scripts)
comms status <status>Set own status (idle/working/blocked)

Concurrency / isolation

Ships must not work in the same git working tree simultaneously. Use separate clones or worktrees. PR-branch ownership: every clone pushes to the same GitHub PR branch — use starfleetctl github pr claim before mutating a PR.

Key rules

  • Different working trees cannot clobber each other. Parallelize across independent workspaces.
  • The hazard: two actors mutating the same clone at once.
  • PR-branch ownership: Use starfleetctl github pr claim before mutating a PR.

Quick reference

starfleetctl github pr mk-agent-clone <branch> [name]  # agent-owned clone
starfleetctl github pr claim <pr#> "what you're doing"  # claim PR branch
starfleetctl github pr claim --release <pr#>            # release claim
.starfleet-ai/bin/starfleetctl worktree add <repo> [name]  # per-task worktree
starfleetctl with-clone-lock <cmd...>                   # serialize mutating work

Task capture

Record a task in the dashboard, optionally commission a ship. This only commands — never execute the task yourself. No direct file access to DASHBOARD.md or dashboard/topics/*.md.

The one-liner

starfleetctl task capture --title "<title>" \
    [--desc "<what needs doing>"] \
    [--slug "<override>"] \
    [--assign [<ship>]] \
    [--no-push]
  • --assign (no name) → picks first idle, non-stale ship
  • --assign <ship> → that specific ship
  • Without --assign → recorded as open, no ship

Managing existing tasks

starfleetctl task assign <slug> [<ship>] [--no-push]   # re-assign
starfleetctl task unassign <slug> [--no-push]          # clear assignment
starfleetctl task status <slug> <status> [--no-push]   # set status

Dashboard

The dashboard is the cross-session "what's in flight" index. All access via CLI — never Read/Edit/Write/Glob/Grep on DASHBOARD.md or dashboard/topics/*.md.

CommandPurpose
dashboard listShow active topics
dashboard topic new <slug>Create a topic
dashboard topic write <slug> <file>Write topic content
dashboard topic commit <slug>Commit + push topic
dashboard reindexRefresh DASHBOARD.md index
dashboard commitCommit + push index

Starfleetctl CLI

A Go CLI for fleet coordination. Bootstrap: ./starfleet-bootstrap (updates .starfleet-ai/). Full reference: reference.md in this skill's directory.

Subcommand overview

CategoryCommands
Fleetcomms, dashboard, ws-commit, ship-names, with-clone-lock, worktree
Sessionrun, session list/attach/stop
Tasktask capture/assign/unassign/status
Timertimer set/list/cancel
Webweb start/stop/restart/autostart
Setupgenesis-init, self-install, agents install-starfleet
GitHub (read)github pr view/ci/show-branch-file, github backport applies
GitHub (write)github pr comment/label/set-body/checkout/amend-push/make, github backport commit

相關技能