changed folder structures to make it easier for users

This commit is contained in:
Paul Bakaus
2025-11-16 19:00:27 -08:00
parent 89d179143b
commit 2e5d653273
83 changed files with 66 additions and 49 deletions
+4 -3
View File
@@ -8,10 +8,11 @@ import { cleanDir, ensureDir, writeFile } from '../utils.js';
* Cursor doesn't support arguments or frontmatter.
*/
export function transformCursor(commands, skills, distDir) {
const commandsDir = path.join(distDir, 'cursor/commands');
const rulesDir = path.join(distDir, 'cursor/rules');
const cursorDir = path.join(distDir, 'cursor');
const commandsDir = path.join(cursorDir, '.cursor/commands');
const rulesDir = path.join(cursorDir, '.cursor/rules');
cleanDir(path.join(distDir, 'cursor'));
cleanDir(cursorDir);
ensureDir(commandsDir);
ensureDir(rulesDir);