vibe-coding-master 0.7.13 → 0.7.14
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/README.md
CHANGED
|
@@ -250,11 +250,13 @@ from the container. In the VCM `Settings` section:
|
|
|
250
250
|
4. select `GPT-5.6 Sol (CCR)` in any Session model control.
|
|
251
251
|
|
|
252
252
|
The key is stored in global VCM state (`~/.vcm/settings.json`) with owner-only
|
|
253
|
-
permissions
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
253
|
+
permissions, is used only to check CCR and discover models, and is never
|
|
254
|
+
returned by the settings API. GPT sessions use the CCR-managed Claude Code
|
|
255
|
+
`apiKeyHelper`; VCM removes inherited Anthropic token variables only from those
|
|
256
|
+
child processes. Native Claude selections retain their existing launch and
|
|
257
|
+
authentication behavior. If CCR is disabled, unreachable, rejects the key, or
|
|
258
|
+
does not expose `Codex API/gpt-5.6-sol`, VCM blocks the new Start, Resume, or
|
|
259
|
+
Restart and does not fall back to another model.
|
|
258
260
|
|
|
259
261
|
## Launch Template
|
|
260
262
|
|
|
@@ -258,6 +258,11 @@ export function buildPtyEnvironment(baseEnv, inputEnv = {}) {
|
|
|
258
258
|
CLICOLOR: inputEnv.CLICOLOR ?? baseEnv.CLICOLOR ?? "1",
|
|
259
259
|
TERM_PROGRAM: inputEnv.TERM_PROGRAM ?? "VibeCodingMaster"
|
|
260
260
|
};
|
|
261
|
+
for (const [key, value] of Object.entries(inputEnv)) {
|
|
262
|
+
if (value === undefined) {
|
|
263
|
+
delete env[key];
|
|
264
|
+
}
|
|
265
|
+
}
|
|
261
266
|
delete env.NO_COLOR;
|
|
262
267
|
return env;
|
|
263
268
|
}
|
|
@@ -147,7 +147,8 @@ export function createCcrIntegrationService(deps) {
|
|
|
147
147
|
ANTHROPIC_BASE_URL: CCR_GATEWAY_BASE_URL,
|
|
148
148
|
ANTHROPIC_API_BASE_URL: CCR_GATEWAY_BASE_URL,
|
|
149
149
|
CLAUDE_AGENT_API_BASE_URL: CCR_GATEWAY_BASE_URL,
|
|
150
|
-
ANTHROPIC_AUTH_TOKEN:
|
|
150
|
+
ANTHROPIC_AUTH_TOKEN: undefined,
|
|
151
|
+
ANTHROPIC_API_KEY: undefined,
|
|
151
152
|
ANTHROPIC_MODEL: CCR_GPT_MODEL_ID,
|
|
152
153
|
CCR_CLAUDE_CODE_MODEL: CCR_GPT_MODEL_ID,
|
|
153
154
|
CODEXL_CLAUDE_CODE_MODEL: CCR_GPT_MODEL_ID,
|