Overview
| Group | Commands |
|---|---|
| Authentication | login, logout |
| Workspaces | workspace add, workspace list, workspace remove, workspace upgrade-scale |
| Specs | specs sync, spec init, spec validate |
| Runs | run, run status, runs list, runs replay |
| Diagnostics | doctor |
| Operator | harness, skill-secret, agent, admin |
Authentication
zombiectl login
Authenticate via Clerk OIDC device flow. Opens your default browser to complete sign-in.
--no-open to print the auth URL instead of opening a browser automatically.
zombiectl logout
Clear the local session token.
Workspaces
zombiectl workspace add <repo-url>
Connect a GitHub repository as a workspace.
zombiectl workspace list
List all configured workspaces.
zombiectl workspace remove <id>
Remove a workspace binding.
zombiectl workspace upgrade-scale
Upgrade a workspace from Hobby to Scale plan.
Specs
zombiectl specs sync
Sync PENDING_*.md spec files from a connected repository.
zombiectl spec init
Generate a spec from a natural language description. An agent explores your repo via the agent relay, reads manifest files and project structure, and drafts a complete milestone spec.
- CLI sends your description + tool definitions to
zombied - Agent explores your repo via tool calls (read_file, list_dir, glob) β files are read locally, never uploaded
- Agent drafts a spec with the right language, gate commands, and acceptance criteria
- CLI writes the spec to
docs/spec/v1/pending/
zombiectl spec validate <file>
Validate a spec file locally before submission.
Runs
zombiectl run --spec <file>
Submit a spec and start a run.
zombiectl run --spec <file> --preview
Preview the blast radius before executing. An agent reads your spec and explores the repo via the agent relay to predict which files will be touched.
--preview-only to preview without starting a run.
zombiectl run --spec <file> --watch
Submit a spec and stream gate progress via SSE.
The
--watch flag is planned for a future release.zombiectl runs list
List runs with status and scores.
zombiectl run status <id>
Fetch run detail with scorecard.
zombiectl runs replay <id>
Structured failure narrative for a completed run.
This command is planned for a future release.
Diagnostics
zombiectl doctor
Verify API connectivity, authentication, and local configuration. Does not require authentication.
Operator commands
zombiectl harness
Agent harness lifecycle management.
--workspace-id or use the current workspace from context.
zombiectl skill-secret
Manage agent skill secrets per workspace.
--workspace-id, --skill-ref, --key. The put action also requires --value. The --scope flag defaults to sandbox.
zombiectl agent
Agent introspection β view profiles, scores, proposals, and improvement reports.
Coming soon:
zombiectl agent dashboard will show all agents in a workspace with ASCII sparklines, current tier, trust status, and pending proposals in a single command.