Compare commits

..

3 Commits

Author SHA1 Message Date
Ajay Kumar 742f8bf5d4
Merge d756b79322 into 97a533e298 2026-02-25 07:41:06 +00:00
ak95asb d756b79322 fix(quick-spec): fix slash command formatting and file path quoting in step-04
- Add `/` prefix to `quick-dev` slash command references for clarity
  - Quote `{finalFile}` in copy-paste commands to handle spaces in paths
  - Update wording from "To run" to "Load and follow" for precision
  - Add inline note clarifying both are BMAD slash commands/skills
2026-02-25 13:10:47 +05:30
PinkyD 622e1fd813 fix(installer): remove double-escaping of quotes in CSV manifest pipeline (#1746)
* fix(installer): remove double-escaping of quotes in CSV manifest pipeline

cleanForCSV() pre-escaped " to "" before storing in memory, then
escapeCsv() escaped again at CSV write time. After csv-parse round-trip
(which only un-escapes once), descriptions retained doubled quotes
instead of originals, corrupting generated output files.

Fix: remove the redundant quote escaping from cleanForCSV() since
escapeCsv() already handles CSV quoting correctly at write time.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(installer): use single quotes for description in Gemini workflow templates

Replace triple-quoted """{{description}}""" with single-quoted '{{description}}'
to avoid TOML escaping issues in Gemini workflow templates.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 13:10:47 +05:30
1 changed files with 7 additions and 5 deletions

View File

@ -124,18 +124,20 @@ Saved to: {finalFile}
Once you are fully satisfied with the spec (ideally after **Adversarial Review** and maybe a few rounds of **Advanced Elicitation**), it is recommended to run implementation in a FRESH CONTEXT for best results.
To run **Adversarial Review** in a fresh context (recommended for information asymmetry):
Load and follow **Adversarial Review** in a fresh context (recommended for information asymmetry):
\`\`\`
/bmad-review-adversarial-general {finalFile}
/bmad-review-adversarial-general "{finalFile}"
\`\`\`
To start **development** in a fresh context:
Load and follow **development** in a fresh context:
\`\`\`
quick-dev {finalFile}
/quick-dev "{finalFile}"
\`\`\`
_(Both are slash commands — prefix `/` invokes a BMAD skill or workflow.)_
This ensures the agent has clean context focused solely on its task.
```
@ -185,7 +187,7 @@ b) **HALT and wait for user selection.**
When you're ready to implement, run:
```
quick-dev {finalFile}
/quick-dev {finalFile}
```
Ship it!"