@axiomatic-labs/claudeflow 2.10.191 → 2.10.192
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 +21 -0
- package/package.json +1 -1
package/lib/install.js
CHANGED
|
@@ -126,6 +126,27 @@ async function run() {
|
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
// Copy browser observer extension
|
|
130
|
+
const srcExtension = path.join(srcClaude, 'browser-observer-extension');
|
|
131
|
+
const dstExtension = path.join(cwd, '.claude', 'browser-observer-extension');
|
|
132
|
+
if (fs.existsSync(srcExtension)) {
|
|
133
|
+
copyDirSync(srcExtension, dstExtension);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// Copy rules
|
|
137
|
+
const srcRules = path.join(srcClaude, 'rules');
|
|
138
|
+
const dstRules = path.join(cwd, '.claude', 'rules');
|
|
139
|
+
if (fs.existsSync(srcRules)) {
|
|
140
|
+
copyDirSync(srcRules, dstRules);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Copy commands
|
|
144
|
+
const srcCommands = path.join(srcClaude, 'commands');
|
|
145
|
+
const dstCommands = path.join(cwd, '.claude', 'commands');
|
|
146
|
+
if (fs.existsSync(srcCommands)) {
|
|
147
|
+
copyDirSync(srcCommands, dstCommands);
|
|
148
|
+
}
|
|
149
|
+
|
|
129
150
|
// Copy all docs
|
|
130
151
|
const srcDocs = path.join(srcClaude, 'docs');
|
|
131
152
|
const dstDocs = path.join(cwd, '.claude', 'docs');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.192",
|
|
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"
|