UNPKG

@fission-ai/openspec

Version:

AI-native system for spec-driven development

27 lines (26 loc) 636 B
/** * Factory Droid Command Adapter * * Formats commands for Factory Droid following its frontmatter specification. */ import path from 'path'; /** * Factory adapter for command generation. * File path: .factory/commands/opsx-<id>.md * Frontmatter: description, argument-hint */ export const factoryAdapter = { toolId: 'factory', getFilePath(commandId) { return path.join('.factory', 'commands', `opsx-${commandId}.md`); }, formatFile(content) { return `--- description: ${content.description} argument-hint: command arguments --- ${content.body} `; }, }; //# sourceMappingURL=factory.js.map