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.
- package/agents/developer.js +4 -1
- package/agents/expo-health.js +1 -1
- package/agents/qa.js +4 -1
- package/package.json +1 -1
package/agents/developer.js
CHANGED
|
@@ -44,7 +44,10 @@ function buildEnv() {
|
|
|
44
44
|
].filter(Boolean);
|
|
45
45
|
|
|
46
46
|
const fullPath = [...new Set(pathParts.join(":").split(":"))].join(":");
|
|
47
|
-
|
|
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();
|
package/agents/expo-health.js
CHANGED
|
@@ -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
|
-
|
|
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();
|