diff --git a/packages/wbfy/src/generators/skills.ts b/packages/wbfy/src/generators/skills.ts index 32e5eb43..7db3ef9a 100644 --- a/packages/wbfy/src/generators/skills.ts +++ b/packages/wbfy/src/generators/skills.ts @@ -1,25 +1,9 @@ -import fs from 'node:fs/promises'; -import path from 'node:path'; - import { logger } from '../logger.js'; import type { PackageConfig } from '../packageConfig.js'; -export async function installAgentSkills(rootConfig: PackageConfig): Promise { +export async function installAgentSkills(_rootConfig: PackageConfig): Promise { return logger.functionIgnoringException('installAgentSkills', async () => { - // TODO: We are temporarily removing agent skills from the repo - // await runInstallAgentSkills(rootConfig); - await Promise.all([ - fs.rm(path.resolve(rootConfig.dirPath, '.agents'), { - force: true, - recursive: true, - }), - fs.rm(path.resolve(rootConfig.dirPath, '.claude'), { - force: true, - recursive: true, - }), - fs.rm(path.resolve(rootConfig.dirPath, 'skills-lock.json'), { - force: true, - }), - ]); + // TODO: We are temporarily not installing managed agent skills into repos. + // await runInstallAgentSkills(_rootConfig); }); }