Languages / 语言 / 言語 / 언어 / Idiomas / Langues: English · 中文 · 日本語 · 한국어 · Español · Français · Português This project is part of the AtomGit G-Star Incubation Program.
> /plugin marketplace add echoVic/boss-skill> /plugin install boss@boss-skill
Repo: echoVic/boss-skill
What's inside
Languages / 语言 / 言語 / 언어 / Idiomas / Langues: English · 中文 · 日本語 · 한국어 · Español · Français · Português

This project is part of the AtomGit G-Star Incubation Program. GitHub is the canonical repository; AtomGit provides an automatically synchronized mirror for faster access in China. Please submit issues and pull requests on GitHub.
GitHub: https://github.com/echoVic/boss-skill · AtomGit mirror: https://atomgit.com/echoVic/boss-skill
Boss is an auditable agent-team workflow for coding agents. It turns one coding agent into a structured engineering team: PM, Architect, UI Designer, Tech Lead, Scrum Master, Frontend, Backend, QA, and DevOps. Unlike prompt-only agent teams, Boss adds runtime state, append-only events, quality gates, deterministic evals, hooks, and replayable artifacts.
Boss works with Claude Code, Codex, OpenClaw, Antigravity, and Hermes.
Prompt-only orchestration can sound organized, but it usually cannot prove that the plan was followed, tests were run, gates passed, or state was not hallucinated. Boss is built around evidence:
.boss/<feature>/.meta/events.jsonl and projected into read-only execution state.boss gate final and boss doctor fail when a completed stage carries a failed gate. Enforcement still relies on the orchestrating agent honoring the protocol; the CLI makes the verdict checkable, not unavoidable..boss/<feature>/.--describe, dry runs, bounded fields, and structured errors.Boss is not a single monolithic command. You can run one role against an existing project, or run the full pipeline from idea to delivery.
| Command | What it does | Use when |
|---|---|---|
/boss | Full 4-stage pipeline | You want to go from idea to shippable work |
/boss:plan | PM + Architect planning | You want PRD and architecture before implementation |
/boss:review | Tech Lead review | You need a read-only code, PR, or design review |
/boss:qa | QA plus gates | You need verifiable test evidence |
/boss:ship | DevOps build and deployment checks | You are ready to ship |
/boss:extend | Custom agent, pack, or gate | You want to adapt Boss for your team |
/boss:upgrade | Upgrade Boss Skill and reinstall hooks | You want the latest npm package and hook config |
Boss is a skill you install into your coding agent — not a tool that installs other skills.
Recommended — via the skills CLI (vercel-labs/skills, skills.sh):
npx skills add echoVic/boss-skill
This is the standard, agent-agnostic way to install a skill: it discovers boss from the repo, prompts for target agent / scope (project vs global) / install method, and records a skills-lock.json you can commit. Boss ships a single skill root, so the picker shows just boss — its internal methodologies travel with it.
Alternative — Boss's own multi-agent installer (auto-detects Claude Code, Codex, OpenClaw, Antigravity, Hermes and installs into all of them, plus merges Codex hooks):
# One-shot, no global install
npx @blade-ai/boss-skill
# Or install globally, then run the self-install wizard
npm install -g @blade-ai/boss-skill
boss-skill
For Claude Code plugin mode:
claude --plugin-dir "$(boss-skill path)"
The lowest-cost first run is a single role against existing code. It reads, it does not write:
/boss:review
You get tech-review.md under .boss/<feature>/ with risks, findings and severity. Nothing else in your repo is touched.
Want verifiable test evidence instead? /boss:qa runs the tests and the gates, and writes qa-report.md.
Inside your coding agent:
/boss Build a local personal todo app --roles core --skip-deploy
--roles core uses PM, Architect, Dev, and QA.--skip-deploy stops after implementation and test evidence.boss status todo-app --json
boss runtime inspect-pipeline todo-app
Expected artifact layout:
.boss/todo-app/
├── design-brief.md
├── prd.md
├── architecture.md
├── tasks.md
├── qa-report.md
└── .meta/
├── events.jsonl
├── execution.json
└── workflow-plan.json
| Good fit | Poor fit |
|---|---|
| New features that need requirements, design, implementation, tests, and delivery evidence | One-line fixes or tiny local edits |
| API, full-stack, UI, or medium-sized product work | Pure code reading or explanation |
Work where .boss/<feature>/ artifacts are valuable | Tasks with a complete existing spec where you only need a quick patch |
| Teams that want repeatable gates and audit trails | Work that does not need coordination or review evidence |
Rule of thumb: if you do not need a traceable .boss/ folder, you probably do not need the full /boss pipeline. Use a single role or let your coding agent edit directly.
Boss detects the boss CLI at runtime. Without it, the workflow can degrade to Markdown artifacts under .boss/<feature>/ instead of the event stream. The CLI is the auditability upgrade: event sourcing, replayable resume, deterministic evals, runtime gates, and structured diagnostics.
Boss does not mean "install once and get guaranteed autonomous delivery." It provides a runtime workflow and evidence gates; the active coding agent still has to follow the Boss protocol.
npm install -g @blade-ai/boss-skill
boss-skill install
Useful install commands:
boss-skill install --dry-run
boss-skill uninstall
boss-skill path
boss-skill --version
Auto-detected targets:
| Agent | Detection | Install method |
|---|---|---|
| OpenClaw | ~/.openclaw/ | Copy to ~/.openclaw/skills/boss/ and inject metadata |
| Codex | ~/.codex/ | Copy to ~/.codex/skills/boss/, inject metadata, merge hooks |
| Antigravity | ~/.gemini/antigravity/ | Copy to Antigravity skills directory and inject metadata |
| Hermes | ~/.hermes/ | Copy to ~/.hermes/skills/boss/ and inject metadata |
| Claude Code | Always available | Plugin mode with --plugin-dir |
Boss targets Node.js >=20 and runs on Linux, macOS, and Windows. The CLI shells out
only through spawnSync with explicit argument arrays (never shell: true), and resolves
npm/npx to their .cmd variants on Windows, so there is no POSIX-only assumption in
the core pipeline.
Two capabilities depend on optional external tools and degrade gracefully when they are absent:
git and a git working tree. Outside a
repository, or without git on PATH, checkpointing is silently skipped — the pipeline
is unaffected.gate.sh plugins are executed via bash. On Windows without a
bash in PATH these will fail to launch; prefer the cross-platform Node gate entry
(gate.js / gate.mjs) for portable plugins.Run boss doctor to see the resolved runtime environment (Node version, platform, and
whether git is available) alongside install and event-stream health.
Common slash commands:
/boss Build a todo app
/boss Add authentication to this existing project --skip-ui
/boss Build an API service --skip-deploy --quick
/boss Continue the previous task --continue-from 3
/boss Lightweight mode --roles core --hitl-level off
/boss:upgrade
Common options:
| Option | Meaning |
|---|---|
--roles <preset> | full for all 9 roles, or core for PM/Architect/Dev/QA |
--skip-ui | Skip UI design |
--skip-deploy | Skip deployment |
--quick | Skip confirmation and requirement clarification nodes |
--template | Initialize .boss/templates/ and pause |
--continue-from <1-4> | Resume from a pipeline stage |
--hitl-level <level> | Human-in-the-loop mode: auto, interactive, or off |
Boss CLI commands:
boss --help
boss doctor # install, runtime and per-feature health
boss status FEATURE
boss continue FEATURE
boss gate FEATURE # one quality gate
boss gate final FEATURE # release gate (subcommand comes first)
boss qa attack FEATURE
boss project init FEATURE
boss design preview FEATURE
boss packs detect
boss runtime inspect-pipeline FEATURE
boss runtime generate-summary FEATURE
boss runtime rebuild-state FEATURE # rebuild execution.json from events.jsonl
execution.json is a projection, not a source of truth: if it is ever unreadable, boss runtime rebuild-state regenerates it from the event stream.
Agent-facing boss commands use these common options where applicable; run --describe on a command for its exact JSON schema:
--json: structured output; non-TTY stdout defaults to JSON--describe: JSON command schema--dry-run: structured action plan for writes or risky operations--json-input=<json|->: JSON input payload--fields=<a,b> and --limit=<n>: bounded output--yes: required only for high-risk non-interactive commands that need an extra confirmationStructured errors are written to stderr as {"error":{...}} and include code, message, input, retryable, and suggestion. Domain conditions carry their own codes rather than a generic failure — retry_budget_exhausted, invalid_state_transition, run_id_mismatch, feedback_budget_exhausted, gate_not_found, workflow_plan_mismatch, state_unreadable, pipeline_not_initialized, invalid_usage — and each suggestion names the next command to run.
Boss follows a four-stage workflow:
User request
-> requirement clarification
-> Stage 1: PM, Architect, UI Designer
-> Stage 2: Tech Lead, Scrum Master
-> Stage 3: Frontend, Backend, QA, gates
-> Stage 4: DevOps, deployment checks, summary
The full role set:
| Role | Responsibility |
|---|---|
| PM | Requirement discovery, PRD, hidden needs, edge cases |
| Architect | System architecture, technical design, APIs |
| UI Designer | UI/UX spec plus renderable design JSON |
| Tech Lead | Technical review, risk assessment |
| Scrum Master | Task breakdown and acceptance criteria |
| Frontend | UI implementation and frontend tests |
FAQ
boss is a Claude Code plugin with 27 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes architecture-design, data-api-design, tech-research. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it