bingocode 1.1.200-beta.5 → 1.1.200-beta.6
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/package.json
CHANGED
package/src/constants/prompts.ts
CHANGED
|
@@ -927,7 +927,7 @@ The user context may include a \`terminalFocus\` field indicating whether the us
|
|
|
927
927
|
}
|
|
928
928
|
|
|
929
929
|
function getBrainPolicySection(): string | null {
|
|
930
|
-
const { getCurrentSessionBrainMode } = require('
|
|
930
|
+
const { getCurrentSessionBrainMode } = require('../utils/sessionStorage.js')
|
|
931
931
|
if (!getInitialSettings().brainMode && !getCurrentSessionBrainMode()) return null
|
|
932
932
|
return `# Brain Mode (/brain)
|
|
933
933
|
|
|
@@ -647,6 +647,7 @@ export class ProviderService {
|
|
|
647
647
|
settings.claudeCode = {
|
|
648
648
|
environmentVariables: [
|
|
649
649
|
{ name: "ANTHROPIC_BASE_URL", value: "https://api.anthropic.com" },
|
|
650
|
+
{ name: "ANTHROPIC_AUTH_TOKEN", value: "" },
|
|
650
651
|
],
|
|
651
652
|
}
|
|
652
653
|
await fs.writeFile(settingsPath, JSON.stringify(settings, null, 4) + '
|
|
@@ -3621,16 +3621,16 @@ export async function loadTranscriptFile(
|
|
|
3621
3621
|
} else if (entry.type === 'agent-setting' && entry.sessionId) {
|
|
3622
3622
|
agentSettings.set(entry.sessionId, entry.agentSetting)
|
|
3623
3623
|
} else if (entry.type === 'mode' && entry.sessionId) {
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3624
|
+
modes.set(entry.sessionId, entry.mode)
|
|
3625
|
+
} else if (entry.type === 'brain-mode' && entry.sessionId) {
|
|
3626
|
+
brainModes.set(entry.sessionId, entry.brainMode)
|
|
3627
|
+
} else if (entry.type === 'worktree-state' && entry.sessionId) {
|
|
3628
|
+
worktreeStates.set(entry.sessionId, entry.worktreeSession)
|
|
3629
|
+
} else if (entry.type === 'pr-link' && entry.sessionId) {
|
|
3630
|
+
prNumbers.set(entry.sessionId, entry.prNumber)
|
|
3631
|
+
prUrls.set(entry.sessionId, entry.prUrl)
|
|
3632
|
+
prRepositories.set(entry.sessionId, entry.prRepository)
|
|
3633
|
+
}
|
|
3634
3634
|
}
|
|
3635
3635
|
}
|
|
3636
3636
|
|