bingocode 1.1.186 → 1.1.188
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 +1 -1
- package/src/commands/exec/exec.tsx +10 -7
- package/src/components/PromptInput/PromptInput.tsx +2335 -2335
- package/src/constants/prompts.ts +1 -1
- package/src/main.tsx +1 -0
- package/src/state/AppStateStore.ts +572 -569
package/src/constants/prompts.ts
CHANGED
|
@@ -564,7 +564,7 @@ ${CYBER_RISK_INSTRUCTION}`,
|
|
|
564
564
|
...(feature('KAIROS') || feature('KAIROS_BRIEF')
|
|
565
565
|
? [systemPromptSection('brief', () => getBriefSection())]
|
|
566
566
|
: []),
|
|
567
|
-
|
|
567
|
+
DANGEROUS_uncachedSystemPromptSection('exec_policy', () => getExecPolicySection(), 'toggles mid-session via /exec'),
|
|
568
568
|
]
|
|
569
569
|
|
|
570
570
|
const resolvedDynamicSections =
|
package/src/main.tsx
CHANGED
|
@@ -2640,6 +2640,7 @@ async function run(): Promise<CommanderCommand> {
|
|
|
2640
2640
|
...(isFastModeEnabled() && {
|
|
2641
2641
|
fastMode: getInitialFastModeSetting(effectiveModel ?? null)
|
|
2642
2642
|
}),
|
|
2643
|
+
execMode: getInitialSettings().execMode === true,
|
|
2643
2644
|
...(isAdvisorEnabled() && advisorModel && {
|
|
2644
2645
|
advisorModel
|
|
2645
2646
|
}),
|