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.
- package/README.md +16 -7
- package/dist/{agent-tool-Y6CG5KRL.js → agent-tool-K3ETJX2V.js} +3 -3
- package/dist/{chunk-DN7INJ7C.js → chunk-OP3YVCKB.js} +84 -990
- package/dist/{chunk-KAUE3MSR.js → chunk-S5ZMXFHR.js} +18 -0
- package/dist/{chunk-26G2YIOA.js → chunk-TFYJWIQF.js} +1527 -3
- package/dist/main.js +623 -37
- package/dist/{persistence-SNX7ZQU5.js → persistence-TSBV5F6R.js} +2 -2
- package/dist/{process-registry-7XV46TDC.js → process-registry-4Y3HB4YQ.js} +1 -1
- package/dist/prompts/llm/input-processor-system.md +9 -0
- package/package.json +1 -1
|
@@ -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
|
};
|