pentesting 0.73.8 → 0.73.10

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.
@@ -580,6 +580,13 @@ var RUNTIME_CONFIG_PROMPT_BUILDER = {
580
580
  source: "state.attackGraph",
581
581
  label: "attack_graph"
582
582
  }),
583
+ definePromptLayer({
584
+ id: 12.5,
585
+ type: "state",
586
+ source: "state.branchMemory",
587
+ label: "branch_memory",
588
+ on_empty: "skip"
589
+ }),
583
590
  definePromptLayer({
584
591
  id: 13,
585
592
  type: "static",
@@ -927,6 +934,16 @@ var RUNTIME_CONFIG_TUI = {
927
934
  }
928
935
  };
929
936
 
937
+ // src/agents/runtime-config/memory-runtime.ts
938
+ var RUNTIME_CONFIG_MEMORY_ROLLOUT = {
939
+ branch_memory: {
940
+ main_prompt: true,
941
+ strategist: true,
942
+ delegated_prompt: true,
943
+ resume_hints: true
944
+ }
945
+ };
946
+
930
947
  // src/agents/runtime-config.ts
931
948
  var RUNTIME_CONFIG = {
932
949
  version: "3.2",
@@ -938,6 +955,7 @@ var RUNTIME_CONFIG = {
938
955
  compression: RUNTIME_CONFIG_COMPRESSION,
939
956
  workspace: RUNTIME_CONFIG_WORKSPACE,
940
957
  tui: RUNTIME_CONFIG_TUI,
958
+ memory_rollout: RUNTIME_CONFIG_MEMORY_ROLLOUT,
941
959
  nodes: RUNTIME_CONFIG_NODES,
942
960
  user_input_queue: RUNTIME_CONFIG_USER_INPUT_QUEUE
943
961
  };