pass linewidth 0 to avoid breaking lines

This commit is contained in:
Wendy Smoak 2026-02-20 20:31:04 -05:00
parent c28ba2a5d2
commit da03a755b2
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class CodexSkillsSetup extends BaseIdeSetup {
}
// Build new frontmatter with only skills-spec fields, let yaml handle quoting
const newFrontmatter = yaml.stringify({ name: skillName, description }).trimEnd();
const newFrontmatter = yaml.stringify({ name: skillName, description }, { lineWidth: 0 }).trimEnd();
return `---\n${newFrontmatter}\n---\n${body}`;
}