@axiomatic-labs/claudeflow 2.13.149 → 2.13.151

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 -1
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -63,7 +63,13 @@ async function run() {
63
63
 
64
64
  try {
65
65
  ui.step('Extracting template files...');
66
- execSync(`unzip -o "${tmpZip}" -d "${tmpExtract}"`, { stdio: 'pipe' });
66
+ // -qq silences unzip's per-file `inflating:` output, which on a large
67
+ // ZIP exceeds execSync's default 1MB maxBuffer and triggers ENOBUFS.
68
+ // maxBuffer override is belt-and-suspenders for future growth.
69
+ execSync(`unzip -qq -o "${tmpZip}" -d "${tmpExtract}"`, {
70
+ stdio: 'pipe',
71
+ maxBuffer: 50 * 1024 * 1024,
72
+ });
67
73
  const srcClaudeflow = path.join(tmpExtract, '.claudeflow');
68
74
  // v2.13.148+: mode is per-build, not per-project. There are no more
69
75
  // variants/{boost,normal} directories — the template ships a single
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.13.149",
3
+ "version": "2.13.151",
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"