fix(skills): revert unnecessary rewording and misapplied REF-01 fixes

- Revert SKILL.md wording change in product-brief-preview (not a
  validation issue)
- Revert single-curly to double-curly conversions in create-architecture
  and create-epics-and-stories where the originals were display
  placeholders for LLM output, not template variables

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alex Verkhovsky 2026-03-15 14:06:06 -06:00
parent 1397c8f44a
commit ac994d683d
5 changed files with 24 additions and 24 deletions

View File

@ -84,5 +84,5 @@ Check activation context immediately:
## External Skills ## External Skills
This workflow may invoke: This workflow uses:
- `bmad-init`Invoke for configuration loading (module: bmm) - `bmad-init`Configuration loading (module: bmm)

View File

@ -112,13 +112,13 @@ Report what was found:
**Documents Found:** **Documents Found:**
- PRD: {{number_of_prd_files_loaded_or_none}} - PRD: {number of PRD files loaded or "None found - REQUIRED"}
- UX Design: {{number_of_ux_files_loaded_or_none}} - UX Design: {number of UX files loaded or "None found"}
- Research: {{number_of_research_files_loaded_or_none}} - Research: {number of research files loaded or "None found"}
- Project docs: {{number_of_project_files_loaded_or_none}} - Project docs: {number of project files loaded or "None found"}
- Project context: {{project_context_rules_count}} - Project context: {project_context_rules count of rules for AI agents found}
**Files loaded:** {{list_of_loaded_file_names}} **Files loaded:** {list of specific file names or "No additional documents found"}
Ready to begin architectural decision making. Do you have any other documents you'd like me to include? Ready to begin architectural decision making. Do you have any other documents you'd like me to include?

View File

@ -64,13 +64,13 @@ Show the user their current progress:
- Input documents loaded: {{number of inputDocuments}} files - Input documents loaded: {{number of inputDocuments}} files
**Document Sections Found:** **Document Sections Found:**
{{list_of_h2_h3_sections_found_in_document}} {list all H2/H3 sections found in the document}
{{if_incomplete_sections}} {if_incomplete_sections}
**Incomplete Areas:** **Incomplete Areas:**
- {{areas_that_appear_incomplete_or_have_placeholders}} - {areas that appear incomplete or have placeholders}
{{/if_incomplete_sections}} {/if_incomplete_sections}
**What would you like to do?** **What would you like to do?**
[R] Resume from where we left off [R] Resume from where we left off

View File

@ -96,15 +96,15 @@ Present your analysis back to user for validation:
"I'm reviewing your project documentation for {{project_name}}. "I'm reviewing your project documentation for {{project_name}}.
{{if_epics_loaded}}I see {{epic_count}} epics with {{story_count}} total stories.{{/if_epics_loaded}} {if_epics_loaded}I see {{epic_count}} epics with {{story_count}} total stories.{/if_epics_loaded}
{{if_no_epics}}I found {{fr_count}} functional requirements organized into {{fr_category_list}}.{{/if_no_epics}} {if_no_epics}I found {{fr_count}} functional requirements organized into {{fr_category_list}}.{/if_no_epics}
{{if_ux_loaded}}I also found your UX specification which defines the user experience requirements.{{/if_ux_loaded}} {if_ux_loaded}I also found your UX specification which defines the user experience requirements.{/if_ux_loaded}
**Key architectural aspects I notice:** **Key architectural aspects I notice:**
- [Summarize core functionality from FRs] - [Summarize core functionality from FRs]
- [Note critical NFRs that will shape architecture] - [Note critical NFRs that will shape architecture]
- {{if_ux_loaded}}[Note UX complexity and technical requirements]{{/if_ux_loaded}} - {if_ux_loaded}[Note UX complexity and technical requirements]{/if_ux_loaded}
- [Identify unique technical challenges or constraints] - [Identify unique technical challenges or constraints]
- [Highlight any regulatory or compliance requirements] - [Highlight any regulatory or compliance requirements]

View File

@ -79,18 +79,18 @@ Stories must be independently completable in sequence:
**STORY FORMAT (from template):** **STORY FORMAT (from template):**
``` ```
### Story {{N}}.{{M}}: {{story_title}} ### Story {N}.{M}: {story_title}
As a {{user_type}}, As a {user_type},
I want {{capability}}, I want {capability},
So that {{value_benefit}}. So that {value_benefit}.
**Acceptance Criteria:** **Acceptance Criteria:**
**Given** {{precondition}} **Given** {precondition}
**When** {{action}} **When** {action}
**Then** {{expected_outcome}} **Then** {expected_outcome}
**And** {{additional_criteria}} **And** {additional_criteria}
``` ```
**✅ GOOD STORY EXAMPLES:** **✅ GOOD STORY EXAMPLES:**