Compare commits
3 Commits
6c3e1c928e
...
665d6446d6
| Author | SHA1 | Date |
|---|---|---|
|
|
665d6446d6 | |
|
|
97a533e298 | |
|
|
b83ccc71b9 |
|
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [6.0.3]
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
* Fix workflow descriptions to use proper quotes so they format better in skill conversion and don't break yaml front matter
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [6.0.2]
|
## [6.0.2]
|
||||||
|
|
||||||
### 🎁 Features
|
### 🎁 Features
|
||||||
|
|
|
||||||
|
|
@ -24,16 +24,14 @@ class ManifestGenerator {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clean text for CSV output by normalizing whitespace and escaping quotes
|
* Clean text for CSV output by normalizing whitespace.
|
||||||
|
* Note: Quote escaping is handled by escapeCsv() at write time.
|
||||||
* @param {string} text - Text to clean
|
* @param {string} text - Text to clean
|
||||||
* @returns {string} Cleaned text safe for CSV
|
* @returns {string} Cleaned text
|
||||||
*/
|
*/
|
||||||
cleanForCSV(text) {
|
cleanForCSV(text) {
|
||||||
if (!text) return '';
|
if (!text) return '';
|
||||||
return text
|
return text.trim().replaceAll(/\s+/g, ' '); // Normalize all whitespace (including newlines) to single space
|
||||||
.trim()
|
|
||||||
.replaceAll(/\s+/g, ' ') // Normalize all whitespace (including newlines) to single space
|
|
||||||
.replaceAll('"', '""'); // Escape quotes for CSV
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
description = """{{description}}"""
|
description = '{{description}}'
|
||||||
prompt = """
|
prompt = """
|
||||||
Execute the BMAD '{{name}}' workflow.
|
Execute the BMAD '{{name}}' workflow.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
description = """{{description}}"""
|
description = '{{description}}'
|
||||||
prompt = """
|
prompt = """
|
||||||
Execute the BMAD '{{name}}' workflow.
|
Execute the BMAD '{{name}}' workflow.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue