meta: add our skills/commands to ourselves

This commit is contained in:
Paul Bakaus
2025-12-16 14:03:30 -08:00
parent ecc4857204
commit 43dd5ad40b
24 changed files with 4621 additions and 1 deletions
+38 -1
View File
@@ -11,6 +11,7 @@
*/
import path from 'path';
import fs from 'fs';
import { fileURLToPath } from 'url';
import { readSourceFiles, readPatterns } from './lib/utils.js';
import {
@@ -21,6 +22,23 @@ import {
} from './lib/transformers/index.js';
import { createAllZips } from './lib/zip.js';
/**
* Copy directory recursively
*/
function copyDirSync(src, dest) {
fs.mkdirSync(dest, { recursive: true });
const entries = fs.readdirSync(src, { withFileTypes: true });
for (const entry of entries) {
const srcPath = path.join(src, entry.name);
const destPath = path.join(dest, entry.name);
if (entry.isDirectory()) {
copyDirSync(srcPath, destPath);
} else {
fs.copyFileSync(srcPath, destPath);
}
}
}
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const ROOT_DIR = path.resolve(__dirname, '..');
@@ -45,7 +63,26 @@ async function build() {
// Create ZIP bundles
await createAllZips(DIST_DIR);
// Copy Claude Code output to project's .claude directory for local development
const claudeCodeSrc = path.join(DIST_DIR, 'claude-code', '.claude');
const claudeCodeDest = path.join(ROOT_DIR, '.claude');
// Copy commands and skills directories (preserves other files like settings.local.json)
const commandsSrc = path.join(claudeCodeSrc, 'commands');
const skillsSrc = path.join(claudeCodeSrc, 'skills');
const commandsDest = path.join(claudeCodeDest, 'commands');
const skillsDest = path.join(claudeCodeDest, 'skills');
// Remove existing and copy fresh
if (fs.existsSync(commandsDest)) fs.rmSync(commandsDest, { recursive: true });
if (fs.existsSync(skillsDest)) fs.rmSync(skillsDest, { recursive: true });
copyDirSync(commandsSrc, commandsDest);
copyDirSync(skillsSrc, skillsDest);
console.log(`📋 Synced to .claude/: commands + skills`);
console.log('\n✨ Build complete!');
}