bmad-help

GitHub

分析用户在BMad工作流中的当前状态,解答疑问并推荐下一步操作。通过读取配置、目录和输出文件,提供清晰的引导,避免信息过载,支持快速启动推荐技能或回答通用问题。

src/core-skills/bmad-help/SKILL.md bmad-code-org/BMAD-METHOD

Trigger Scenarios

用户询问BMad帮助 用户想知道接下来该做什么 用户询问如何开始使用BMad

Install

npx skills add bmad-code-org/BMAD-METHOD --skill bmad-help -g -y
More Options

Non-standard path

npx skills add https://github.com/bmad-code-org/BMAD-METHOD/tree/main/src/core-skills/bmad-help -g -y

Use without installing

npx skills use bmad-code-org/BMAD-METHOD@bmad-help

指定 Agent (Claude Code)

npx skills add bmad-code-org/BMAD-METHOD --skill bmad-help -a claude-code -g -y

安装 repo 全部 skill

npx skills add bmad-code-org/BMAD-METHOD --all -g -y

预览 repo 内 skill

npx skills add bmad-code-org/BMAD-METHOD --list

SKILL.md

Frontmatter
{
    "name": "bmad-help",
    "description": "Analyzes current state and user query to answer BMad questions or recommend the next skill(s) to use. Use when user asks for help, bmad help, what to do next, or what to start with in BMad"
}

BMad Help

Purpose

Help the user understand where they are in their BMad workflow and what to do next, and also answer broader questions when asked that could be augmented with remote sources such as module documentation sources.

Desired Outcomes

When this skill completes, the user should:

  1. Know where they are — which module and phase they're in, what's already been completed
  2. Know what to do next — the next recommended and/or required step, with clear reasoning
  3. Know how to invoke it — skill name, menu code, action context, and any args that shortcut the conversation
  4. Get offered a quick start — when a single skill is the clear next step, offer to run it for the user right now rather than just listing it
  5. Feel oriented, not overwhelmed — surface only what's relevant to their current position; don't dump the entire catalog
  6. Get answers to general questions — when the question doesn't map to a specific skill, use the module's registered documentation to give a grounded answer

Data Sources

  • Catalog: {project-root}/_bmad/_config/bmad-help.csv — assembled manifest of all installed module skills
  • Config: Run uv run {project-root}/_bmad/scripts/resolve_config.py --project-root {project-root} and use the merged JSON to resolve output-location variables and read core.communication_language and modules.bmm.project_knowledge. The resolver merges _bmad/config.toml, _bmad/config.user.toml, _bmad/custom/config.toml, and _bmad/custom/config.user.toml in that order.
  • Artifacts: Files matching outputs patterns at resolved output-location paths reveal which steps are possibly completed; their content may also provide grounding context for recommendations
  • Project knowledge: If project_knowledge resolves to an existing path, read it for grounding context. Never fabricate project-specific details.
  • Module docs: Rows with _meta in the skill column carry a URL or path in output-location pointing to the module's documentation. Fetch and use these to answer general questions about that module.

CSV Interpretation

The catalog uses this format:

module,skill,display-name,menu-code,description,action,args,phase,preceded-by,followed-by,required,output-location,outputs

Phases determine the high-level flow:

  • anytime — available regardless of workflow state
  • Skills group into folders (plan, ship; some modules use numbered phases) and flow in order; naming varies by module

Sequencing determines recommended ordering within and across phases (these are soft suggestions, not hard gates — see required for gating):

  • preceded-by — skills that should ideally complete before this one
  • followed-by — skills that should ideally run after this one
  • Format: skill-name for single-action skills, skill-name:action for multi-action skills

Required gates:

  • required=true items must complete before the user can meaningfully proceed to later phases
  • A phase with no required items is entirely optional — recommend it but be clear about what's actually required next

Completion detection:

  • Search resolved output paths for outputs patterns and fuzzy-match found files to catalog rows
  • Treat a matching output as evidence that the skill started, not that it completed
  • Inspect matched artifacts for explicit completion evidence, such as final status or finalization markers; a draft or incomplete marker means the skill is still in progress
  • Honor completion stated by the user or established in the current conversation
  • When completion cannot be determined reliably, say so and ask the user; do not recommend advancing based on file presence alone

Descriptions carry routing context — some contain cycle info and alternate paths (e.g., "back to DS if fixes needed"). Read them as navigation hints, not just display text.

Response Format

For each recommended item, present:

  • [menu-code] Display name — e.g., "[PR] PRD"
  • Skill name in backticks — e.g., bmad-prd
  • For multi-action skills: action invocation context — e.g., "dev lets run a code review!"
  • Description if present in CSV; otherwise your existing knowledge of the skill suffices
  • Args if available

Ordering: Show optional items first, then the next required item. Make it clear which is which.

Constraints

  • Present all output in {communication_language}
  • Recommend running each skill in a fresh context window
  • Match the user's tone — conversational when they're casual, structured when they want specifics
  • If the active module is ambiguous, retrieve all meta rows remote sources to find relevant info also to help answer their question

Version History

  • 6b83751 Current 2026-08-28 21:43
  • 67d876f 2026-08-20 10:28

Same Skill Collection

src/bmm-skills/agents/bmad-agent-analyst/SKILL.md
src/bmm-skills/agents/bmad-agent-architect/SKILL.md
src/bmm-skills/agents/bmad-agent-dev/SKILL.md
src/bmm-skills/agents/bmad-agent-pm/SKILL.md
src/bmm-skills/agents/bmad-agent-ux-designer/SKILL.md
src/bmm-skills/plan/bmad-architecture/SKILL.md
src/bmm-skills/plan/bmad-create-epics-and-stories/SKILL.md
src/bmm-skills/plan/bmad-generate-project-context/SKILL.md
src/bmm-skills/plan/bmad-prd/SKILL.md
src/bmm-skills/plan/bmad-prfaq/SKILL.md
src/bmm-skills/plan/bmad-product-brief/SKILL.md
src/bmm-skills/plan/bmad-project-context/SKILL.md
src/bmm-skills/plan/bmad-spec/SKILL.md
src/bmm-skills/plan/bmad-sprint-planning/SKILL.md
src/bmm-skills/plan/bmad-ux/SKILL.md
src/bmm-skills/ship/bmad-build-auto/SKILL.md
src/bmm-skills/ship/bmad-build/SKILL.md
src/bmm-skills/ship/bmad-checkpoint-preview/SKILL.md
src/bmm-skills/ship/bmad-code-review/SKILL.md
src/bmm-skills/ship/bmad-correct-course/SKILL.md
src/bmm-skills/ship/bmad-qa-generate-e2e-tests/SKILL.md
src/bmm-skills/ship/bmad-retrospective/SKILL.md
src/bmm-skills/ship/bmad-walkthrough/SKILL.md
src/bmm-skills/v6-shims/bmad-checkpoint-preview/SKILL.md
src/bmm-skills/v6-shims/bmad-create-architecture/SKILL.md
src/bmm-skills/v6-shims/bmad-create-story/SKILL.md
src/bmm-skills/v6-shims/bmad-dev-auto/SKILL.md
src/bmm-skills/v6-shims/bmad-dev-story/SKILL.md
src/bmm-skills/v6-shims/bmad-document-project/SKILL.md
src/bmm-skills/v6-shims/bmad-domain-research/SKILL.md
src/bmm-skills/v6-shims/bmad-market-research/SKILL.md
src/bmm-skills/v6-shims/bmad-quick-dev/SKILL.md
src/bmm-skills/v6-shims/bmad-sprint-status/SKILL.md
src/bmm-skills/v6-shims/bmad-technical-research/SKILL.md
src/bmm-skills/v6-shims/bmad-validate-prd/SKILL.md
src/core-skills/bmad-advanced-elicitation/SKILL.md
src/core-skills/bmad-brainstorming/SKILL.md
src/core-skills/bmad-customize/SKILL.md
src/core-skills/bmad-forge-idea/SKILL.md
src/core-skills/bmad-party-mode/SKILL.md
test/fixtures/validate-skills/deprecated-shim/SKILL.md
src/bmm-skills/v6-shims/bmad-create-prd/SKILL.md
src/bmm-skills/v6-shims/bmad-edit-prd/SKILL.md
src/core-skills/bmad-deep-recon/SKILL.md
src/core-skills/bmad-review/SKILL.md
src/core-skills/v6-shims/bmad-editorial-review-prose/SKILL.md
src/core-skills/v6-shims/bmad-editorial-review-structure/SKILL.md
src/core-skills/v6-shims/bmad-editorial-review/SKILL.md
src/core-skills/v6-shims/bmad-review-adversarial-general/SKILL.md

Metadata

Files
0
Version
6b83751
Hash
72573fbb
Indexed
2026-08-20 10:28

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-01 18:13
浙ICP备14020137号-1 $bản đồ khách truy cập$