您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. **Language:** Use `{communication_language}` for all output.
  2. **Output Language:** Use `{document_output_language}` for documents.
  3. **Output Location:** `{planning_artifacts}`
  4. **Coaching stance:** Be direct and honest — the verdict exists to surface truth, not to soften it. But frame every finding constructively.
  5. # Stage 5: The Verdict
  6. **Goal:** Step back from the details and give the user an honest assessment of where their concept stands. Finalize the PRFAQ document and produce the downstream distillate.
  7. ## The Assessment
  8. Review the entire PRFAQ — press release, customer FAQ, internal FAQ — and deliver a candid verdict:
  9. **Concept Strength:** Rate the overall concept readiness. Not a score — a narrative assessment. Where is the thinking sharp and where is it still soft? What survived the gauntlet and what barely held together?
  10. **Three categories of findings:**
  11. - **Forged in steel** — aspects of the concept that are clear, compelling, and defensible. The press release sections that would actually make a customer stop. The FAQ answers that are honest and convincing.
  12. - **Needs more heat** — areas that are promising but underdeveloped. The user has a direction but hasn't gone deep enough. These need more work before they're ready for a PRD.
  13. - **Cracks in the foundation** — genuine risks, unresolved contradictions, or gaps that could undermine the whole concept. Not necessarily deal-breakers, but things that must be addressed deliberately.
  14. **Present the verdict directly.** Don't soften it. The whole point of this process is to surface truth before committing resources. But frame findings constructively — for every crack, suggest what it would take to address it.
  15. ## Finalize the Document
  16. 1. **Polish the PRFAQ** — ensure the press release reads as a cohesive narrative, FAQs flow logically, formatting is consistent
  17. 2. **Append The Verdict section** to the output document with the assessment
  18. 3. Update frontmatter: `status: "complete"`, `stage: 5`, `updated` timestamp
  19. ## Produce the Distillate
  20. Throughout the process, you captured context beyond what fits in the PRFAQ. Source material for the distillate includes the `<!-- coaching-notes-stage-N -->` blocks in the output document (which survive context compaction) as well as anything remaining in session memory — rejected framings, alternative positioning, technical constraints, competitive intelligence, scope signals, resource estimates, open questions.
  21. **Always produce the distillate** at `{planning_artifacts}/prfaq-{project_name}-distillate.md`:
  22. ```yaml
  23. ---
  24. title: "PRFAQ Distillate: {project_name}"
  25. type: llm-distillate
  26. source: "prfaq-{project_name}.md"
  27. created: "{timestamp}"
  28. purpose: "Token-efficient context for downstream PRD creation"
  29. ---
  30. ```
  31. **Distillate content:** Dense bullet points grouped by theme. Each bullet stands alone with enough context for a downstream LLM to use it. Include:
  32. - Rejected framings and why they were dropped
  33. - Requirements signals captured during coaching
  34. - Technical context, constraints, and platform preferences
  35. - Competitive intelligence from discussion
  36. - Open questions and unknowns flagged during internal FAQ
  37. - Scope signals — what's in, out, and maybe for MVP
  38. - Resource and timeline estimates discussed
  39. - The Verdict findings (especially "needs more heat" and "cracks") as actionable items
  40. ## Present Completion
  41. "Your PRFAQ for {project_name} has survived the gauntlet.
  42. **PRFAQ:** `{planning_artifacts}/prfaq-{project_name}.md`
  43. **Detail Pack:** `{planning_artifacts}/prfaq-{project_name}-distillate.md`
  44. **Recommended next step:** Use the PRFAQ and detail pack as input for PRD creation. The PRFAQ replaces the product brief in your planning pipeline — tell your PM 'create a PRD' and point them to these files."
  45. **Headless mode output:**
  46. ```json
  47. {
  48. "status": "complete",
  49. "prfaq": "{planning_artifacts}/prfaq-{project_name}.md",
  50. "distillate": "{planning_artifacts}/prfaq-{project_name}-distillate.md",
  51. "verdict": "forged|needs-heat|cracked",
  52. "key_risks": ["top unresolved items"],
  53. "open_questions": ["unresolved items from FAQs"]
  54. }
  55. ```
  56. ## Stage Complete
  57. This is the terminal stage. If the user wants to revise, loop back to the relevant stage. Otherwise, the workflow is done.
  58. Run: `python3 {project-root}/_bmad/scripts/resolve_customization.py --skill {skill-root} --key workflow.on_complete`
  59. If the resolved `workflow.on_complete` is non-empty, follow it as the final terminal instruction before exiting.