@axiomatic-labs/claudeflow 2.10.10 → 2.10.12

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 +7 -0
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -76,6 +76,13 @@ async function run() {
76
76
  copyDirSync(srcHooks, dstHooks);
77
77
  }
78
78
 
79
+ // Copy shared runtime scripts used by skills and hooks
80
+ const srcRuntime = path.join(srcClaude, 'runtime');
81
+ const dstRuntime = path.join(cwd, '.claude', 'runtime');
82
+ if (fs.existsSync(srcRuntime)) {
83
+ copyDirSync(srcRuntime, dstRuntime);
84
+ }
85
+
79
86
  // Copy template agents (only template-managed, preserve user agents)
80
87
  const TEMPLATE_AGENTS = new Set(['claudeflow-explorer', 'claudeflow-planner', 'example-agent']);
81
88
  const srcAgents = path.join(srcClaude, 'agents');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.10.10",
3
+ "version": "2.10.12",
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"