diff --git a/tools/cli/installers/lib/ide/github-copilot.js b/tools/cli/installers/lib/ide/github-copilot.js index 196e30453..a64ffa19e 100644 --- a/tools/cli/installers/lib/ide/github-copilot.js +++ b/tools/cli/installers/lib/ide/github-copilot.js @@ -556,7 +556,7 @@ Type \`/bmad-\` in Copilot Chat to see all available BMAD workflows and agent ac * @returns {string} Escaped string safe for YAML single-quoted context */ escapeYamlSingleQuote(value) { - return value.replaceAll("'", "''"); + return (value || '').replaceAll("'", "''"); } /**