joycraft 0.5.3 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,10 +6,10 @@ import {
6
6
  import {
7
7
  SKILLS,
8
8
  TEMPLATES
9
- } from "./chunk-HHW4Q2UC.js";
9
+ } from "./chunk-5BZUWHEY.js";
10
10
 
11
11
  // src/init.ts
12
- import { mkdirSync as mkdirSync2, existsSync as existsSync3, writeFileSync as writeFileSync2, readFileSync as readFileSync3 } from "fs";
12
+ import { mkdirSync as mkdirSync2, existsSync as existsSync3, writeFileSync as writeFileSync2, readFileSync as readFileSync3, readdirSync, statSync } from "fs";
13
13
  import { join as join3, basename, resolve, dirname } from "path";
14
14
 
15
15
  // src/detect.ts
@@ -300,7 +300,19 @@ This project uses [Joycraft](https://github.com/maksutovic/joycraft) for AI deve
300
300
 
301
301
  Run \`/joycraft-tune\` to see where your project stands and what to improve next.`;
302
302
  }
303
- function generateCLAUDEMd(projectName, stack) {
303
+ function generateProjectToolsSection(existingSkills) {
304
+ const MAX_LISTED = 10;
305
+ let skillList;
306
+ if (existingSkills.length <= MAX_LISTED) {
307
+ skillList = existingSkills.join(", ");
308
+ } else {
309
+ skillList = existingSkills.slice(0, MAX_LISTED).join(", ") + `, and ${existingSkills.length - MAX_LISTED} more \u2014 see .claude/skills/`;
310
+ }
311
+ return `## Project Tools
312
+
313
+ This project has additional tools beyond Joycraft. Always check \`.claude/skills/\` for available skills: ${skillList}`;
314
+ }
315
+ function generateCLAUDEMd(projectName, stack, existingSkills = []) {
304
316
  const frameworkNote = stack.framework ? ` (${stack.framework})` : "";
305
317
  const langLabel = stack.language === "unknown" ? "" : ` | **Stack:** ${stack.language}${frameworkNote}`;
306
318
  const lines = [
@@ -323,6 +335,9 @@ function generateCLAUDEMd(projectName, stack) {
323
335
  generateGettingStartedSection(),
324
336
  ""
325
337
  ];
338
+ if (existingSkills.length > 0) {
339
+ lines.push(generateProjectToolsSection(existingSkills), "");
340
+ }
326
341
  return lines.join("\n");
327
342
  }
328
343
 
@@ -527,7 +542,7 @@ function generateDenyPatternsFile(customPatterns = []) {
527
542
  }
528
543
  return lines.join("\n") + "\n";
529
544
  }
530
- function installSafeguardHooks(targetDir, customPatterns = [], force = false) {
545
+ function installSafeguardHooks(targetDir, customPatterns = [], force = false, skipSettingsMerge = false) {
531
546
  const result = { created: [], skipped: [] };
532
547
  const hooksDir = join2(targetDir, ".claude", "hooks", "joycraft");
533
548
  if (!existsSync2(hooksDir)) {
@@ -547,31 +562,34 @@ function installSafeguardHooks(targetDir, customPatterns = [], force = false) {
547
562
  } else {
548
563
  result.skipped.push(patternsPath);
549
564
  }
550
- const settingsPath = join2(targetDir, ".claude", "settings.json");
551
- let settings = {};
552
- if (existsSync2(settingsPath)) {
553
- try {
554
- settings = JSON.parse(readFileSync2(settingsPath, "utf-8"));
555
- } catch {
565
+ if (!skipSettingsMerge) {
566
+ const settingsPath = join2(targetDir, ".claude", "settings.json");
567
+ let settings = {};
568
+ if (existsSync2(settingsPath)) {
569
+ try {
570
+ settings = JSON.parse(readFileSync2(settingsPath, "utf-8"));
571
+ } catch {
572
+ return result;
573
+ }
556
574
  }
557
- }
558
- if (!settings.hooks) settings.hooks = {};
559
- const hooks = settings.hooks;
560
- if (!hooks.PreToolUse) hooks.PreToolUse = [];
561
- const preToolUse = hooks.PreToolUse;
562
- const hasJoycraftHook = preToolUse.some((h) => {
563
- const innerHooks = h.hooks;
564
- return innerHooks?.some((ih) => typeof ih.command === "string" && ih.command.includes("joycraft"));
565
- });
566
- if (!hasJoycraftHook) {
567
- preToolUse.push({
568
- matcher: "Bash",
569
- hooks: [{
570
- type: "command",
571
- command: ".claude/hooks/joycraft/block-dangerous.sh"
572
- }]
575
+ if (!settings.hooks) settings.hooks = {};
576
+ const hooks = settings.hooks;
577
+ if (!hooks.PreToolUse) hooks.PreToolUse = [];
578
+ const preToolUse = hooks.PreToolUse;
579
+ const hasJoycraftHook = preToolUse.some((h) => {
580
+ const innerHooks = h.hooks;
581
+ return innerHooks?.some((ih) => typeof ih.command === "string" && ih.command.includes("joycraft"));
573
582
  });
574
- writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
583
+ if (!hasJoycraftHook) {
584
+ preToolUse.push({
585
+ matcher: "Bash",
586
+ hooks: [{
587
+ type: "command",
588
+ command: ".claude/hooks/joycraft/block-dangerous.sh"
589
+ }]
590
+ });
591
+ writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
592
+ }
575
593
  }
576
594
  return result;
577
595
  }
@@ -599,6 +617,19 @@ async function init(dir, opts) {
599
617
  ensureDir(join3(targetDir, "docs", sub));
600
618
  }
601
619
  const skillsDir = join3(targetDir, ".claude", "skills");
620
+ let existingSkills = [];
621
+ if (existsSync3(skillsDir)) {
622
+ existingSkills = readdirSync(skillsDir).filter((name) => {
623
+ if (name.startsWith("joycraft-")) return false;
624
+ if (name.startsWith(".")) return false;
625
+ const fullPath = join3(skillsDir, name);
626
+ try {
627
+ return statSync(fullPath).isDirectory();
628
+ } catch {
629
+ return false;
630
+ }
631
+ });
632
+ }
602
633
  for (const [filename, content] of Object.entries(SKILLS)) {
603
634
  const skillName = filename.replace(/\.md$/, "");
604
635
  const skillDir = join3(skillsDir, skillName);
@@ -616,7 +647,7 @@ async function init(dir, opts) {
616
647
  result.skipped.push(claudeMdPath);
617
648
  } else {
618
649
  const projectName = basename(targetDir);
619
- const content = generateCLAUDEMd(projectName, stack);
650
+ const content = generateCLAUDEMd(projectName, stack, existingSkills);
620
651
  writeFileSync2(claudeMdPath, content, "utf-8");
621
652
  result.created.push(claudeMdPath);
622
653
  }
@@ -655,50 +686,63 @@ try {
655
686
  writeFile(join3(hooksDir, "joycraft-version-check.mjs"), hookScript, opts.force, result);
656
687
  const settingsPath = join3(targetDir, ".claude", "settings.json");
657
688
  let settings = {};
689
+ let settingsMalformed = false;
658
690
  if (existsSync3(settingsPath)) {
659
691
  try {
660
692
  settings = JSON.parse(readFileSync3(settingsPath, "utf-8"));
661
693
  } catch {
694
+ settingsMalformed = true;
695
+ result.warnings.push(
696
+ "settings.json exists but is malformed \u2014 skipping settings merge to protect your config.\n Fix the JSON in .claude/settings.json and re-run init."
697
+ );
662
698
  }
663
699
  }
664
- if (!settings.hooks) settings.hooks = {};
665
- const hooksConfig = settings.hooks;
666
- if (!hooksConfig.SessionStart) hooksConfig.SessionStart = [];
667
- const sessionStartHooks = hooksConfig.SessionStart;
668
- const hasJoycraftHook = sessionStartHooks.some((h) => {
669
- const innerHooks = h.hooks;
670
- return innerHooks?.some((ih) => typeof ih.command === "string" && ih.command.includes("joycraft"));
671
- });
672
- if (!hasJoycraftHook) {
673
- sessionStartHooks.push({
674
- matcher: "",
675
- hooks: [{
676
- type: "command",
677
- command: "node .claude/hooks/joycraft-version-check.mjs"
678
- }]
700
+ if (!settingsMalformed) {
701
+ if (!settings.hooks) settings.hooks = {};
702
+ const hooksConfig = settings.hooks;
703
+ if (!hooksConfig.SessionStart) hooksConfig.SessionStart = [];
704
+ const sessionStartHooks = hooksConfig.SessionStart;
705
+ const hasJoycraftHook = sessionStartHooks.some((h) => {
706
+ const innerHooks = h.hooks;
707
+ return innerHooks?.some((ih) => typeof ih.command === "string" && ih.command.includes("joycraft"));
679
708
  });
680
- writeFileSync2(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
681
- result.created.push(settingsPath);
682
- }
683
- const permissions = generatePermissions(stack);
684
- if (existsSync3(settingsPath)) {
685
- try {
686
- settings = JSON.parse(readFileSync3(settingsPath, "utf-8"));
687
- } catch {
709
+ if (!hasJoycraftHook) {
710
+ sessionStartHooks.push({
711
+ matcher: "",
712
+ hooks: [{
713
+ type: "command",
714
+ command: "node .claude/hooks/joycraft-version-check.mjs"
715
+ }]
716
+ });
717
+ writeFileSync2(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
718
+ result.created.push(settingsPath);
719
+ }
720
+ const permissions = generatePermissions(stack);
721
+ if (existsSync3(settingsPath)) {
722
+ try {
723
+ settings = JSON.parse(readFileSync3(settingsPath, "utf-8"));
724
+ } catch {
725
+ result.warnings.push(
726
+ "settings.json became unreadable after hook merge \u2014 skipping permissions merge.\n Fix the JSON in .claude/settings.json and re-run init."
727
+ );
728
+ settingsMalformed = true;
729
+ }
730
+ }
731
+ if (!settingsMalformed) {
732
+ if (!settings.permissions) settings.permissions = {};
733
+ const perms = settings.permissions;
734
+ if (!perms.allow) perms.allow = [];
735
+ if (!perms.deny) perms.deny = [];
736
+ for (const rule of permissions.allow) {
737
+ if (!perms.allow.includes(rule)) perms.allow.push(rule);
738
+ }
739
+ for (const rule of permissions.deny) {
740
+ if (!perms.deny.includes(rule)) perms.deny.push(rule);
741
+ }
742
+ writeFileSync2(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
688
743
  }
689
744
  }
690
- if (!settings.permissions) settings.permissions = {};
691
- const perms = settings.permissions;
692
- if (!perms.allow) perms.allow = [];
693
- if (!perms.deny) perms.deny = [];
694
- for (const rule of permissions.allow) {
695
- if (!perms.allow.includes(rule)) perms.allow.push(rule);
696
- }
697
- for (const rule of permissions.deny) {
698
- if (!perms.deny.includes(rule)) perms.deny.push(rule);
699
- }
700
- writeFileSync2(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf-8");
701
- const hookResult = installSafeguardHooks(targetDir, [], opts.force);
745
+ const hookResult = installSafeguardHooks(targetDir, [], opts.force, settingsMalformed);
702
746
  result.created.push(...hookResult.created);
703
747
  result.skipped.push(...hookResult.skipped);
704
748
  const gitignorePath = join3(targetDir, ".gitignore");
@@ -710,9 +754,9 @@ try {
710
754
  );
711
755
  }
712
756
  }
713
- printSummary(result, stack);
757
+ printSummary(result, stack, existingSkills);
714
758
  }
715
- function printSummary(result, stack) {
759
+ function printSummary(result, stack, existingSkills = []) {
716
760
  console.log("\nJoycraft initialized!\n");
717
761
  if (stack.language !== "unknown") {
718
762
  const fw = stack.framework ? ` + ${stack.framework}` : "";
@@ -747,6 +791,10 @@ function printSummary(result, stack) {
747
791
  console.log(` \u26A0 ${w}`);
748
792
  }
749
793
  }
794
+ if (existingSkills.length > 0) {
795
+ console.log(`
796
+ Found existing skills: ${existingSkills.join(", ")}. These are preserved \u2014 Joycraft is additive.`);
797
+ }
750
798
  const hasExistingClaude = result.skipped.some((f) => f.endsWith("CLAUDE.md"));
751
799
  console.log("\n Next steps:");
752
800
  if (hasExistingClaude) {
@@ -761,4 +809,4 @@ function printSummary(result, stack) {
761
809
  export {
762
810
  init
763
811
  };
764
- //# sourceMappingURL=init-DHVJEWGX.js.map
812
+ //# sourceMappingURL=init-PPOY5PDB.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/init.ts","../src/detect.ts","../src/improve-claude-md.ts","../src/agents-md.ts","../src/permissions.ts","../src/safeguard.ts"],"sourcesContent":["import { mkdirSync, existsSync, writeFileSync, readFileSync, readdirSync, statSync } from 'node:fs';\nimport { join, basename, resolve, dirname } from 'node:path';\nimport { detectStack } from './detect.js';\nimport { generateCLAUDEMd } from './improve-claude-md.js';\nimport { generateAgentsMd } from './agents-md.js';\nimport { generatePermissions } from './permissions.js';\nimport { installSafeguardHooks } from './safeguard.js';\nimport { SKILLS, TEMPLATES } from './bundled-files.js';\nimport { writeVersion, hashContent } from './version.js';\n\nexport interface InitOptions {\n force: boolean;\n}\n\ninterface InitResult {\n created: string[];\n skipped: string[];\n modified: string[];\n warnings: string[];\n}\n\nfunction ensureDir(dir: string): void {\n if (!existsSync(dir)) {\n mkdirSync(dir, { recursive: true });\n }\n}\n\nfunction writeFile(path: string, content: string, force: boolean, result: InitResult): void {\n if (existsSync(path) && !force) {\n result.skipped.push(path);\n return;\n }\n writeFileSync(path, content, 'utf-8');\n result.created.push(path);\n}\n\nexport async function init(dir: string, opts: InitOptions): Promise<void> {\n const targetDir = resolve(dir);\n const result: InitResult = { created: [], skipped: [], modified: [], warnings: [] };\n\n // Detect stack\n const stack = await detectStack(targetDir);\n\n // 1. Create docs/ subdirectories\n const docsDirs = ['briefs', 'specs', 'discoveries', 'contracts', 'decisions', 'context'];\n for (const sub of docsDirs) {\n ensureDir(join(targetDir, 'docs', sub));\n }\n\n // 1b. Scan for existing non-Joycraft skills before copying ours\n const skillsDir = join(targetDir, '.claude', 'skills');\n let existingSkills: string[] = [];\n if (existsSync(skillsDir)) {\n existingSkills = readdirSync(skillsDir)\n .filter(name => {\n if (name.startsWith('joycraft-')) return false;\n if (name.startsWith('.')) return false;\n const fullPath = join(skillsDir, name);\n try {\n return statSync(fullPath).isDirectory();\n } catch {\n return false;\n }\n });\n }\n\n // 2. Copy skill files to .claude/skills/<name>/SKILL.md\n for (const [filename, content] of Object.entries(SKILLS)) {\n const skillName = filename.replace(/\\.md$/, '');\n const skillDir = join(skillsDir, skillName);\n ensureDir(skillDir);\n writeFile(join(skillDir, 'SKILL.md'), content, opts.force, result);\n }\n\n // 3. Copy template files to docs/templates/\n const templatesDir = join(targetDir, 'docs', 'templates');\n ensureDir(templatesDir);\n for (const [filename, content] of Object.entries(TEMPLATES)) {\n ensureDir(dirname(join(templatesDir, filename)));\n writeFile(join(templatesDir, filename), content, opts.force, result);\n }\n\n // 4. Handle CLAUDE.md — only create if missing, never modify existing (unless --force)\n const claudeMdPath = join(targetDir, 'CLAUDE.md');\n if (existsSync(claudeMdPath) && !opts.force) {\n result.skipped.push(claudeMdPath);\n } else {\n const projectName = basename(targetDir);\n const content = generateCLAUDEMd(projectName, stack, existingSkills);\n writeFileSync(claudeMdPath, content, 'utf-8');\n result.created.push(claudeMdPath);\n }\n\n // 5. Handle AGENTS.md — only create if missing, never modify existing (unless --force)\n const agentsMdPath = join(targetDir, 'AGENTS.md');\n if (existsSync(agentsMdPath) && !opts.force) {\n result.skipped.push(agentsMdPath);\n } else {\n const projectName = basename(targetDir);\n const content = generateAgentsMd(projectName, stack);\n writeFileSync(agentsMdPath, content, 'utf-8');\n result.created.push(agentsMdPath);\n }\n\n // 6. Write .joycraft-version with hashes of all managed files\n const fileHashes: Record<string, string> = {};\n for (const [filename, content] of Object.entries(SKILLS)) {\n const skillName = filename.replace(/\\.md$/, '');\n fileHashes[join('.claude', 'skills', skillName, 'SKILL.md')] = hashContent(content);\n }\n for (const [filename, content] of Object.entries(TEMPLATES)) {\n fileHashes[join('docs', 'templates', filename)] = hashContent(content);\n }\n writeVersion(targetDir, '0.1.0', fileHashes);\n\n // 7. Install version check hook\n const hooksDir = join(targetDir, '.claude', 'hooks');\n ensureDir(hooksDir);\n const hookScript = `// Joycraft version check — runs on Claude Code session start\nimport { readFileSync } from 'node:fs';\nimport { join } from 'node:path';\ntry {\n const data = JSON.parse(readFileSync(join(process.cwd(), '.joycraft-version'), 'utf-8'));\n const res = await fetch('https://registry.npmjs.org/joycraft/latest', { signal: AbortSignal.timeout(3000) });\n if (res.ok) {\n const latest = (await res.json()).version;\n if (data.version !== latest) console.log('Joycraft ' + latest + ' available (you have ' + data.version + '). Run: npx joycraft upgrade');\n }\n} catch {}\n`;\n writeFile(join(hooksDir, 'joycraft-version-check.mjs'), hookScript, opts.force, result);\n\n // Update .claude/settings.json with SessionStart hook\n const settingsPath = join(targetDir, '.claude', 'settings.json');\n let settings: Record<string, unknown> = {};\n let settingsMalformed = false;\n if (existsSync(settingsPath)) {\n try {\n settings = JSON.parse(readFileSync(settingsPath, 'utf-8'));\n } catch {\n settingsMalformed = true;\n result.warnings.push(\n 'settings.json exists but is malformed — skipping settings merge to protect your config.\\n' +\n ' Fix the JSON in .claude/settings.json and re-run init.'\n );\n }\n }\n if (!settingsMalformed) {\n if (!settings.hooks) settings.hooks = {};\n const hooksConfig = settings.hooks as Record<string, unknown>;\n if (!hooksConfig.SessionStart) hooksConfig.SessionStart = [];\n const sessionStartHooks = hooksConfig.SessionStart as Array<Record<string, unknown>>;\n const hasJoycraftHook = sessionStartHooks.some(h => {\n const innerHooks = h.hooks as Array<Record<string, unknown>> | undefined;\n return innerHooks?.some(ih => typeof ih.command === 'string' && ih.command.includes('joycraft'));\n });\n if (!hasJoycraftHook) {\n sessionStartHooks.push({\n matcher: '',\n hooks: [{\n type: 'command',\n command: 'node .claude/hooks/joycraft-version-check.mjs',\n }],\n });\n writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\\n', 'utf-8');\n result.created.push(settingsPath);\n }\n\n // 8. Generate and merge permission rules into settings.json\n const permissions = generatePermissions(stack);\n // Re-read settings in case it was just created by hook step\n if (existsSync(settingsPath)) {\n try {\n settings = JSON.parse(readFileSync(settingsPath, 'utf-8'));\n } catch {\n result.warnings.push(\n 'settings.json became unreadable after hook merge — skipping permissions merge.\\n' +\n ' Fix the JSON in .claude/settings.json and re-run init.'\n );\n settingsMalformed = true;\n }\n }\n if (!settingsMalformed) {\n if (!settings.permissions) settings.permissions = {};\n const perms = settings.permissions as Record<string, string[]>;\n if (!perms.allow) perms.allow = [];\n if (!perms.deny) perms.deny = [];\n for (const rule of permissions.allow) {\n if (!perms.allow.includes(rule)) perms.allow.push(rule);\n }\n for (const rule of permissions.deny) {\n if (!perms.deny.includes(rule)) perms.deny.push(rule);\n }\n writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\\n', 'utf-8');\n }\n }\n\n // 9. Install safeguard hooks (PreToolUse deny-pattern blocking)\n const hookResult = installSafeguardHooks(targetDir, [], opts.force, settingsMalformed);\n result.created.push(...hookResult.created);\n result.skipped.push(...hookResult.skipped);\n\n // 10. Check .gitignore for .claude/ exclusion\n const gitignorePath = join(targetDir, '.gitignore');\n if (existsSync(gitignorePath)) {\n const gitignore = readFileSync(gitignorePath, 'utf-8');\n if (/^\\.claude\\/?$/m.test(gitignore) || /^\\.claude\\/\\*$/m.test(gitignore)) {\n result.warnings.push(\n '.claude/ is in your .gitignore — teammates won\\'t get Joycraft skills.\\n' +\n ' Add this line to .gitignore to fix: !.claude/skills/'\n );\n }\n }\n\n // 11. Print summary\n printSummary(result, stack, existingSkills);\n}\n\nfunction printSummary(result: InitResult, stack: import('./detect.js').StackInfo, existingSkills: string[] = []): void {\n console.log('\\nJoycraft initialized!\\n');\n\n if (stack.language !== 'unknown') {\n const fw = stack.framework ? ` + ${stack.framework}` : '';\n console.log(` Detected stack: ${stack.language}${fw} (${stack.packageManager})`);\n } else {\n console.log(' Detected stack: unknown (no recognized manifest found)');\n }\n\n if (result.created.length > 0) {\n console.log(`\\n Created ${result.created.length} file(s):`);\n for (const f of result.created) {\n console.log(` + ${f}`);\n }\n }\n\n if (result.modified.length > 0) {\n console.log(`\\n Modified ${result.modified.length} file(s):`);\n for (const f of result.modified) {\n console.log(` ~ ${f}`);\n }\n }\n\n if (result.skipped.length > 0) {\n console.log(`\\n Skipped ${result.skipped.length} file(s) (already exist, use --force to overwrite):`);\n for (const f of result.skipped) {\n console.log(` - ${f}`);\n }\n }\n\n if (result.warnings.length > 0) {\n console.log('\\n Warnings:');\n for (const w of result.warnings) {\n console.log(` ⚠ ${w}`);\n }\n }\n\n if (existingSkills.length > 0) {\n console.log(`\\n Found existing skills: ${existingSkills.join(', ')}. These are preserved — Joycraft is additive.`);\n }\n\n const hasExistingClaude = result.skipped.some(f => f.endsWith('CLAUDE.md'));\n\n console.log('\\n Next steps:');\n if (hasExistingClaude) {\n console.log(' 1. Run Claude Code and try /joycraft-tune to assess and improve your existing CLAUDE.md');\n } else {\n console.log(' 1. Review and customize the generated CLAUDE.md for your project');\n }\n console.log(' 2. Try /joycraft-new-feature to start building with the spec-driven workflow');\n console.log(' 3. Commit .claude/skills/ and docs/ so your team gets the same workflow');\n console.log('');\n}\n","import { readFileSync, existsSync } from 'node:fs';\nimport { join } from 'node:path';\n\nexport interface StackInfo {\n language: string;\n packageManager: string;\n commands: {\n build?: string;\n test?: string;\n lint?: string;\n typecheck?: string;\n deploy?: string;\n };\n framework?: string;\n}\n\nfunction readFile(path: string): string | null {\n try {\n return readFileSync(path, 'utf-8');\n } catch {\n return null;\n }\n}\n\nfunction detectNodeFramework(pkg: { dependencies?: Record<string, string>; devDependencies?: Record<string, string> }): string | undefined {\n const allDeps = { ...pkg.dependencies, ...pkg.devDependencies };\n if (allDeps['next']) return 'Next.js';\n if (allDeps['nuxt']) return 'Nuxt';\n if (allDeps['@remix-run/node'] || allDeps['@remix-run/react']) return 'Remix';\n if (allDeps['express']) return 'Express';\n if (allDeps['fastify']) return 'Fastify';\n if (allDeps['react']) return 'React';\n if (allDeps['vue']) return 'Vue';\n if (allDeps['svelte']) return 'Svelte';\n return undefined;\n}\n\nfunction detectNodeTestFramework(pkg: { devDependencies?: Record<string, string>; dependencies?: Record<string, string> }): string | undefined {\n const allDeps = { ...pkg.dependencies, ...pkg.devDependencies };\n if (allDeps['vitest']) return 'vitest';\n if (allDeps['jest']) return 'jest';\n if (allDeps['mocha']) return 'mocha';\n return undefined;\n}\n\nfunction detectNodePackageManager(dir: string): string {\n if (existsSync(join(dir, 'pnpm-lock.yaml'))) return 'pnpm';\n if (existsSync(join(dir, 'yarn.lock'))) return 'yarn';\n if (existsSync(join(dir, 'bun.lockb')) || existsSync(join(dir, 'bun.lock'))) return 'bun';\n return 'npm';\n}\n\nfunction detectNode(dir: string): StackInfo | null {\n const raw = readFile(join(dir, 'package.json'));\n if (raw === null) return null;\n\n let pkg: Record<string, unknown>;\n try {\n pkg = JSON.parse(raw);\n } catch {\n return null;\n }\n\n const pm = detectNodePackageManager(dir);\n const run = pm === 'npm' ? 'npm run' : pm;\n const scripts = (pkg.scripts ?? {}) as Record<string, string>;\n const framework = detectNodeFramework(pkg as { dependencies?: Record<string, string>; devDependencies?: Record<string, string> });\n const testFramework = detectNodeTestFramework(pkg as { devDependencies?: Record<string, string>; dependencies?: Record<string, string> });\n\n const commands: StackInfo['commands'] = {};\n if (scripts.build) commands.build = `${run} build`;\n else commands.build = `${run} build`;\n if (scripts.test) commands.test = `${run} test`;\n else if (testFramework) commands.test = `${run} test`;\n else commands.test = `${pm === 'npm' ? 'npm' : pm} test`;\n if (scripts.lint) commands.lint = `${run} lint`;\n if (scripts.typecheck) commands.typecheck = `${run} typecheck`;\n else if ((pkg.devDependencies as Record<string, string> | undefined)?.['typescript']) {\n commands.typecheck = 'tsc --noEmit';\n }\n\n return {\n language: 'node',\n packageManager: pm,\n commands,\n framework,\n };\n}\n\nfunction detectPythonFramework(content: string): string | undefined {\n if (/fastapi/i.test(content)) return 'FastAPI';\n if (/django/i.test(content)) return 'Django';\n if (/flask/i.test(content)) return 'Flask';\n return undefined;\n}\n\nfunction detectPython(dir: string): StackInfo | null {\n const pyproject = readFile(join(dir, 'pyproject.toml'));\n if (pyproject !== null) {\n const isPoetry = /\\[tool\\.poetry\\]/.test(pyproject);\n const isUv = existsSync(join(dir, 'uv.lock'));\n\n let pm: string;\n let run: string;\n if (isUv) {\n pm = 'uv';\n run = 'uv run';\n } else if (isPoetry) {\n pm = 'poetry';\n run = 'poetry run';\n } else {\n pm = 'pip';\n run = 'python -m';\n }\n\n const framework = detectPythonFramework(pyproject);\n const hasPytest = /pytest/i.test(pyproject);\n\n return {\n language: 'python',\n packageManager: pm,\n commands: {\n build: `${pm === 'poetry' ? 'poetry' : pm} build`,\n test: hasPytest ? `${run} pytest` : `${run} pytest`,\n lint: `${run} ruff check .`,\n },\n framework,\n };\n }\n\n const requirements = readFile(join(dir, 'requirements.txt'));\n if (requirements !== null) {\n const framework = detectPythonFramework(requirements);\n return {\n language: 'python',\n packageManager: 'pip',\n commands: {\n build: 'pip install -e .',\n test: 'python -m pytest',\n lint: 'python -m ruff check .',\n },\n framework,\n };\n }\n\n return null;\n}\n\nfunction detectRust(dir: string): StackInfo | null {\n const cargo = readFile(join(dir, 'Cargo.toml'));\n if (cargo === null) return null;\n\n let framework: string | undefined;\n if (/actix-web/.test(cargo)) framework = 'Actix';\n else if (/axum/.test(cargo)) framework = 'Axum';\n else if (/rocket/.test(cargo)) framework = 'Rocket';\n\n return {\n language: 'rust',\n packageManager: 'cargo',\n commands: {\n build: 'cargo build',\n test: 'cargo test',\n lint: 'cargo clippy',\n },\n framework,\n };\n}\n\nfunction detectGo(dir: string): StackInfo | null {\n const gomod = readFile(join(dir, 'go.mod'));\n if (gomod === null) return null;\n\n let framework: string | undefined;\n if (/github\\.com\\/gin-gonic\\/gin/.test(gomod)) framework = 'Gin';\n else if (/github\\.com\\/gofiber\\/fiber/.test(gomod)) framework = 'Fiber';\n else if (/github\\.com\\/labstack\\/echo/.test(gomod)) framework = 'Echo';\n\n return {\n language: 'go',\n packageManager: 'go',\n commands: {\n build: 'go build ./...',\n test: 'go test ./...',\n lint: 'golangci-lint run',\n },\n framework,\n };\n}\n\nfunction detectSwift(dir: string): StackInfo | null {\n const pkg = readFile(join(dir, 'Package.swift'));\n if (pkg === null) return null;\n\n return {\n language: 'swift',\n packageManager: 'swift',\n commands: {\n build: 'swift build',\n test: 'swift test',\n },\n };\n}\n\nfunction detectMakefile(dir: string): StackInfo | null {\n const makefile = readFile(join(dir, 'Makefile'));\n if (makefile === null) return null;\n\n const commands: StackInfo['commands'] = {};\n commands.build = 'make build';\n if (/^test:/m.test(makefile)) commands.test = 'make test';\n if (/^lint:/m.test(makefile)) commands.lint = 'make lint';\n\n return {\n language: 'unknown',\n packageManager: 'make',\n commands,\n };\n}\n\nfunction detectDockerfile(dir: string): StackInfo | null {\n if (!existsSync(join(dir, 'Dockerfile'))) return null;\n\n return {\n language: 'unknown',\n packageManager: 'docker',\n commands: {\n build: 'docker build .',\n },\n };\n}\n\nexport async function detectStack(dir: string): Promise<StackInfo> {\n const detectors = [\n detectNode,\n detectPython,\n detectRust,\n detectGo,\n detectSwift,\n detectMakefile,\n detectDockerfile,\n ];\n\n for (const detect of detectors) {\n const result = detect(dir);\n if (result) return result;\n }\n\n return { language: 'unknown', packageManager: '', commands: {} };\n}\n","import type { StackInfo } from './detect.js';\n\ninterface Section {\n header: string;\n content: string;\n}\n\nfunction parseSections(markdown: string): Section[] {\n const lines = markdown.split('\\n');\n const sections: Section[] = [];\n let currentHeader = '';\n let currentLines: string[] = [];\n\n for (const line of lines) {\n if (line.startsWith('## ')) {\n if (currentHeader || currentLines.length > 0) {\n sections.push({ header: currentHeader, content: currentLines.join('\\n') });\n }\n currentHeader = line;\n currentLines = [];\n } else {\n currentLines.push(line);\n }\n }\n\n // Push the last section\n if (currentHeader || currentLines.length > 0) {\n sections.push({ header: currentHeader, content: currentLines.join('\\n') });\n }\n\n return sections;\n}\n\nfunction hasSection(sections: Section[], pattern: RegExp): boolean {\n return sections.some(s => pattern.test(s.header));\n}\n\nfunction generateCommandsBlock(stack: StackInfo): string {\n const lines: string[] = ['```bash'];\n if (stack.commands.build) lines.push(`# Build\\n${stack.commands.build}`);\n if (stack.commands.test) lines.push(`# Test\\n${stack.commands.test}`);\n if (stack.commands.lint) lines.push(`# Lint\\n${stack.commands.lint}`);\n if (stack.commands.typecheck) lines.push(`# Type check\\n${stack.commands.typecheck}`);\n if (stack.commands.deploy) lines.push(`# Deploy\\n${stack.commands.deploy}`);\n lines.push('```');\n return lines.join('\\n');\n}\n\nfunction generateBoundariesSection(): string {\n return `## Behavioral Boundaries\n\n### ALWAYS\n- Run tests and type-check before committing\n- Use \\`verb: concise message\\` format for commits\n- Commit after completing each discrete task (atomic commits)\n- Stage specific files by name (not \\`git add -A\\` or \\`git add .\\`)\n- Read \\`docs/context/\\` before making infrastructure or config changes\n- Follow existing code patterns and style\n\n### ASK FIRST\n- Pushing to remote\n- Creating or merging pull requests\n- Adding new dependencies\n- Modifying database schema or data models\n- Changing authentication or authorization flows\n- Any destructive git operation (force-push, reset --hard, branch deletion)\n\n### NEVER\n- Push directly to main/master without approval\n- Commit .env files, secrets, or credentials\n- Use --no-verify to skip hooks\n- Amend commits that have been pushed\n- Skip type-checking or linting\n- Commit code that doesn't build`;\n}\n\nfunction generateWorkflowSection(stack: StackInfo): string {\n return `## Development Workflow\n\n${generateCommandsBlock(stack)}`;\n}\n\nfunction generateArchitectureSection(): string {\n return `## Architecture\n\n_TODO: Add a brief description of your project's architecture and key directories._`;\n}\n\nfunction generateKeyFilesSection(): string {\n return `## Key Files\n\n| File | Purpose |\n|------|---------|\n| _TODO_ | _Add key files and their purposes_ |`;\n}\n\nfunction generateGotchasSection(): string {\n return `## Common Gotchas\n\n_TODO: Add any gotchas, quirks, or non-obvious behaviors that developers should know about._`;\n}\n\nfunction generateGettingStartedSection(): string {\n return `## Getting Started with Joycraft\n\nThis project uses [Joycraft](https://github.com/maksutovic/joycraft) for AI development workflow. Available skills:\n\n| Skill | Purpose |\n|-------|---------|\n| \\`/joycraft-tune\\` | Assess your harness, apply upgrades, see path to Level 5 |\n| \\`/joycraft-new-feature\\` | Interview -> Feature Brief -> Atomic Specs |\n| \\`/joycraft-interview\\` | Lightweight brainstorm — yap about ideas, get a structured summary |\n| \\`/joycraft-decompose\\` | Break a brief into small, testable specs |\n| \\`/joycraft-session-end\\` | Capture discoveries, verify, commit |\n| \\`/joycraft-implement-level5\\` | Set up Level 5 — autofix loop, holdout scenarios, scenario evolution |\n\nRun \\`/joycraft-tune\\` to see where your project stands and what to improve next.`;\n}\n\nfunction generateExternalValidationSection(): string {\n return `## External Validation\n\nThis project uses holdout scenario tests in a separate private repo.\n\n### NEVER\n- Access, read, or reference the scenarios repo\n- Mention scenario test names or contents\n- Modify the scenarios dispatch workflow to leak test information\n\nThe scenarios repo is deliberately invisible to you. This is the holdout guarantee — like a validation set in ML.`;\n}\n\nfunction generateProjectToolsSection(existingSkills: string[]): string {\n const MAX_LISTED = 10;\n let skillList: string;\n if (existingSkills.length <= MAX_LISTED) {\n skillList = existingSkills.join(', ');\n } else {\n skillList = existingSkills.slice(0, MAX_LISTED).join(', ') +\n `, and ${existingSkills.length - MAX_LISTED} more — see .claude/skills/`;\n }\n return `## Project Tools\n\nThis project has additional tools beyond Joycraft. Always check \\`.claude/skills/\\` for available skills: ${skillList}`;\n}\n\nexport function improveCLAUDEMd(existing: string, stack: StackInfo, existingSkills: string[] = []): string {\n const sections = parseSections(existing);\n const additions: string[] = [];\n\n if (!hasSection(sections, /behavioral\\s*boundar/i)) {\n additions.push(generateBoundariesSection());\n }\n\n if (!hasSection(sections, /development\\s*workflow/i) && !hasSection(sections, /workflow/i)) {\n additions.push(generateWorkflowSection(stack));\n }\n\n if (!hasSection(sections, /architecture/i)) {\n additions.push(generateArchitectureSection());\n }\n\n if (!hasSection(sections, /key\\s*files/i)) {\n additions.push(generateKeyFilesSection());\n }\n\n if (!hasSection(sections, /common\\s*gotchas/i) && !hasSection(sections, /gotchas/i)) {\n additions.push(generateGotchasSection());\n }\n\n if (!hasSection(sections, /getting\\s*started.*joycraft/i) && !hasSection(sections, /joycraft.*skills/i)) {\n additions.push(generateGettingStartedSection());\n }\n\n if (!hasSection(sections, /external\\s*validation/i)) {\n additions.push(generateExternalValidationSection());\n }\n\n if (existingSkills.length > 0 && !hasSection(sections, /project\\s*tools/i)) {\n additions.push(generateProjectToolsSection(existingSkills));\n }\n\n if (additions.length === 0) {\n return existing;\n }\n\n // Append missing sections\n const trimmed = existing.trimEnd();\n return trimmed + '\\n\\n' + additions.join('\\n\\n') + '\\n';\n}\n\nexport function generateCLAUDEMd(projectName: string, stack: StackInfo, existingSkills: string[] = []): string {\n const frameworkNote = stack.framework ? ` (${stack.framework})` : '';\n const langLabel = stack.language === 'unknown' ? '' : ` | **Stack:** ${stack.language}${frameworkNote}`;\n\n const lines: string[] = [\n `# ${projectName}`,\n '',\n `**Component:** _TODO: describe what this project is_${langLabel}`,\n '',\n '---',\n '',\n generateBoundariesSection(),\n '',\n generateWorkflowSection(stack),\n '',\n generateArchitectureSection(),\n '',\n generateKeyFilesSection(),\n '',\n generateGotchasSection(),\n '',\n generateGettingStartedSection(),\n '',\n ];\n\n if (existingSkills.length > 0) {\n lines.push(generateProjectToolsSection(existingSkills), '');\n }\n\n return lines.join('\\n');\n}\n","import type { StackInfo } from './detect.js';\n\ninterface Section {\n header: string;\n content: string;\n}\n\nfunction parseSections(markdown: string): Section[] {\n const lines = markdown.split('\\n');\n const sections: Section[] = [];\n let currentHeader = '';\n let currentLines: string[] = [];\n\n for (const line of lines) {\n if (line.startsWith('## ')) {\n if (currentHeader || currentLines.length > 0) {\n sections.push({ header: currentHeader, content: currentLines.join('\\n') });\n }\n currentHeader = line;\n currentLines = [];\n } else {\n currentLines.push(line);\n }\n }\n\n if (currentHeader || currentLines.length > 0) {\n sections.push({ header: currentHeader, content: currentLines.join('\\n') });\n }\n\n return sections;\n}\n\nfunction hasSection(sections: Section[], pattern: RegExp): boolean {\n return sections.some(s => pattern.test(s.header));\n}\n\nfunction generateCommandsBlock(stack: StackInfo): string {\n const lines: string[] = ['```bash'];\n if (stack.commands.build) lines.push(stack.commands.build);\n if (stack.commands.test) lines.push(stack.commands.test);\n if (stack.commands.lint) lines.push(stack.commands.lint);\n if (stack.commands.typecheck) lines.push(stack.commands.typecheck);\n if (stack.commands.deploy) lines.push(stack.commands.deploy);\n lines.push('```');\n return lines.join('\\n');\n}\n\nfunction generateBoundariesSection(): string {\n return `## Behavioral Boundaries\n\n### ALWAYS\n- Run tests and type-check before committing\n- Follow existing code patterns and style\n\n### ASK FIRST\n- Adding new dependencies\n- Changing auth or data models\n- Any destructive operation\n\n### NEVER\n- Push to main without approval\n- Skip tests or type-checking\n- Hardcode secrets or credentials`;\n}\n\nfunction generateDevelopmentSection(stack: StackInfo): string {\n return `## Development\n\n${generateCommandsBlock(stack)}`;\n}\n\nfunction generateArchitectureSection(): string {\n return `## Architecture\n\n_TODO: Add a compact directory tree and one-paragraph summary._`;\n}\n\nfunction generateKeyFilesSection(): string {\n return `## Key Files\n\n| File | Purpose |\n|------|---------|\n| _TODO_ | _Add key files_ |`;\n}\n\nexport function generateAgentsMd(projectName: string, stack: StackInfo): string {\n const frameworkNote = stack.framework ? ` (${stack.framework})` : '';\n const langLabel = stack.language === 'unknown' ? '' : ` | **Stack:** ${stack.language}${frameworkNote}`;\n\n const lines: string[] = [\n `# ${projectName}`,\n '',\n `**Component:** _TODO: describe what this project is_${langLabel}`,\n '',\n '> Auto-generated by Joycraft. See CLAUDE.md for detailed instructions.',\n '',\n '---',\n '',\n generateBoundariesSection(),\n '',\n generateArchitectureSection(),\n '',\n generateKeyFilesSection(),\n '',\n generateDevelopmentSection(stack),\n '',\n ];\n\n return lines.join('\\n');\n}\n\nexport function improveAgentsMd(existing: string, stack: StackInfo): string {\n const sections = parseSections(existing);\n const additions: string[] = [];\n\n if (!hasSection(sections, /behavioral\\s*boundar/i)) {\n additions.push(generateBoundariesSection());\n }\n\n if (!hasSection(sections, /architecture/i)) {\n additions.push(generateArchitectureSection());\n }\n\n if (!hasSection(sections, /key\\s*files/i)) {\n additions.push(generateKeyFilesSection());\n }\n\n if (!hasSection(sections, /development/i)) {\n additions.push(generateDevelopmentSection(stack));\n }\n\n if (additions.length === 0) {\n return existing;\n }\n\n const trimmed = existing.trimEnd();\n return trimmed + '\\n\\n' + additions.join('\\n\\n') + '\\n';\n}\n","import type { StackInfo } from './detect.js';\n\nexport interface PermissionRules {\n allow: string[];\n deny: string[];\n}\n\nexport function generatePermissions(stack: StackInfo): PermissionRules {\n // Default deny rules for ALL projects\n const deny: string[] = [\n 'Bash(rm -rf *)',\n 'Bash(git push --force *)',\n 'Bash(git push -f *)',\n 'Bash(git reset --hard *)',\n 'Edit(//.env*)',\n 'Edit(//*.pem)',\n 'Edit(//*.key)',\n 'Edit(//.git/**)',\n ];\n\n // Default allow rules\n const allow: string[] = [\n 'Bash(git status)',\n 'Bash(git diff *)',\n 'Bash(git log *)',\n 'Bash(git add *)',\n 'Bash(git commit *)',\n 'Bash(git checkout *)',\n 'Bash(git branch *)',\n ];\n\n // Stack-specific rules\n if (stack.language === 'node') {\n allow.push(`Bash(${stack.packageManager} *)`);\n if (stack.packageManager !== 'npm') deny.push('Bash(npm install *)');\n if (stack.packageManager !== 'yarn') deny.push('Bash(yarn add *)');\n if (stack.packageManager !== 'pnpm') deny.push('Bash(pnpm add *)');\n if (stack.packageManager !== 'bun') deny.push('Bash(bun add *)');\n if (stack.commands.test) allow.push(`Bash(${stack.commands.test})`);\n if (stack.commands.build) allow.push(`Bash(${stack.commands.build})`);\n if (stack.commands.lint) allow.push(`Bash(${stack.commands.lint})`);\n if (stack.commands.typecheck) allow.push(`Bash(${stack.commands.typecheck})`);\n }\n\n if (stack.language === 'python') {\n allow.push(`Bash(${stack.packageManager} *)`);\n if (stack.commands.test) allow.push(`Bash(${stack.commands.test})`);\n if (stack.commands.lint) allow.push(`Bash(${stack.commands.lint})`);\n if (stack.commands.build) allow.push(`Bash(${stack.commands.build})`);\n }\n\n if (stack.language === 'rust') {\n allow.push('Bash(cargo *)');\n }\n\n if (stack.language === 'go') {\n allow.push('Bash(go *)');\n }\n\n if (stack.language === 'swift') {\n allow.push('Bash(swift *)');\n allow.push('Bash(xcodebuild *)');\n }\n\n return { allow, deny };\n}\n","import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';\nimport { join } from 'node:path';\n\nexport interface SafeguardConfig {\n denyPatterns: string[];\n}\n\n/**\n * Generate default deny patterns from common dangerous operations.\n */\nexport function getDefaultDenyPatterns(): string[] {\n return [\n 'rm\\\\s+-rf\\\\s+/', // rm -rf with absolute path\n 'rm\\\\s+-rf\\\\s+\\\\.', // rm -rf . or ./\n 'git\\\\s+push\\\\s+--force', // force push\n 'git\\\\s+push\\\\s+-f\\\\b', // force push shorthand\n 'git\\\\s+reset\\\\s+--hard', // hard reset\n 'DROP\\\\s+TABLE', // SQL drop\n 'DROP\\\\s+DATABASE', // SQL drop\n 'TRUNCATE', // SQL truncate\n 'chmod\\\\s+777', // wide-open permissions\n 'curl.*\\\\|.*sh', // pipe curl to shell\n 'wget.*\\\\|.*sh', // pipe wget to shell\n ];\n}\n\n/**\n * Generate the hook script that blocks dangerous Bash commands.\n */\nexport function generateHookScript(): string {\n return `#!/bin/bash\n# Joycraft Safeguard — PreToolUse hook\n# Blocks dangerous Bash commands. Exit 2 = block the action.\n# Edit deny-patterns.txt to customize what's blocked.\n\nTOOL_NAME=\"$1\"\n# Read the full tool input from stdin\nINPUT=$(cat)\n\n# Only check Bash commands\nif [ \"$TOOL_NAME\" != \"Bash\" ]; then\n exit 0\nfi\n\n# Extract the command from the JSON input\nCOMMAND=$(echo \"$INPUT\" | grep -o '\"command\":\"[^\"]*\"' | head -1 | sed 's/\"command\":\"//;s/\"$//')\n\nif [ -z \"$COMMAND\" ]; then\n exit 0\nfi\n\nPATTERNS_FILE=\"$(dirname \"$0\")/deny-patterns.txt\"\n\nif [ ! -f \"$PATTERNS_FILE\" ]; then\n exit 0\nfi\n\nwhile IFS= read -r pattern || [ -n \"$pattern\" ]; do\n # Skip empty lines and comments\n [ -z \"$pattern\" ] && continue\n [[ \"$pattern\" == \\\\#* ]] && continue\n\n if echo \"$COMMAND\" | grep -qEi \"$pattern\"; then\n echo \"Blocked by Joycraft Safeguard: command matches deny pattern '$pattern'\"\n echo \"Edit .claude/hooks/joycraft/deny-patterns.txt to modify blocked patterns.\"\n exit 2\n fi\ndone < \"$PATTERNS_FILE\"\n\nexit 0\n`;\n}\n\n/**\n * Generate deny-patterns.txt content from default patterns + custom patterns.\n */\nexport function generateDenyPatternsFile(customPatterns: string[] = []): string {\n const lines = [\n '# Joycraft Safeguard — Deny Patterns',\n '# One regex pattern per line. Lines starting with # are comments.',\n '# Commands matching any pattern will be blocked (exit 2).',\n '# Edit this file to customize what\\'s blocked.',\n '',\n '# Destructive file operations',\n 'rm\\\\s+-rf\\\\s+/',\n 'rm\\\\s+-rf\\\\s+\\\\.',\n '',\n '# Dangerous git operations',\n 'git\\\\s+push\\\\s+--force',\n 'git\\\\s+push\\\\s+-f\\\\b',\n 'git\\\\s+reset\\\\s+--hard',\n '',\n '# SQL destruction',\n 'DROP\\\\s+TABLE',\n 'DROP\\\\s+DATABASE',\n 'TRUNCATE',\n '',\n '# System security',\n 'chmod\\\\s+777',\n 'curl.*\\\\|.*sh',\n 'wget.*\\\\|.*sh',\n ];\n\n if (customPatterns.length > 0) {\n lines.push('');\n lines.push('# Project-specific patterns (from risk interview)');\n for (const p of customPatterns) {\n lines.push(p);\n }\n }\n\n return lines.join('\\n') + '\\n';\n}\n\n/**\n * Install safeguard hooks into a project.\n */\nexport function installSafeguardHooks(\n targetDir: string,\n customPatterns: string[] = [],\n force: boolean = false,\n skipSettingsMerge: boolean = false\n): { created: string[]; skipped: string[] } {\n const result = { created: [] as string[], skipped: [] as string[] };\n const hooksDir = join(targetDir, '.claude', 'hooks', 'joycraft');\n\n if (!existsSync(hooksDir)) {\n mkdirSync(hooksDir, { recursive: true });\n }\n\n // Write hook script\n const hookPath = join(hooksDir, 'block-dangerous.sh');\n if (!existsSync(hookPath) || force) {\n writeFileSync(hookPath, generateHookScript(), { mode: 0o755 });\n result.created.push(hookPath);\n } else {\n result.skipped.push(hookPath);\n }\n\n // Write deny patterns\n const patternsPath = join(hooksDir, 'deny-patterns.txt');\n if (!existsSync(patternsPath) || force) {\n writeFileSync(patternsPath, generateDenyPatternsFile(customPatterns));\n result.created.push(patternsPath);\n } else {\n result.skipped.push(patternsPath);\n }\n\n // Register hook in settings.json (skip if caller detected malformed JSON)\n if (!skipSettingsMerge) {\n const settingsPath = join(targetDir, '.claude', 'settings.json');\n let settings: Record<string, unknown> = {};\n if (existsSync(settingsPath)) {\n try {\n settings = JSON.parse(readFileSync(settingsPath, 'utf-8'));\n } catch {\n // Don't overwrite — caller should handle the warning\n return result;\n }\n }\n\n if (!settings.hooks) settings.hooks = {};\n const hooks = settings.hooks as Record<string, unknown[]>;\n if (!hooks.PreToolUse) hooks.PreToolUse = [];\n\n const preToolUse = hooks.PreToolUse as Array<Record<string, unknown>>;\n const hasJoycraftHook = preToolUse.some(h => {\n const innerHooks = h.hooks as Array<Record<string, unknown>> | undefined;\n return innerHooks?.some(ih => typeof ih.command === 'string' && ih.command.includes('joycraft'));\n });\n\n if (!hasJoycraftHook) {\n preToolUse.push({\n matcher: 'Bash',\n hooks: [{\n type: 'command',\n command: '.claude/hooks/joycraft/block-dangerous.sh',\n }],\n });\n writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\\n', 'utf-8');\n }\n }\n\n return result;\n}\n"],"mappings":"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","names":["mkdirSync","existsSync","writeFileSync","readFileSync","join","generateCommandsBlock","generateBoundariesSection","generateArchitectureSection","generateKeyFilesSection","existsSync","readFileSync","join","join","existsSync","readFileSync","existsSync","mkdirSync","writeFileSync","join","readFileSync"]}
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  TEMPLATES
4
- } from "./chunk-HHW4Q2UC.js";
4
+ } from "./chunk-5BZUWHEY.js";
5
5
 
6
6
  // src/init-autofix.ts
7
7
  import { mkdirSync, existsSync, writeFileSync } from "fs";
@@ -94,25 +94,21 @@ function printSummary(result, dryRun, scenariosRepo) {
94
94
  console.log(` - ${f}`);
95
95
  }
96
96
  }
97
- console.log("\n Setup checklist:\n");
98
- console.log(" 1. Create a GitHub App with these permissions:");
99
- console.log(" - Contents: Read & Write");
100
- console.log(" - Actions: Read & Write");
101
- console.log(" - Pull requests: Read & Write");
102
- console.log("");
103
- console.log(" 2. Add these secrets to your main repo (GitHub Settings > Secrets):");
104
- console.log(" JOYCRAFT_APP_PRIVATE_KEY \u2014 private key PEM from your GitHub App");
97
+ console.log("\n Remaining setup:\n");
98
+ console.log(" 1. Add secrets to your main repo (Settings > Secrets and variables > Actions):");
99
+ console.log(" JOYCRAFT_APP_PRIVATE_KEY \u2014 the .pem file from your GitHub App");
105
100
  console.log(" ANTHROPIC_API_KEY \u2014 your Anthropic API key");
106
101
  console.log("");
107
- console.log(" 3. Create the scenarios repo (private):");
108
- console.log(` ${scenariosRepo}`);
109
- console.log(" Copy docs/templates/scenarios/ into it as the repo root.");
102
+ console.log(" 2. Create the scenarios repo (private):");
103
+ console.log(` gh repo create ${scenariosRepo} --private`);
104
+ console.log(` cp -r docs/templates/scenarios/* ../${scenariosRepo}/`);
105
+ console.log(` cd ../${scenariosRepo} && git add -A && git commit -m "init: scaffold" && git push`);
110
106
  console.log("");
111
- console.log(" 4. Update autofix.yml with your GitHub App ID if not already set.");
107
+ console.log(" 3. Add the same two secrets to the scenarios repo.");
112
108
  console.log("");
113
- console.log(" Run `npx joycraft init-autofix --help` for options.\n");
109
+ console.log(" See README.md for the full setup guide.\n");
114
110
  }
115
111
  export {
116
112
  initAutofix
117
113
  };
118
- //# sourceMappingURL=init-autofix-OVHXYVLB.js.map
114
+ //# sourceMappingURL=init-autofix-F7PLQLVX.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/init-autofix.ts"],"sourcesContent":["import { mkdirSync, existsSync, writeFileSync } from 'node:fs';\nimport { join, resolve, basename, dirname } from 'node:path';\nimport { TEMPLATES } from './bundled-files.js';\n\nexport interface InitAutofixOptions {\n scenariosRepo?: string;\n appId?: string;\n force?: boolean;\n dryRun?: boolean;\n}\n\ninterface AutofixResult {\n created: string[];\n skipped: string[];\n}\n\nfunction ensureDir(dir: string): void {\n if (!existsSync(dir)) {\n mkdirSync(dir, { recursive: true });\n }\n}\n\n/**\n * Replace literal placeholders in content.\n * Replaces $KEY but intentionally leaves ${{ ... }} GitHub Actions expressions untouched —\n * the simple string replace of \"$KEY\" won't match \"${{\" since \"${{\" != \"$\" + \"KEY\".\n */\nfunction replacePlaceholders(content: string, vars: Record<string, string>): string {\n let result = content;\n for (const [key, value] of Object.entries(vars)) {\n // Only replace literal $KEY, not ${{ expressions }}\n // Use a regex that matches $KEY but not ${{\n result = result.replaceAll('$' + key, value);\n }\n return result;\n}\n\nexport async function initAutofix(dir: string, opts: InitAutofixOptions): Promise<void> {\n const targetDir = resolve(dir);\n\n // Check project is initialized\n if (!existsSync(join(targetDir, '.joycraft-version'))) {\n throw new Error('Project is not initialized. Run `npx joycraft init` first.');\n }\n\n const force = opts.force ?? false;\n const dryRun = opts.dryRun ?? false;\n\n // Determine placeholder values\n const scenariosRepo = opts.scenariosRepo ?? `${basename(targetDir)}-scenarios`;\n const appId = opts.appId; // may be undefined — leave $JOYCRAFT_APP_ID as-is if so\n\n const vars: Record<string, string> = {\n SCENARIOS_REPO: scenariosRepo,\n };\n if (appId !== undefined) {\n vars['JOYCRAFT_APP_ID'] = appId;\n }\n\n const result: AutofixResult = { created: [], skipped: [] };\n\n // Install workflow templates to .github/workflows/\n const workflowsDir = join(targetDir, '.github', 'workflows');\n for (const [key, rawContent] of Object.entries(TEMPLATES)) {\n if (!key.startsWith('workflows/')) continue;\n const filename = key.slice('workflows/'.length); // e.g. \"autofix.yml\"\n const destPath = join(workflowsDir, filename);\n const content = replacePlaceholders(rawContent, vars);\n\n if (dryRun) {\n result.created.push(destPath);\n continue;\n }\n\n if (existsSync(destPath) && !force) {\n result.skipped.push(destPath);\n continue;\n }\n\n ensureDir(dirname(destPath));\n writeFileSync(destPath, content, 'utf-8');\n result.created.push(destPath);\n }\n\n // Install scenario templates to docs/templates/scenarios/\n const scenariosTemplateDir = join(targetDir, 'docs', 'templates', 'scenarios');\n for (const [key, rawContent] of Object.entries(TEMPLATES)) {\n if (!key.startsWith('scenarios/')) continue;\n const relativePath = key.slice('scenarios/'.length); // e.g. \"README.md\" or \"workflows/run.yml\"\n const destPath = join(scenariosTemplateDir, relativePath);\n const content = replacePlaceholders(rawContent, vars);\n\n if (dryRun) {\n result.created.push(destPath);\n continue;\n }\n\n if (existsSync(destPath) && !force) {\n result.skipped.push(destPath);\n continue;\n }\n\n ensureDir(dirname(destPath));\n writeFileSync(destPath, content, 'utf-8');\n result.created.push(destPath);\n }\n\n printSummary(result, dryRun, scenariosRepo);\n}\n\nfunction printSummary(result: AutofixResult, dryRun: boolean, scenariosRepo: string): void {\n if (dryRun) {\n console.log('\\nDry run — these files would be created:\\n');\n for (const f of result.created) {\n console.log(` + ${f}`);\n }\n return;\n }\n\n console.log('\\nJoycraft Autofix initialized!\\n');\n\n if (result.created.length > 0) {\n console.log(` Created ${result.created.length} file(s):`);\n for (const f of result.created) {\n console.log(` + ${f}`);\n }\n }\n\n if (result.skipped.length > 0) {\n console.log(`\\n Skipped ${result.skipped.length} file(s) (already exist, use --force to overwrite):`);\n for (const f of result.skipped) {\n console.log(` - ${f}`);\n }\n }\n\n console.log('\\n Setup checklist:\\n');\n console.log(' 1. Create a GitHub App with these permissions:');\n console.log(' - Contents: Read & Write');\n console.log(' - Actions: Read & Write');\n console.log(' - Pull requests: Read & Write');\n console.log('');\n console.log(' 2. Add these secrets to your main repo (GitHub Settings > Secrets):');\n console.log(' JOYCRAFT_APP_PRIVATE_KEY — private key PEM from your GitHub App');\n console.log(' ANTHROPIC_API_KEY — your Anthropic API key');\n console.log('');\n console.log(' 3. Create the scenarios repo (private):');\n console.log(` ${scenariosRepo}`);\n console.log(' Copy docs/templates/scenarios/ into it as the repo root.');\n console.log('');\n console.log(' 4. Update autofix.yml with your GitHub App ID if not already set.');\n console.log('');\n console.log(' Run `npx joycraft init-autofix --help` for options.\\n');\n}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../src/init-autofix.ts"],"sourcesContent":["import { mkdirSync, existsSync, writeFileSync } from 'node:fs';\nimport { join, resolve, basename, dirname } from 'node:path';\nimport { TEMPLATES } from './bundled-files.js';\n\nexport interface InitAutofixOptions {\n scenariosRepo?: string;\n appId?: string;\n force?: boolean;\n dryRun?: boolean;\n}\n\ninterface AutofixResult {\n created: string[];\n skipped: string[];\n}\n\nfunction ensureDir(dir: string): void {\n if (!existsSync(dir)) {\n mkdirSync(dir, { recursive: true });\n }\n}\n\n/**\n * Replace literal placeholders in content.\n * Replaces $KEY but intentionally leaves ${{ ... }} GitHub Actions expressions untouched —\n * the simple string replace of \"$KEY\" won't match \"${{\" since \"${{\" != \"$\" + \"KEY\".\n */\nfunction replacePlaceholders(content: string, vars: Record<string, string>): string {\n let result = content;\n for (const [key, value] of Object.entries(vars)) {\n // Only replace literal $KEY, not ${{ expressions }}\n // Use a regex that matches $KEY but not ${{\n result = result.replaceAll('$' + key, value);\n }\n return result;\n}\n\nexport async function initAutofix(dir: string, opts: InitAutofixOptions): Promise<void> {\n const targetDir = resolve(dir);\n\n // Check project is initialized\n if (!existsSync(join(targetDir, '.joycraft-version'))) {\n throw new Error('Project is not initialized. Run `npx joycraft init` first.');\n }\n\n const force = opts.force ?? false;\n const dryRun = opts.dryRun ?? false;\n\n // Determine placeholder values\n const scenariosRepo = opts.scenariosRepo ?? `${basename(targetDir)}-scenarios`;\n const appId = opts.appId; // may be undefined — leave $JOYCRAFT_APP_ID as-is if so\n\n const vars: Record<string, string> = {\n SCENARIOS_REPO: scenariosRepo,\n };\n if (appId !== undefined) {\n vars['JOYCRAFT_APP_ID'] = appId;\n }\n\n const result: AutofixResult = { created: [], skipped: [] };\n\n // Install workflow templates to .github/workflows/\n const workflowsDir = join(targetDir, '.github', 'workflows');\n for (const [key, rawContent] of Object.entries(TEMPLATES)) {\n if (!key.startsWith('workflows/')) continue;\n const filename = key.slice('workflows/'.length); // e.g. \"autofix.yml\"\n const destPath = join(workflowsDir, filename);\n const content = replacePlaceholders(rawContent, vars);\n\n if (dryRun) {\n result.created.push(destPath);\n continue;\n }\n\n if (existsSync(destPath) && !force) {\n result.skipped.push(destPath);\n continue;\n }\n\n ensureDir(dirname(destPath));\n writeFileSync(destPath, content, 'utf-8');\n result.created.push(destPath);\n }\n\n // Install scenario templates to docs/templates/scenarios/\n const scenariosTemplateDir = join(targetDir, 'docs', 'templates', 'scenarios');\n for (const [key, rawContent] of Object.entries(TEMPLATES)) {\n if (!key.startsWith('scenarios/')) continue;\n const relativePath = key.slice('scenarios/'.length); // e.g. \"README.md\" or \"workflows/run.yml\"\n const destPath = join(scenariosTemplateDir, relativePath);\n const content = replacePlaceholders(rawContent, vars);\n\n if (dryRun) {\n result.created.push(destPath);\n continue;\n }\n\n if (existsSync(destPath) && !force) {\n result.skipped.push(destPath);\n continue;\n }\n\n ensureDir(dirname(destPath));\n writeFileSync(destPath, content, 'utf-8');\n result.created.push(destPath);\n }\n\n printSummary(result, dryRun, scenariosRepo);\n}\n\nfunction printSummary(result: AutofixResult, dryRun: boolean, scenariosRepo: string): void {\n if (dryRun) {\n console.log('\\nDry run — these files would be created:\\n');\n for (const f of result.created) {\n console.log(` + ${f}`);\n }\n return;\n }\n\n console.log('\\nJoycraft Autofix initialized!\\n');\n\n if (result.created.length > 0) {\n console.log(` Created ${result.created.length} file(s):`);\n for (const f of result.created) {\n console.log(` + ${f}`);\n }\n }\n\n if (result.skipped.length > 0) {\n console.log(`\\n Skipped ${result.skipped.length} file(s) (already exist, use --force to overwrite):`);\n for (const f of result.skipped) {\n console.log(` - ${f}`);\n }\n }\n\n console.log('\\n Remaining setup:\\n');\n console.log(' 1. Add secrets to your main repo (Settings > Secrets and variables > Actions):');\n console.log(' JOYCRAFT_APP_PRIVATE_KEY — the .pem file from your GitHub App');\n console.log(' ANTHROPIC_API_KEY — your Anthropic API key');\n console.log('');\n console.log(' 2. Create the scenarios repo (private):');\n console.log(` gh repo create ${scenariosRepo} --private`);\n console.log(` cp -r docs/templates/scenarios/* ../${scenariosRepo}/`);\n console.log(` cd ../${scenariosRepo} && git add -A && git commit -m \"init: scaffold\" && git push`);\n console.log('');\n console.log(' 3. Add the same two secrets to the scenarios repo.');\n console.log('');\n console.log(' See README.md for the full setup guide.\\n');\n}\n"],"mappings":"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","names":[]}
@@ -7,7 +7,7 @@ import {
7
7
  import {
8
8
  SKILLS,
9
9
  TEMPLATES
10
- } from "./chunk-HHW4Q2UC.js";
10
+ } from "./chunk-5BZUWHEY.js";
11
11
 
12
12
  // src/upgrade.ts
13
13
  import { existsSync, readFileSync, writeFileSync, mkdirSync, rmSync } from "fs";
@@ -197,4 +197,4 @@ function getPackageVersion() {
197
197
  export {
198
198
  upgrade
199
199
  };
200
- //# sourceMappingURL=upgrade-RRG2ZRSO.js.map
200
+ //# sourceMappingURL=upgrade-CZJ6A447.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joycraft",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "CLI + Claude Code plugin that scaffolds and upgrades AI development harnesses",
5
5
  "type": "module",
6
6
  "bin": {