buildcrew 1.2.0 → 1.2.1

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/bin/setup.js +2 -1
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -9,7 +9,8 @@ const AGENTS_SRC = join(__dirname, "..", "agents");
9
9
  const TEMPLATES_SRC = join(__dirname, "..", "templates");
10
10
  const TARGET_DIR = join(process.cwd(), ".claude", "agents");
11
11
  const HARNESS_DIR = join(process.cwd(), ".claude", "harness");
12
- const VERSION = "1.1.0";
12
+ const PKG = JSON.parse(await readFile(join(__dirname, "..", "package.json"), "utf-8"));
13
+ const VERSION = PKG.version;
13
14
 
14
15
  const RESET = "\x1b[0m";
15
16
  const BOLD = "\x1b[1m";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildcrew",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "11 AI agents for Claude Code — auto-orchestrated dev team with 9 operating modes",
5
5
  "homepage": "https://buildcrew-landing.vercel.app",
6
6
  "author": "z1nun",