Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

bmad-orchestratorbmad 协调器

Agent Skill

bmad-orchestrator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

514

周安装

21

GitHub Stars

11

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bmad-orchestrator(bmad 协调器)
来源仓库:https://github.com/akillness/skills-template
仓库路径:skills/bmad-orchestrator
安装命令:
npx skills add https://github.com/akillness/skills-template --skill bmad-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill bmad-orchestrator

简介

用于 BMAD 工作流的初始化与结构化执行。

  • 支持 TEA 循环在各阶段的嵌入与跨阶段追溯。
  • 适用于新项目启动或已有项目的流程优化。bmad-orchestrator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需根据项目类型选择是否启用 SSD 元框架。
  • 安装前请检查仓库权限及是否涉及敏感操作。

SKILL.md

bmad-orchestrator — BMAD Workflow Orchestration with SSD

When to use this skill

  • Initializing BMAD in a new project (with or without SSD)
  • Running structured TEA cycles within each BMAD phase
  • Checking and resuming BMAD/SSD workflow status
  • Routing work across Analysis, Planning, Solutioning, and Implementation
  • Managing structured handoff and cross-phase traceability between phases

What is SSD (Structured System Design)?

SSD is a meta-framework that embeds TEA cycles within each BMAD phase, transforming phase execution from "produce a document" into a structured loop:

T → Task:     Decompose the phase into concrete tasks with assigned agents
E → Execute:  Run tasks in parallel via multi-agent team execution
A → Architect: Validate outputs for coherence, completeness, and cross-phase traceability

Each BMAD phase becomes an independent TEA cycle. The architect validation step produces a PASS, PASS_WITH_WARNINGS, REVISE, or FAIL verdict. Only after PASS (or PASS_WITH_WARNINGS) does the human review gate (plannotator) open. This ensures automated structural correctness before human review.

SSD vs. Standard BMAD

AspectStandard BMADBMAD + SSD
Phase executionDocument production (opaque)TEA cycle: Decompose → Execute → Validate
Task decompositionNoneExplicit per-phase task lists with agent assignments
Execution surfaceManual / single-agentMulti-agent Team execution (/team)
ValidationHuman plannotator reviewAutomated architect review → then plannotator
Cross-phase traceabilityNoneRequirement coverage matrix per phase transition
State trackingbmm-workflow-status.yaml+ .omc/state/ssd-state.json with task-level granularity

Installation

npx skills add https://github.com/akillness/oh-my-skills --skill bmad-orchestrator

Notes for Codex Usage

bmad-orchestrator's default execution path is Claude Code. To run the same flow directly in Codex, we recommend operating BMAD stages via a higher-level orchestration path such as omx/ohmg.


Control Model

BMAD phase routing uses the same three-layer abstraction as JEO:

  • settings: platform-specific runtime configuration such as Claude hooks, Codex/Gemini instructions, and MCP setup
  • rules: phase constraints such as "do not advance before the current phase document is approved" and "do not reopen the same unchanged phase document for review"
  • hooks: platform callbacks such as Claude ExitPlanMode, Codex notify, or Gemini AfterAgent

For BMAD phase gates, the intended rule is strict:

  • Review the current phase document before moving forward
  • If the document hash has not changed since the last terminal review result, do not relaunch plannotator
  • Only a revised document resets the gate and permits another review cycle
  • With SSD: plannotator gate requires architect_verdict: "PASS" or "PASS_WITH_WARNINGS" in ssd-state.json before opening

Platform Support Status

PlatformCurrent support modeRequirements
Gemini CLINative (recommended)Register the bmad keyword, then run /workflow-init
Claude CodeNative (recommended)Install skill + remember pattern
OpenCodeOrchestration integrationUse an omx/ohmg-style bridge
CodexOrchestration integrationUse an omx/ohmg-style bridge

Standard BMAD Commands

/workflow-init [--ssd]
/workflow-status

Typical flow:

  1. Run /workflow-init to bootstrap BMAD config (add --ssd to also initialize SSD state).
  2. Move through phases: Analysis → Planning → Solutioning → Implementation.
  3. Run /workflow-status any time to inspect current phase and progress.
ActionCommand
Initialize BMAD/workflow-init
Initialize BMAD + SSD/workflow-init --ssd
Check BMAD/SSD status/workflow-status

SSD Commands (TEA Integration)

Use these commands to run structured TEA cycles within each BMAD phase:

CommandTEA StepPurpose
/ssd-initSetupInitialize .omc/state/ssd-state.json alongside BMAD (called automatically by /workflow-init --ssd)
/ssd-decomposeTaskDecompose current phase into concrete tasks with agent assignments
/ssd-executeExecuteDispatch decomposed tasks to agents via /team (multi-agent parallel execution)
/ssd-validateArchitectValidate phase outputs for coherence, completeness, and cross-phase traceability
/ssd-cycleT+E+ARun the full TEA cycle for the current phase (decompose → execute → validate)
/ssd-advanceTransitionAdvance to next phase after TEA cycle passes architect validation
/ssd-statusStatusShow SSD-enriched status: phase + TEA step + task progress + validation verdict

SSD Full Flow

/workflow-init --ssd
       |
       v
  ┌─────────────────────────────────────────────────────┐
  │              PHASE N TEA CYCLE                      │
  │                                                     │
  │  /ssd-decompose  (or /ssd-cycle for full auto)      │
  │       |                                             │
  │       v                                             │
  │  [T] Task decomposition                             │
  │       planner/analyst produces task list            │
  │       → ssd-state.json phases[N].tasks updated      │
  │       |                                             │
  │       v                                             │
  │  /ssd-execute                                       │
  │       |                                             │
  │       v                                             │
  │  [E] Multi-agent execution via /team                │
  │       TeamCreate → TaskCreate per subtask           │
  │       Agents: executor, analyst, designer,          │
  │               test-engineer, security-reviewer…     │
  │       → docs/ssd/phase-N/ artifacts produced        │
  │       → Phase document assembled from artifacts     │
  │       |                                             │
  │       v                                             │
  │  /ssd-validate                                      │
  │       |                                             │
  │       v                                             │
  │  [A] Architect validation                           │
  │       fabric -p bmad_ssd_phase_review               │
  │       (fallback: architect agent via TaskCreate)    │
  │       |                                             │
  │       ├── PASS ──────────→ plannotator review       │
  │       │                         |                   │
  │       │                    ┌────┴────┐              │
  │       │                    │ Approve │ Req Changes  │
  │       │                    └────┬────┘     |        │
  │       │                         |     Loop to [E]   │
  │       │                         v     with feedback │
  │       │                    /ssd-advance              │
  │       │                    → phase N+1               │
  │       │                                             │
  │       ├── PASS_WITH_WARNINGS → plannotator (warned) │
  │       │                                             │
  │       ├── REVISE → targeted re-execute specific     │
  │       │             tasks, then re-validate         │
  │       │                                             │
  │       └── FAIL → full re-execute with changes,      │
  │                   then re-validate                  │
  │                   (max 3 cycles, then escalate)     │
  └─────────────────────────────────────────────────────┘

TEA Per-Phase Mapping

Phase 1: Analysis

TEA StepActionAgentsOutput
TaskDecompose into: market research, user persona definition, competitive landscape, value proposition, constraint identificationexplore (haiku) + analyst (opus)Task list in ssd-state.json
ExecuteRun tasks in parallel: research, persona, competitive datadocument-specialist, analyst, scientist via Teamdocs/ssd/phase-1/*.md
ArchitectValidate: personas match value prop? Constraints conflict? Competitive gap real?architect (opus) + fabric bmad_ssd_phase_reviewCoherence report + PASS/FAIL/REVISE

Phase 2: Planning

TEA StepActionAgentsOutput
TaskDecompose into: functional requirements, non-functional requirements, user stories, acceptance criteria, UX specificationplanner (opus)Task list
ExecuteWrite functional/non-functional reqs from product brief; produce UX flows; draft acceptance criteriaanalyst, designer, test-engineer via TeamPRD sections
ArchitectValidate: requirements trace to product brief? Acceptance criteria testable? UX covers all user stories?architect (opus) + fabric bmad_ssd_phase_reviewTraceability matrix + verdict

Phase 3: Solutioning

TEA StepActionAgentsOutput
TaskDecompose into: component design, API contracts, data model, integration design, security design, performance design, technology selectionarchitect (opus)Task list
ExecuteComponent/integration design; security design; performance design; technology evaluationarchitect, security-reviewer, quality-reviewer, document-specialist via TeamArchitecture sections
ArchitectValidate: architecture fulfills PRD? API contracts consistent with user stories? Security design matches threat model? Run cross-phase traceability.architect (opus) + critic (opus) + fabric bmad_ssd_phase_reviewArchitecture review + requirement coverage matrix

Phase 4: Implementation

TEA StepActionAgentsOutput
TaskDecompose sprint: epics → stories → implementation tasks (code, test, docs)planner (opus)Sprint plan with task breakdown
ExecuteImplement code; write tests; update docs; resolve build issuesexecutor, test-engineer, writer, build-fixer via TeamCode, tests, docs per story
ArchitectValidate: implementation matches architecture? Tests cover acceptance criteria? API contract honored?verifier (sonnet) + code-reviewer (opus) + fabric bmad_ssd_phase_reviewImplementation coherence report

Fabric Pattern: bmad_ssd_phase_review

Install this custom pattern for automated architect validation:

mkdir -p ~/.config/fabric/patterns/bmad_ssd_phase_review
cat > ~/.config/fabric/patterns/bmad_ssd_phase_review/system.md << 'EOF'
# IDENTITY AND PURPOSE

You are an expert system architect performing a structured phase review for the BMAD Structured System Design (SSD) framework. Your job is to validate that a phase document is internally coherent, externally consistent with prior phase artifacts, and complete enough to advance to the next phase.

Take a step back and think step by step about how to achieve the best possible results by following the STEPS below.

# STEPS

1. IDENTIFY the current BMAD phase (Analysis, Planning, Solutioning, Implementation) from the input metadata.

2. PARSE the phase document and extract all claims, requirements, design decisions, and deliverables.

3. INTERNAL COHERENCE CHECK:
   - Are there contradictory statements within the document?
   - Are all sections complete (no TODOs, placeholders, or TBDs)?
   - Do quantitative claims have justification?

4. CROSS-PHASE TRACEABILITY CHECK (if prior phase artifacts are provided):
   - Phase 2 (Planning): Does every PRD requirement trace to a product brief goal?
   - Phase 3 (Solutioning): Does the architecture address every PRD functional requirement?
   - Phase 4 (Implementation): Does every story map to an architecture component?
   - Flag any orphaned items.

5. COMPLETENESS CHECK against BMAD level expectations:
   - Level 0-1: Minimal viable coverage
   - Level 2: Full requirement coverage with acceptance criteria
   - Level 3: Comprehensive with integration points and risk analysis
   - Level 4: Enterprise-grade with security, performance, and infrastructure coverage

6. RISK ASSESSMENT:
   - Identify assumptions that could invalidate the phase output
   - Flag unresolved dependencies
   - Note scope creep relative to prior phase boundaries

7. PRODUCE a structured verdict.

# OUTPUT INSTRUCTIONS

- Output valid Markdown only.
- Begin with a `## Verdict` section: one of `PASS`, `PASS_WITH_WARNINGS`, `FAIL`, or `REVISE`.
- Follow with `## Internal Coherence` (findings with line references).
- Follow with `## Cross-Phase Traceability` (coverage matrix if applicable).
- Follow with `## Completeness` (missing sections or underspecified areas).
- Follow with `## Risks` (ranked by severity: critical, high, medium, low).
- Follow with `## Required Changes` (concrete, actionable items if verdict is FAIL or REVISE).
- Do not include warnings, disclaimers, or caveats outside the structured sections.

# INPUT

INPUT:
EOF

Usage in /ssd-validate:

# Pipe current phase doc + prior artifacts for cross-phase validation
{
  echo "--- CURRENT PHASE DOCUMENT ---"
  cat "$CURRENT_DOC"
  echo "--- PRIOR PHASE ARTIFACTS ---"
  for prior in "${PRIOR_DOCS[@]}"; do
    echo "--- $(basename "$prior") ---"
    cat "$prior"
  done
} | fabric -p bmad_ssd_phase_review --stream > docs/ssd/phase-N/architect-review.md

# Phase 3 example: validate architecture against PRD
cat docs/architecture-myapp-2026-03-16.md | \
  fabric -p bmad_ssd_phase_review \
  --context "$(cat docs/prd-myapp-2026-03-16.md)" \
  --stream

If fabric is not installed, /ssd-validate falls back to an architect agent:

# In Claude Code session:
ssd validate — run architect review on the current phase document before advancing

SSD State File Schema

Location: .omc/state/ssd-state.json

{
  "version": "1.0.0",
  "project_name": "myapp",
  "project_level": 2,
  "active": true,
  "current_phase": 2,
  "created_at": "2026-03-16T10:00:00Z",
  "updated_at": "2026-03-16T14:30:00Z",
  "phases": {
    "1": {
      "name": "analysis",
      "tea_step": "complete",
      "tasks": {
        "decomposed_at": "2026-03-16T10:05:00Z",
        "items": [
          {
            "id": "p1-t1",
            "name": "Market research",
            "agent": "document-specialist",
            "model": "sonnet",
            "status": "completed",
            "output_path": "docs/ssd/phase-1/market-research.md"
          }
        ]
      },
      "architect_review": {
        "verdict": "PASS",
        "method": "fabric",
        "pattern": "bmad_ssd_phase_review",
        "report_path": "docs/ssd/phase-1/architect-review.md",
        "reviewed_at": "2026-03-16T11:00:00Z"
      },
      "plannotator_review": {
        "status": "approved",
        "reviewed_at": "2026-03-16T11:30:00Z",
        "document_hash": "abc123"
      }
    },
    "2": {
      "name": "planning",
      "tea_step": "execute",
      "tasks": {
        "items": [
          {
            "id": "p2-t1",
            "name": "Functional requirements extraction",
            "agent": "analyst",
            "model": "opus",
            "status": "in_progress"
          }
        ]
      },
      "architect_review": null,
      "plannotator_review": null
    }
  },
  "cross_phase_traceability": {
    "phase_1_to_2": { "validated": true, "coverage": 1.0, "orphaned_items": [] },
    "phase_2_to_3": { "validated": false },
    "phase_3_to_4": { "validated": false }
  }
}

tea_step values: nulldecomposeexecutevalidatecomplete


plannotator Integration (Phase Review Gate)

Each BMAD phase produces a key document (PRD, Tech Spec, Architecture). Before transitioning to the next phase, review that document with plannotator.

With SSD enabled, plannotator only opens after /ssd-validate produces architect_verdict: "PASS" or "PASS_WITH_WARNINGS". This ensures automated structural correctness before human review.

Phase Review Pattern

# After /prd → docs/prd-myapp-2026-03-16.md is created
# With SSD: run /ssd-validate first, then phase-gate-review.sh
bash scripts/phase-gate-review.sh docs/prd-myapp-2026-03-16.md "PRD Review: myapp"

# After /architecture → docs/architecture-myapp-2026-03-16.md is created
bash scripts/phase-gate-review.sh docs/architecture-myapp-2026-03-16.md "Architecture Review: myapp"

Or submit the plan directly from your AI session:

# In Claude Code after /prd completes:
planno — review the PRD before we proceed to Phase 3

Phase Gate Flow (with SSD)

/prd completes → docs/prd-myapp.md created
       ↓
 /ssd-validate runs (automated architect review)
       ↓ fabric -p bmad_ssd_phase_review
       ↓
  PASS/PASS_WITH_WARNINGS?
       ↓ yes
 phase-gate-review.sh opens plannotator UI
       ↓
  [Approve]              [Request Changes]
       ↓                        ↓
 Obsidian saved          Agent revises doc
 ssd-state updated       /ssd-execute (targeted)
                         then /ssd-validate again
       ↓
 /ssd-advance → Phase 3

Quick Reference

PhaseDocumentGate
Phase 1 → 2Product Briefbash scripts/phase-gate-review.sh docs/product-brief-*.md
Phase 2 → 3PRD / Tech Specbash scripts/phase-gate-review.sh docs/prd-*.md
Phase 3 → 4Architecturebash scripts/phase-gate-review.sh docs/architecture-*.md
Phase 4 doneSprint Planbash scripts/phase-gate-review.sh docs/sprint-status.yaml

Integration with /team (OMC)

/ssd-execute maps directly to OMC's Team staged pipeline. When you run /ssd-execute:

  1. Reads ssd-state.json for the current phase's task list
  2. Calls TeamCreate with team name ssd-phase-{N}-{project}
  3. Creates tasks via TaskCreate with agent routing from the TEA per-phase table
  4. Monitors via TaskList until all tasks reach terminal state
  5. Writes outputs to docs/ssd/phase-{N}/
  6. Updates ssd-state.json with execution results
# Trigger SSD execution for current phase (Claude Code)
ssd execute — run phase 2 planning tasks with multi-agent team

Or use directly with Team:

/team 4:analyst "Execute BMAD Phase 2 planning: functional requirements, non-functional requirements, user stories, acceptance criteria based on product brief at docs/product-brief-myapp.md"

Quick Start with SSD

# 1. Initialize BMAD with SSD enabled
/workflow-init --ssd

# 2. Run full TEA cycle for Phase 1 (Analysis)
/ssd-cycle

# 3. Check status after cycle
/ssd-status

# 4. When architect validates PASS, human review opens automatically
# (plannotator UI launches)

# 5. After approval, advance to Phase 2
/ssd-advance

# 6. Repeat for each phase
/ssd-cycle  # Phase 2: Planning
/ssd-cycle  # Phase 3: Solutioning
/ssd-cycle  # Phase 4: Implementation

Obsidian Save Format

Approved phase documents are saved to your Obsidian vault:

---
created: 2026-03-16T10:00:00Z
source: plannotator
tags: [bmad, ssd, phase-2, prd, myapp]
ssd_architect_verdict: PASS
ssd_tea_cycle: 1
---

[[BMAD Plans]]

# PRD: myapp
...

TOON Format Hook

If ~/.claude/hooks/toon-inject.mjs is installed, the skill catalog is automatically injected into every prompt. See [bmad-orchestrator SKILL.md — TOON Format Integration] for details.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.14%
按下载量换算61

Claude

29.44%
按下载量换算49

Cursor

17.87%
按下载量换算29

Gemini CLI

8.27%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/akillness/skills-template --skill bmad-orchestrator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills