@axiomatic-labs/claudeflow 2.13.111 → 2.13.112

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 +4 -1
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -1312,7 +1312,10 @@ function copyDirSync(src, dst, skipNames) {
1312
1312
  function syncBoostAddendumOnInstall(cwd) {
1313
1313
  const activeModePath = path.join(cwd, '.claudeflow', 'active-mode');
1314
1314
  const claudeMdPath = path.join(cwd, 'CLAUDE.md');
1315
- const addendumPath = path.join(cwd, '.claudeflow', 'variants', 'boost', 'CLAUDE_BOOST_ADDENDUM.md');
1315
+ // The addendum lives in .claudeflow/templates/ (not inside variants/) so
1316
+ // the /claudeflow-mode switch's persist-step does not wipe it on every
1317
+ // rotation. See .claudeflow/cli/claudeflow-mode.js for the same rationale.
1318
+ const addendumPath = path.join(cwd, '.claudeflow', 'templates', 'CLAUDE_BOOST_ADDENDUM.md');
1316
1319
  if (!fs.existsSync(activeModePath) || !fs.existsSync(claudeMdPath)) return;
1317
1320
 
1318
1321
  const ADDENDUM_BEGIN = '<!-- claudeflow:boost-mode:BEGIN -->';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.13.111",
3
+ "version": "2.13.112",
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"