pentesting 0.70.9 → 0.70.11
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 +1 -1
- package/dist/{chunk-FRZJJB6X.js → chunk-LNA3CY7P.js} +3 -1
- package/dist/main.js +4451 -2711
- package/dist/{process-registry-P22TUNRK.js → process-registry-KBP4X3JS.js} +1 -1
- package/dist/prompts/base.md +24 -19
- package/dist/prompts/orchestrator.md +9 -0
- package/dist/prompts/strategist-system.md +40 -21
- package/package.json +5 -13
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
## Purpose
|
|
32
32
|
|
|
33
|
-
Pentesting support tool
|
|
33
|
+
Pentesting support tool. Can autonomously execute network penetration tests or assist with generic Capture The Flag (CTF) challenges (such as Reverse Engineering, Cryptography, and binary analysis) without requiring a specific network target.
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
@@ -115,7 +115,9 @@ var SYSTEM_LIMITS = {
|
|
|
115
115
|
/** Number of events to display in resource summary */
|
|
116
116
|
RECENT_EVENTS_DISPLAY: 5,
|
|
117
117
|
/** Number of recent output lines to show per process */
|
|
118
|
-
RECENT_OUTPUT_LINES: 3
|
|
118
|
+
RECENT_OUTPUT_LINES: 3,
|
|
119
|
+
/** Maximum characters per message for context extraction (30K) */
|
|
120
|
+
CONTEXT_EXTRACTOR_LIMIT: 3e4
|
|
119
121
|
};
|
|
120
122
|
|
|
121
123
|
// src/shared/constants/system/detection.ts
|