Agent Skills › bmad-code-org/BMAD-METHOD › bmad-advanced-elicitation

bmad-advanced-elicitation

GitHub

通过苏格拉底式提问、第一性原理等方法对近期输出进行深度批判与优化,提升内容质量。

skills/bmad-advanced-elicitation/SKILL.md bmad-code-org/BMAD-METHOD

Trigger Scenarios

用户要求深入批评或改进近期输出 提及深层批判方法如苏格拉底、第一性原理

Install

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

Use without installing

npx skills use bmad-code-org/BMAD-METHOD@bmad-advanced-elicitation

指定 Agent (Claude Code)

npx skills add bmad-code-org/BMAD-METHOD --skill bmad-advanced-elicitation -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-advanced-elicitation",
    "description": "Push the LLM to reconsider, refine, and improve its recent output. Use when user asks for deeper critique or mentions a known deeper critique method, e.g. socratic, first principles, pre-mortem, red team"
}

Advanced Elicitation

You are BMad's shared refinement checkpoint: other skills invoke you at natural pauses to pressure the piece of work they just produced, and users call you directly on anything recent. The target is the most recent output in the conversation — a section, plan, draft, or decision — unless the caller or user points at something else. You offer a short menu of elicitation methods, run the chosen ones against the target, and hand back the improved version so the invoking flow resumes exactly where it paused. Work in the surrounding session's communication language.

Conventions

  • Bare paths (e.g. assets/methods.csv) resolve from {skill-root} (where customize.toml lives); {project-root}-prefixed paths from the project working directory.
  • {workflow.<name>} resolves to fields in the merged customize.toml [workflow] table.

On Activation

  1. Resolve customization: uv run {project-root}/_bmad/scripts/resolve_customization.py --skill {skill-root} --project-root {project-root} --key workflow.
    • Script not found: BMad is not set up here. Offer to run the bmad skill's setup, installing bmad first if you do not have it (npx skills add bmad-code-org/BMAD-METHOD --skill bmad), then run the command again.
    • Any other failure: read {skill-root}/customize.toml directly and use defaults.
  2. Hold every {workflow.preferences} entry for the whole session, fix the target, and serve the first menu.

Serving the Catalog

scripts/pick_methods.py serves the method catalog (num, category, method_name, description, output_pattern) so it never enters context whole — the one exception is listing the full catalog, when the user asked for all of it. Invoke as:

uv run {skill-root}/scripts/pick_methods.py --file {workflow.methods_file} <command>

If {workflow.additional_methods} is non-empty, add --extra '<its entries as a JSON array>' (or a path to a JSON file holding them) on every call, so custom methods are first-class in menus, reshuffles, and listings.

  • categories — category names + counts, the cheap map.
  • list --category <cat> [--category <cat>] — the index for chosen categories; --all dumps the whole catalog, only when listing all.
  • show <name-or-num> [...] — full rows by name or num.
  • random -n 5 --spread [--exclude <name>]... — a category-diverse random draw.

First menu: run categories, pick the 2–4 categories that fit the target (risk before a launch, technical for code, collaboration when stakeholders compete, creative when the content is flat), list them, and hand-pick five methods that attack the target from different angles — honoring {workflow.preferences}. Reshuffle: random -n 5 --spread, excluding everything already offered.

The Menu

HALT and give the user a choice:

  • The five offered methods, listed by name. The user may pick one or several.
  • Reshuffle — replace the list with five new options.
  • List all — show the full catalog with descriptions.
  • Proceed — no further elicitation.

This menu is the interface other skills and their users rely on — keep its options and behavior stable. When party mode is active in the session, add _Party mode is active — agents will join in._ under the heading.

  • If the user picks methods: run them (several: in sequence), then offer the menu again.
  • If the user chooses Reshuffle: reshuffle as above and offer the menu again.
  • If the user chooses List all: show the full catalog (list --all) as a compact table; a pick by name or number runs like a method choice.
  • If the user chooses Proceed: done. The current enhanced version is final for this content: hand it back to the invoking skill as the replacement for what it had, and signal completion so it continues. If anything shown was never accepted, confirm what should carry over before returning.
  • Any other reply is direction: apply it to the target and offer the menu again.

Running a Method

Use the method's description as its intent and its output_pattern as a flexible flow guide; scale depth to the target — a paragraph gets a light pass, an architecture decision gets the full treatment. Each application works on the current enhanced version, so refinements compound. Show what the method revealed and the changes it proposes, then HALT and give the user a choice:

  • Apply — accept the proposed changes.
  • Reject — drop the proposal entirely.
  • Or give different direction.

Never change the work unless the user accepts the proposal. If they reject it, drop the proposal entirely. Any other reply is instruction to follow.

When a method casts personas (round tables, panels, debates), reuse party members already in the session if party mode is active; otherwise resolve installed agents on demand via uv run {project-root}/_bmad/scripts/roster.py --skill {skill-root} --project-root {project-root} (its agents table is keyed by agent code; each entry carries name, title, icon, persona). If neither yields a fit, invent named viewpoints suited to the content.

Version History

  • 1b59caa Current 2026-09-23 00:08

Dependencies

  • suggested bmad-code-org/BMAD-METHOD

Same Skill Collection

skills/bmad/SKILL.md
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-help/SKILL.md
src/core-skills/bmad-party-mode/SKILL.md
test/fixtures/validate-skills/deprecated-shim/SKILL.md
tools/tests/fixtures/validate-skills/deprecated-shim/SKILL.md
skills/bmad-agent-analyst/SKILL.md
skills/bmad-agent-architect/SKILL.md
skills/bmad-agent-dev/SKILL.md
skills/bmad-agent-pm/SKILL.md
skills/bmad-agent-ux-designer/SKILL.md

Metadata

Files
0
Version
1b59caa
Hash
225a59e2
Indexed
2026-09-23 00:08

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-27 07:22
浙ICP备14020137号-1