Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By clkao
Turn directories of markdown files into structured, multi-stage workflows that AI agents execute and orchestrate, with session debriefing and workflow scaffolding upgrades.
npx claudepluginhub clkao/spacedock --plugin spacedockThis skill should be used when the user asks to "commission a workflow", "create a workflow", "design a workflow", "launch a workflow", or wants to interactively design and generate a plain text workflow with stages, entities, and a first-officer agent.
This skill should be used when the user asks to "debrief", "record what happened", "session summary", "write a debrief", or wants to capture session activity (commits, task state changes, decisions, issues) into a structured record for the next session.
Execute workflow stage work as a dispatched worker.
Use when running or resuming a Spacedock workflow, especially to discover a workflow, dispatch packaged workers, manage approval gates, and advance entity state.
This skill should be used when the user asks to "refit a workflow", "upgrade a workflow", "update workflow scaffolding", or wants to bring an existing workflow's scaffolding files up to date with the current Spacedock version.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code integration for MCP Task Orchestrator — schema-aware context, note-driven workflow
Task management skill for coordinating complex agent work
Cotask — task management with TASKS.md kanban dashboard
Fulcrum task orchestration for Claude Code
Multi-agent workflow orchestration via YAML. Ships the conductor skill so the assistant can validate, run, debug, and author workflow files for the conductor CLI.
Multi-agent workflow orchestration with natural language creation, parallel execution, conditional flows, and visual progress tracking
Spacedock runs agent work through defined stages, so you can delegate in batches and make only the calls that need your judgment.
The first officer coordinates the flow: it dispatches workers to advance each work item and surfaces approval-worthy decisions to you, the captain, so batches move forward without pulling you into every session.
You want Spacedock if:
Prerequisites: Claude Code or Codex CLI.
Install the plugin:
claude plugin marketplace add clkao/spacedock && claude plugin install spacedock
Commission a workflow with your own mission prompt:
claude --agent spacedock:first-officer "/commission <your mission prompt>"
Or start from one of these example workflows — copy and run:
Email triage:
claude --agent spacedock:first-officer "/commission Email triage: fetch, categorize, and act on Gmail inbox. Entity: a batch of up to 50 emails. Stages: intake (use gws-cli, triage in:inbox and read email body if necessary, categorize, propose action per email, output as table) → approval (Captain reviews proposal) -> execute (carry out approved actions, do not mark as read). Use gws-cli (https://github.com/googleworkspace/cli/tree/main/skills/gws-gmail), GOOGLE_WORKSPACE_CLI_CONFIG_DIR=~/.config/gws/<account> for different accounts. Walk me through gws-cli setup if not already done."
Superpowers-style dev task workflow:
claude --agent spacedock:first-officer "/commission Dev task workflow: superpowers-style design → plan → implement → review with ## Design and ## Implementation Plan inlined in the entity body (no separate spec/plan files), implement on isolated worktrees with strict TDD, design and review gated for approval."
Clone Spacedock and start Codex from the repo root:
git clone https://github.com/clkao/spacedock.git /path/to/spacedock
cd /path/to/spacedock
codex --enable multi_agent
Restart Codex if it was already open, then open /plugins and install Spacedock from the repo-local marketplace entry.
The authoritative Codex plugin manifest is .codex-plugin/plugin.json, and the authoritative local catalog is .agents/plugins/marketplace.json. That catalog points to ./plugins/spacedock, which is a checked-in symlink to the repository root so Codex loads the real plugin package directly.
Prompt Codex to use the first-officer skill and commission your workflow:
Use the spacedock:first-officer skill to run /commission <your mission prompt> in this directory.
Legacy compatibility: older Codex setups can still expose ~/.agents/skills/spacedock directly:
mkdir -p ~/.agents/skills
ln -s /path/to/spacedock/skills ~/.agents/skills/spacedock
The .claude-plugin/plugin.json and .claude-plugin/marketplace.json files remain synchronized legacy mirrors of the Codex-first metadata for migration compatibility.
Codex multi-agent is experimental. The Claude Code path is the primary supported surface.