@axiomatic-labs/claudeflow 2.10.39 → 2.10.41

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
@@ -83,6 +83,13 @@ async function run() {
83
83
  copyDirSync(srcRuntime, dstRuntime);
84
84
  }
85
85
 
86
+ // Copy canonical template-managed assets used by init/update composition
87
+ const srcTemplates = path.join(srcClaude, 'templates');
88
+ const dstTemplates = path.join(cwd, '.claude', 'templates');
89
+ if (fs.existsSync(srcTemplates)) {
90
+ copyDirSync(srcTemplates, dstTemplates);
91
+ }
92
+
86
93
  // Copy template agents (only template-managed, preserve user agents)
87
94
  const TEMPLATE_AGENTS = new Set(['claudeflow-explorer', 'claudeflow-planner', 'example-agent']);
88
95
  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.39",
3
+ "version": "2.10.41",
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"