pentesting 0.101.6 → 0.101.7
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/ARCHITECTURE.md +28 -28
- package/README.md +8 -8
- package/package.json +2 -2
package/ARCHITECTURE.md
CHANGED
|
@@ -418,32 +418,32 @@ the reader resumes after modal ownership ends. Type-ahead is therefore buffered
|
|
|
418
418
|
FIFO instead of racing or leaking into a later model, agent, or configuration
|
|
419
419
|
field. Service-layer approval, secret, selection, and follow-up prompts acquire
|
|
420
420
|
the same lifetime-bound modal handoff through the prompt-entry hook, and
|
|
421
|
-
concurrent service prompts are serialized so two widgets never read stdin at
|
|
422
|
-
once.
|
|
423
|
-
|
|
424
|
-
`/resume` is the canonical saved-session selector; `/conversation` and
|
|
425
|
-
`/conversations` remain compatibility aliases. The selector includes every
|
|
426
|
-
conversation with persisted context, even when it has no title. Resuming a
|
|
427
|
-
different conversation clears the process-local goal and forces auto mode off,
|
|
428
|
-
so state from the previous session cannot drive the resumed one accidentally.
|
|
429
|
-
`/new` applies the same process-local goal/auto reset at the fresh-session
|
|
430
|
-
boundary while preserving the queued FIFO tail. Persisted titles are reduced to
|
|
431
|
-
one bounded control-free selector row before that row is bound to its typed
|
|
432
|
-
conversation ID. Local upserts stamp the activity time used by `/resume`,
|
|
433
|
-
`--continue`, and `conversation resume <id>` ordering. The command remains
|
|
434
|
-
FIFO-queued while a turn is active because its selector is a modal terminal
|
|
435
|
-
owner.
|
|
436
|
-
|
|
437
|
-
Normal `/exit` and empty-prompt Ctrl+D termination are serialized through the
|
|
438
|
-
output actor. It rejects new writes, completes its current render batch, resets
|
|
439
|
-
styles and terminal modes, restores the full scroll region, clears the tracked
|
|
440
|
-
multiline footer, shows the cursor, disables raw mode, and drops the terminal
|
|
441
|
-
surface before printing one plain saved-session message. The shutdown
|
|
442
|
-
acknowledgement and actor join occur after that message, so no detached redraw
|
|
443
|
-
can overwrite terminal cleanup. The generic `restore_terminal` function is a
|
|
444
|
-
best-effort fallback for failures outside this coordinated path. An empty
|
|
445
|
-
session reports that no resumable messages were created instead of promising a
|
|
446
|
-
session that the repository intentionally excludes from the resume list.
|
|
421
|
+
concurrent service prompts are serialized so two widgets never read stdin at
|
|
422
|
+
once.
|
|
423
|
+
|
|
424
|
+
`/resume` is the canonical saved-session selector; `/conversation` and
|
|
425
|
+
`/conversations` remain compatibility aliases. The selector includes every
|
|
426
|
+
conversation with persisted context, even when it has no title. Resuming a
|
|
427
|
+
different conversation clears the process-local goal and forces auto mode off,
|
|
428
|
+
so state from the previous session cannot drive the resumed one accidentally.
|
|
429
|
+
`/new` applies the same process-local goal/auto reset at the fresh-session
|
|
430
|
+
boundary while preserving the queued FIFO tail. Persisted titles are reduced to
|
|
431
|
+
one bounded control-free selector row before that row is bound to its typed
|
|
432
|
+
conversation ID. Local upserts stamp the activity time used by `/resume`,
|
|
433
|
+
`--continue`, and `conversation resume <id>` ordering. The command remains
|
|
434
|
+
FIFO-queued while a turn is active because its selector is a modal terminal
|
|
435
|
+
owner.
|
|
436
|
+
|
|
437
|
+
Normal `/exit` and empty-prompt Ctrl+D termination are serialized through the
|
|
438
|
+
output actor. It rejects new writes, completes its current render batch, resets
|
|
439
|
+
styles and terminal modes, restores the full scroll region, clears the tracked
|
|
440
|
+
multiline footer, shows the cursor, disables raw mode, and drops the terminal
|
|
441
|
+
surface before printing one plain saved-session message. The shutdown
|
|
442
|
+
acknowledgement and actor join occur after that message, so no detached redraw
|
|
443
|
+
can overwrite terminal cleanup. The generic `restore_terminal` function is a
|
|
444
|
+
best-effort fallback for failures outside this coordinated path. An empty
|
|
445
|
+
session reports that no resumable messages were created instead of promising a
|
|
446
|
+
session that the repository intentionally excludes from the resume list.
|
|
447
447
|
|
|
448
448
|
Typing `/` opens the complete registered command catalog. Search includes
|
|
449
449
|
canonical names and aliases; Up/Down changes the selection, and Enter inserts
|
|
@@ -560,12 +560,12 @@ Inside an interactive session, these commands inspect and drive runtime state
|
|
|
560
560
|
/memory Show stored conversation memories for the current conversation
|
|
561
561
|
/tools List the currently available tools and schemas
|
|
562
562
|
/agent Switch the active agent
|
|
563
|
-
/resume Resume a saved session for the active workspace
|
|
563
|
+
/resume Resume a saved session for the active workspace
|
|
564
564
|
/goal <task> Set the active goal without enabling autonomous mode
|
|
565
565
|
/auto Toggle autonomous mode for the current goal (default: off; Esc stops it)
|
|
566
566
|
/update Download and apply the latest public release asset for supported native targets
|
|
567
567
|
/help Show all commands
|
|
568
|
-
/exit Save the session, restore the terminal, and quit
|
|
568
|
+
/exit Save the session, restore the terminal, and quit
|
|
569
569
|
```
|
|
570
570
|
|
|
571
571
|
## Security Domain Skills
|
package/README.md
CHANGED
|
@@ -73,7 +73,9 @@ Provider variables are optional — the TUI launches without them and lets you l
|
|
|
73
73
|
| The best design blueprint is the human being | Better systems begin with better self-observation: understand how we perceive, decide, learn, and recover, then make those loops observable |
|
|
74
74
|
| The agent is the bottleneck | As AI models advance, the agent framework and the surrounding system must evolve with them |
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Capability record
|
|
77
79
|
|
|
78
80
|
| Date | Result | Test setup | Note |
|
|
79
81
|
| --- | --- | --- | --- |
|
|
@@ -90,13 +92,11 @@ Provider variables are optional — the TUI launches without them and lets you l
|
|
|
90
92
|
| `/model [query]` | Switch provider, model, or custom endpoint |
|
|
91
93
|
| `/goal <objective>` | Set or clear the active goal |
|
|
92
94
|
| `/auto` | Run the active goal automatically; Esc stops it |
|
|
93
|
-
| `/status` | Show the current run and verified mission status |
|
|
94
|
-
| `/new` · `/retry` | Start a new conversation or retry the last turn |
|
|
95
|
-
| `/resume` | Resume a saved session from the current workspace |
|
|
96
|
-
| `/config` | Edit runtime configuration |
|
|
97
|
-
| `/exit` | Save the session, restore the terminal, and quit |
|
|
98
|
-
|
|
99
|
-
> The command you run is always **`pentesting`**. The internal engine is **`builder`** — `pentesting` runs it under the hood; the engine name never surfaces in normal use.
|
|
95
|
+
| `/status` | Show the current run and verified mission status |
|
|
96
|
+
| `/new` · `/retry` | Start a new conversation or retry the last turn |
|
|
97
|
+
| `/resume` | Resume a saved session from the current workspace |
|
|
98
|
+
| `/config` | Edit runtime configuration |
|
|
99
|
+
| `/exit` | Save the session, restore the terminal, and quit |
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pentesting",
|
|
3
|
-
"version": "0.101.
|
|
4
|
-
"builderReleaseTag": "v0.101.
|
|
3
|
+
"version": "0.101.7",
|
|
4
|
+
"builderReleaseTag": "v0.101.7",
|
|
5
5
|
"description": "Penetration testing AI agent powered by Rust, with audited reverse-shell capture, verified PTY upgrades, and evidence-first orchestration.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "agnusdei1207",
|