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.
@@ -564,7 +564,7 @@ ${CYBER_RISK_INSTRUCTION}`,
564
564
  ...(feature('KAIROS') || feature('KAIROS_BRIEF')
565
565
  ? [systemPromptSection('brief', () => getBriefSection())]
566
566
  : []),
567
- systemPromptSection('exec_policy', () => getExecPolicySection()),
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
  }),