@axiomatic-labs/claudeflow 2.4.65 → 2.4.67
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.
- package/lib/install.js +12 -1
- package/package.json +1 -1
package/lib/install.js
CHANGED
|
@@ -87,8 +87,19 @@ async function run() {
|
|
|
87
87
|
copyDirSync(srcDocs, dstDocs);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
// Ensure .claude/tmp exists
|
|
90
|
+
// Ensure .claude/tmp exists and copy bundled scripts (e.g., pixeldiff.py)
|
|
91
91
|
fs.mkdirSync(path.join(cwd, '.claude', 'tmp'), { recursive: true });
|
|
92
|
+
const srcTmp = path.join(srcClaude, 'tmp');
|
|
93
|
+
if (fs.existsSync(srcTmp)) {
|
|
94
|
+
const tmpFiles = fs.readdirSync(srcTmp);
|
|
95
|
+
for (const file of tmpFiles) {
|
|
96
|
+
const srcFile = path.join(srcTmp, file);
|
|
97
|
+
const dstFile = path.join(cwd, '.claude', 'tmp', file);
|
|
98
|
+
if (fs.statSync(srcFile).isFile()) {
|
|
99
|
+
fs.copyFileSync(srcFile, dstFile);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
92
103
|
|
|
93
104
|
// Write version file
|
|
94
105
|
writeLocalVersion(version);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.67",
|
|
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"
|