claudeboard 2.10.0 → 2.10.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.
@@ -44,7 +44,10 @@ function buildEnv() {
44
44
  ].filter(Boolean);
45
45
 
46
46
  const fullPath = [...new Set(pathParts.join(":").split(":"))].join(":");
47
- return { ...process.env, PATH: fullPath, HOME: process.env.HOME };
47
+ const env = { ...process.env, PATH: fullPath, HOME: process.env.HOME };
48
+ // Remove API key so Claude Code uses the Claude subscription (not API credits)
49
+ delete env.ANTHROPIC_API_KEY;
50
+ return env;
48
51
  }
49
52
 
50
53
  const CLAUDE_PATH = resolveClaudePath();
@@ -152,7 +152,7 @@ async function tryStartExpo(projectPath, port) {
152
152
  const { spawn } = require("child_process");
153
153
  proc = spawn("npx", ["expo", "start", "--web", "--port", String(port)], {
154
154
  cwd: projectPath,
155
- env: { ...process.env, CI: "1", EXPO_NO_INTERACTIVE: "1", EXPO_NO_DOTENV: "0" },
155
+ env: (() => { const e = { ...process.env, CI: "1", EXPO_NO_INTERACTIVE: "1", EXPO_NO_DOTENV: "0" }; delete e.ANTHROPIC_API_KEY; return e; })(),
156
156
  stdio: "pipe",
157
157
  });
158
158
 
package/agents/qa.js CHANGED
@@ -35,7 +35,10 @@ function buildEnv() {
35
35
  `${process.env.HOME}/.nvm/versions/node/current/bin`,
36
36
  ].filter(Boolean);
37
37
  const fullPath = [...new Set(pathParts.join(":").split(":"))].join(":");
38
- return { ...process.env, PATH: fullPath, HOME: process.env.HOME };
38
+ const env = { ...process.env, PATH: fullPath, HOME: process.env.HOME };
39
+ // Remove API key so Claude Code uses the Claude subscription (not API credits)
40
+ delete env.ANTHROPIC_API_KEY;
41
+ return env;
39
42
  }
40
43
 
41
44
  const CLAUDE_PATH = resolveClaudePath();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudeboard",
3
- "version": "2.10.0",
3
+ "version": "2.10.1",
4
4
  "description": "AI engineering team — from PRD to working mobile app, autonomously",
5
5
  "type": "module",
6
6
  "bin": {