@axiomatic-labs/claudeflow 2.10.121 → 2.10.123

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.
Files changed (2) hide show
  1. package/lib/install.js +3 -2
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -440,7 +440,7 @@ function createPreInstallBackup(projectRoot, options = {}) {
440
440
 
441
441
  ui.step('Creating safety backup of .claude...');
442
442
  fs.mkdirSync(path.dirname(backupDir), { recursive: true });
443
- copyDirSync(sourceClaudeDir, backupDir);
443
+ copyDirSync(sourceClaudeDir, backupDir, new Set(['tmp']));
444
444
  return path.dirname(backupDir);
445
445
  }
446
446
 
@@ -660,10 +660,11 @@ function pruneEmptyAncestors(startDir, stopDir) {
660
660
  }
661
661
 
662
662
  // Recursively copy a directory, creating parents as needed
663
- function copyDirSync(src, dst) {
663
+ function copyDirSync(src, dst, skipNames) {
664
664
  fs.mkdirSync(dst, { recursive: true });
665
665
  const entries = fs.readdirSync(src, { withFileTypes: true });
666
666
  for (const entry of entries) {
667
+ if (skipNames && skipNames.has(entry.name)) continue;
667
668
  const srcPath = path.join(src, entry.name);
668
669
  const dstPath = path.join(dst, entry.name);
669
670
  if (entry.isDirectory()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.10.121",
3
+ "version": "2.10.123",
4
4
  "description": "Claudeflow — AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps.",
5
5
  "bin": {
6
6
  "claudeflow": "./bin/cli.js"