@fission-ai/openspec
Version:
AI-native system for spec-driven development
28 lines (27 loc) • 677 B
JavaScript
/**
* CodeBuddy Command Adapter
*
* Formats commands for CodeBuddy following its frontmatter specification.
*/
import path from 'path';
/**
* CodeBuddy adapter for command generation.
* File path: .codebuddy/commands/opsx/<id>.md
* Frontmatter: name, description, argument-hint
*/
export const codebuddyAdapter = {
toolId: 'codebuddy',
getFilePath(commandId) {
return path.join('.codebuddy', 'commands', 'opsx', `${commandId}.md`);
},
formatFile(content) {
return `---
name: ${content.name}
description: "${content.description}"
argument-hint: "[command arguments]"
---
${content.body}
`;
},
};
//# sourceMappingURL=codebuddy.js.map