Compare commits

..

4 Commits

Author SHA1 Message Date
Wendy Smoak 388b083e31
Merge da03a755b2 into 3dd37bc94d 2026-02-21 01:32:57 +00:00
Wendy Smoak da03a755b2 pass linewidth 0 to avoid breaking lines 2026-02-20 20:31:04 -05:00
Wendy Smoak c28ba2a5d2 add utf8 2026-02-20 20:00:58 -05:00
Wendy Smoak 422ad8c31b use same names in yaml and installer 2026-02-20 19:58:24 -05:00
2 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ class CodexSkillsSetup extends BaseIdeSetup {
const skillContent = this.transformToSkillFormat(artifact.content, skillName); const skillContent = this.transformToSkillFormat(artifact.content, skillName);
// Write SKILL.md // Write SKILL.md
await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent); await fs.writeFile(path.join(skillDir, 'SKILL.md'), skillContent, 'utf8');
writtenCount++; writtenCount++;
} }
@ -161,7 +161,7 @@ class CodexSkillsSetup extends BaseIdeSetup {
} }
// Build new frontmatter with only skills-spec fields, let yaml handle quoting // 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}`; return `---\n${newFrontmatter}\n---\n${body}`;
} }

View File

@ -51,14 +51,14 @@ platforms:
template_type: windsurf template_type: windsurf
codex: codex:
name: "Codex (Deprecated)" name: "Codex (Custom Prompts) (Deprecated)"
preferred: false preferred: false
category: cli category: cli
description: "OpenAI Codex integration (legacy custom prompts)" description: "OpenAI Codex integration (legacy custom prompts)"
# No installer config - uses custom codex.js # No installer config - uses custom codex.js
codex-skills: codex-skills:
name: "Codex" name: "Codex (Skills)"
preferred: true preferred: true
category: cli category: cli
description: "OpenAI Codex integration (skills)" description: "OpenAI Codex integration (skills)"