@axiomatic-labs/claudeflow 2.14.37 → 2.14.39
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 +10 -0
- package/package.json +1 -1
package/lib/install.js
CHANGED
|
@@ -308,6 +308,16 @@ async function run() {
|
|
|
308
308
|
} else {
|
|
309
309
|
ui.done(`Claudeflow updated: ${current} → ${version}`);
|
|
310
310
|
}
|
|
311
|
+
|
|
312
|
+
// Warn if setup-context.json is missing (legacy install or never-init).
|
|
313
|
+
// The orchestrator and skills assume this file exists; without it they
|
|
314
|
+
// fall back to inferring from CLAUDE.md + package.json, which works but
|
|
315
|
+
// is less precise. The user can regenerate it via /claudeflow-init or
|
|
316
|
+
// /claudeflow-update inside Claude Code.
|
|
317
|
+
const setupContextPath = path.join(cwd, '.claudeflow', 'config', 'setup-context.json');
|
|
318
|
+
if (!fs.existsSync(setupContextPath)) {
|
|
319
|
+
ui.info(`Note: .claudeflow/config/setup-context.json is missing. Builds will fall back to inferring stack from CLAUDE.md + package.json. To regenerate the canonical setup-context, run /claudeflow-init or /claudeflow-update inside Claude Code.`);
|
|
320
|
+
}
|
|
311
321
|
} else {
|
|
312
322
|
ui.success(`${skillCount} skills installed`);
|
|
313
323
|
ui.success(`${hookCount} hooks installed`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.39",
|
|
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"
|