pentesting 0.7.31 → 0.7.32

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.
Files changed (2) hide show
  1. package/README.md +5 -64
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -329,40 +329,6 @@ await agent.addMCPServer('security-tools', 'docker', [
329
329
 
330
330
  ---
331
331
 
332
- ## 📁 Project Structure
333
-
334
- ```
335
- src/
336
- ├── index.tsx # CLI entry point
337
- ├── cli/
338
- │ ├── app.tsx # TUI with streaming, multi-target, approval
339
- │ ├── components/ # Rich display components
340
- │ └── utils/ # Keyboard listener
341
- ├── core/
342
- │ ├── agent/ # Agent implementations
343
- │ ├── approval/ # Tool approval system
344
- │ ├── commands/ # Slash command registry
345
- │ ├── context/ # Checkpoint + compaction
346
- │ ├── display/ # Rich output blocks
347
- │ ├── hooks/ # Event hooks
348
- │ ├── loop/ # Ralph autonomous loop
349
- │ ├── replay/ # Session replay
350
- │ ├── session/ # Session persistence
351
- │ ├── skill/ # Flow skills (Mermaid/D2)
352
- │ ├── streaming/ # Real-time streaming
353
- │ ├── update/ # Auto-update system
354
- │ ├── prompts/ # System prompts
355
- │ └── tools/ # Tool definitions & executor
356
- ├── agents/ # 9 built-in specialized agents
357
- ├── commands/ # Built-in slash commands
358
- ├── wire/ # JSONL logging + Wire protocol
359
- ├── mcp/ # MCP client integration
360
- ├── utils/ # Clipboard, retry utilities
361
- └── config/ # Constants, theme
362
- ```
363
-
364
- ---
365
-
366
332
  ## 🛠️ Development
367
333
 
368
334
  ```bash
@@ -380,39 +346,14 @@ npm run build
380
346
  npm run dev
381
347
  ```
382
348
 
383
- ---
384
-
385
- ## Changelog
386
-
387
- ### v0.7.16
388
- - Self-reflection framework (Claude Code inspired)
389
- - Confidence scoring (0-100) for decisions
390
- - Decision framework: Value = (Probability × Impact) / Time Cost
391
- - Concrete tool commands with wordlist paths
392
- - Efficiency rules and stop conditions
393
-
394
- ### v0.7.15
395
- - Comprehensive prompt improvements
396
- - Approval fix (double popup bug)
397
- - Token label in status bar (`3k tok`)
398
-
399
- ### v0.7.14
400
- - Auto Docker management
401
- - Container auto-start on first use
402
-
403
- ### v0.7.13
404
- - Rainbow spinner
405
- - Thinking/reasoning display
406
- - Monochrome theme
407
- - Tab mode toggle
349
+ ## 📄 License
350
+ ## Documentation
408
351
 
409
- ### v0.7.7
410
- - Multi-target management (`/target add/list/rm/clear`)
411
- - Batch attack (`/start all`)
412
- - `set_target` tool for agent
352
+ - [Architecture](./docs/ARCHITECTURE.md) - System design and components
353
+ - [Docker Image](https://hub.docker.com/r/agnusdei1207/pentesting-tools) - Pre-built security tools
413
354
 
414
355
  ---
415
356
 
416
- ## 📄 License
357
+ ## �📄 License
417
358
 
418
359
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.7.31",
3
+ "version": "0.7.32",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",