pwn 0.5.617 → 0.5.620
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.
- checksums.yaml +4 -4
- data/Gemfile +2 -2
- data/README.md +101 -83
- data/bin/pwn_gqrx_scanner +25 -5
- data/documentation/AI-Integration.md +42 -26
- data/documentation/AWS.md +57 -0
- data/documentation/Agent-Tool-Registry.md +56 -0
- data/documentation/Banner.md +17 -0
- data/documentation/Blockchain.md +18 -0
- data/documentation/Bounty.md +21 -0
- data/documentation/BurpSuite.md +41 -16
- data/documentation/CLI-Drivers.md +58 -0
- data/documentation/Configuration.md +66 -0
- data/documentation/Contributing.md +33 -19
- data/documentation/Cron.md +47 -0
- data/documentation/Diagrams.md +6 -2
- data/documentation/Drivers.md +43 -16
- data/documentation/Extrospection.md +73 -0
- data/documentation/FFI.md +14 -0
- data/documentation/Fuzzing.md +36 -0
- data/documentation/Hardware.md +40 -0
- data/documentation/Home.md +5 -4
- data/documentation/How-PWN-Works.md +7 -4
- data/documentation/Metasploit.md +34 -0
- data/documentation/Mistakes.md +96 -0
- data/documentation/NmapIt.md +18 -12
- data/documentation/PWN.png +0 -0
- data/documentation/PWN_Contributors_and_Users.png +0 -0
- data/documentation/Persistence.md +40 -0
- data/documentation/Plugins.md +97 -47
- data/documentation/Reporting.md +25 -18
- data/documentation/SAST.md +39 -22
- data/documentation/SDR.md +58 -0
- data/documentation/Sessions.md +39 -0
- data/documentation/Skills-Memory-Learning.md +59 -29
- data/documentation/Swarm.md +71 -0
- data/documentation/Transparent-Browser.md +26 -22
- data/documentation/Troubleshooting.md +44 -25
- data/documentation/WWW.md +32 -0
- data/documentation/diagrams/agent-tool-registry.svg +286 -0
- data/documentation/diagrams/aws-cloud-security.svg +166 -0
- data/documentation/diagrams/cron-scheduling.svg +148 -0
- data/documentation/diagrams/dot/agent-tool-registry.dot +2 -2
- data/documentation/diagrams/dot/extrospection-world-awareness.dot +9 -7
- data/documentation/diagrams/dot/hardware-hacking.dot +48 -0
- data/documentation/diagrams/dot/memory-skills-detailed.dot +12 -5
- data/documentation/diagrams/dot/mistakes-negative-feedback.dot +93 -0
- data/documentation/diagrams/dot/overall-pwn-architecture.dot +7 -5
- data/documentation/diagrams/dot/persistence-filesystem.dot +30 -0
- data/documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot +19 -7
- data/documentation/diagrams/dot/sdr-radio-flow.dot +13 -11
- data/documentation/diagrams/extrospection-world-awareness.svg +203 -0
- data/documentation/diagrams/hardware-hacking.svg +163 -0
- data/documentation/diagrams/memory-skills-detailed.svg +146 -97
- data/documentation/diagrams/mistakes-negative-feedback.svg +266 -0
- data/documentation/diagrams/overall-pwn-architecture.svg +184 -173
- data/documentation/diagrams/persistence-filesystem.svg +189 -0
- data/documentation/diagrams/pwn-ai-feedback-learning-loop.svg +217 -149
- data/documentation/diagrams/sdr-radio-flow.svg +166 -0
- data/documentation/diagrams/swarm-multi-agent.svg +225 -0
- data/documentation/fax-spectrogram.png +0 -0
- data/documentation/fax-waveform.png +0 -0
- data/documentation/pwn-REPL.md +40 -24
- data/documentation/pwn-ai-Agent.md +72 -30
- data/documentation/pwn_android_war_dialer_session.png +0 -0
- data/documentation/pwn_install.png +0 -0
- data/documentation/pwn_wallpaper.jpg +0 -0
- data/documentation/ringing-spectrogram.png +0 -0
- data/documentation/ringing-waveform.png +0 -0
- data/lib/pwn/ai/agent/extrospection.rb +65 -6
- data/lib/pwn/ai/agent/learning.rb +67 -7
- data/lib/pwn/ai/agent/loop.rb +72 -6
- data/lib/pwn/ai/agent/mistakes.rb +369 -0
- data/lib/pwn/ai/agent/prompt_builder.rb +10 -1
- data/lib/pwn/ai/agent/tools/extrospection.rb +2 -2
- data/lib/pwn/ai/agent/tools/mistakes.rb +132 -0
- data/lib/pwn/ai/agent.rb +1 -0
- data/lib/pwn/plugins/jira_data_center.rb +2 -2
- data/lib/pwn/sdr/decoder/adsb.rb +101 -0
- data/lib/pwn/sdr/decoder/apt.rb +75 -0
- data/lib/pwn/sdr/decoder/bluetooth.rb +78 -0
- data/lib/pwn/sdr/decoder/dect.rb +84 -0
- data/lib/pwn/sdr/decoder/gps.rb +83 -0
- data/lib/pwn/sdr/decoder/gsm.rb +50 -29
- data/lib/pwn/sdr/decoder/iridium.rb +81 -0
- data/lib/pwn/sdr/decoder/lora.rb +87 -0
- data/lib/pwn/sdr/decoder/lte.rb +88 -0
- data/lib/pwn/sdr/decoder/morse.rb +64 -0
- data/lib/pwn/sdr/decoder/p25.rb +71 -0
- data/lib/pwn/sdr/decoder/pager.rb +77 -0
- data/lib/pwn/sdr/decoder/pocsag.rb +26 -11
- data/lib/pwn/sdr/decoder/rfid.rb +88 -0
- data/lib/pwn/sdr/decoder/rtl433.rb +95 -0
- data/lib/pwn/sdr/decoder/rtty.rb +66 -0
- data/lib/pwn/sdr/decoder/wifi.rb +98 -0
- data/lib/pwn/sdr/decoder/zigbee.rb +96 -0
- data/lib/pwn/sdr/decoder.rb +67 -7
- data/lib/pwn/sdr/frequency_allocation.rb +82 -41
- data/lib/pwn/sdr/gqrx.rb +186 -95
- data/lib/pwn/version.rb +1 -1
- data/spec/lib/pwn/ai/agent/mistakes_spec.rb +36 -0
- data/spec/lib/pwn/ai/agent/tools/mistakes_spec.rb +12 -0
- data/spec/lib/pwn/sdr/decoder/adsb_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/apt_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/bluetooth_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/dect_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/gps_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/iridium_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/lora_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/lte_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/morse_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/p25_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/pager_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rfid_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rtl433_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rtty_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/wifi_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/zigbee_spec.rb +15 -0
- data/third_party/pwn_rdoc.jsonl +114 -8
- metadata +81 -5
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<!-- Generated by graphviz version 14.1.2 (0)
|
|
5
|
+
-->
|
|
6
|
+
<!-- Title: PWN_Persistence Pages: 1 -->
|
|
7
|
+
<svg width="604pt" height="904pt"
|
|
8
|
+
viewBox="0.00 0.00 604.00 904.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 860.45)">
|
|
10
|
+
<title>PWN_Persistence</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-860.45 560.95,-860.45 560.95,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="8" y="-795.25" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">~/.pwn/ — Everything PWN Persists Across Sessions</text>
|
|
13
|
+
<!-- Root -->
|
|
14
|
+
<g id="node1" class="node">
|
|
15
|
+
<title>Root</title>
|
|
16
|
+
<polygon fill="#7dd3fc" stroke="#334155" stroke-width="1.3" points="156.62,-403 153.62,-407 132.62,-407 129.62,-403 97.12,-403 97.12,-367 156.62,-367 156.62,-403"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="126.88" y="-380.15" font-family="sans-Serif" font-size="13.00" fill="#0f172a">~/.pwn/</text>
|
|
18
|
+
</g>
|
|
19
|
+
<!-- cfg -->
|
|
20
|
+
<g id="node2" class="node">
|
|
21
|
+
<title>cfg</title>
|
|
22
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M406.38,-782C406.38,-784.21 376.23,-786 339.12,-786 302.02,-786 271.88,-784.21 271.88,-782 271.88,-782 271.88,-746 271.88,-746 271.88,-743.79 302.02,-742 339.12,-742 376.23,-742 406.38,-743.79 406.38,-746 406.38,-746 406.38,-782 406.38,-782"/>
|
|
23
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M406.38,-782C406.38,-779.79 376.23,-778 339.12,-778 302.02,-778 271.88,-779.79 271.88,-782"/>
|
|
24
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-766.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">config.yml</text>
|
|
25
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-754.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">engines · keys · agent opts</text>
|
|
26
|
+
</g>
|
|
27
|
+
<!-- Root->cfg -->
|
|
28
|
+
<g id="edge1" class="edge">
|
|
29
|
+
<title>Root->cfg</title>
|
|
30
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M129.66,-403.5C136.09,-460.16 162.92,-633.38 257.62,-731 260.31,-733.77 263.26,-736.31 266.4,-738.65"/>
|
|
31
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="264.52,-740.34 271.69,-742.23 267.26,-736.28 264.52,-740.34"/>
|
|
32
|
+
</g>
|
|
33
|
+
<!-- mem -->
|
|
34
|
+
<g id="node3" class="node">
|
|
35
|
+
<title>mem</title>
|
|
36
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M407.12,-716C407.12,-718.21 376.65,-720 339.12,-720 301.6,-720 271.12,-718.21 271.12,-716 271.12,-716 271.12,-680 271.12,-680 271.12,-677.79 301.6,-676 339.12,-676 376.65,-676 407.12,-677.79 407.12,-680 407.12,-680 407.12,-716 407.12,-716"/>
|
|
37
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M407.12,-716C407.12,-713.79 376.65,-712 339.12,-712 301.6,-712 271.12,-713.79 271.12,-716"/>
|
|
38
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-700.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">memory.json</text>
|
|
39
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-688.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">facts · prefs · lessons · env</text>
|
|
40
|
+
</g>
|
|
41
|
+
<!-- Root->mem -->
|
|
42
|
+
<g id="edge2" class="edge">
|
|
43
|
+
<title>Root->mem</title>
|
|
44
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M131.51,-403.42C142.1,-452.59 177.46,-588.36 257.62,-665 260.4,-667.66 263.42,-670.11 266.61,-672.37"/>
|
|
45
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="265.22,-674.39 272.43,-676.13 267.88,-670.28 265.22,-674.39"/>
|
|
46
|
+
</g>
|
|
47
|
+
<!-- skl -->
|
|
48
|
+
<g id="node4" class="node">
|
|
49
|
+
<title>skl</title>
|
|
50
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M405.25,-650C405.25,-652.21 375.61,-654 339.12,-654 302.64,-654 273,-652.21 273,-650 273,-650 273,-614 273,-614 273,-611.79 302.64,-610 339.12,-610 375.61,-610 405.25,-611.79 405.25,-614 405.25,-614 405.25,-650 405.25,-650"/>
|
|
51
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M405.25,-650C405.25,-647.79 375.61,-646 339.12,-646 302.64,-646 273,-647.79 273,-650"/>
|
|
52
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-634.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">skills/*.md</text>
|
|
53
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-622.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">reusable procedures + refs</text>
|
|
54
|
+
</g>
|
|
55
|
+
<!-- Root->skl -->
|
|
56
|
+
<g id="edge3" class="edge">
|
|
57
|
+
<title>Root->skl</title>
|
|
58
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M134.42,-403.44C149.75,-444.17 191.74,-542.67 257.62,-599 260.91,-601.81 264.47,-604.41 268.2,-606.8"/>
|
|
59
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="266.85,-608.85 274.13,-610.31 269.35,-604.63 266.85,-608.85"/>
|
|
60
|
+
</g>
|
|
61
|
+
<!-- lrn -->
|
|
62
|
+
<g id="node5" class="node">
|
|
63
|
+
<title>lrn</title>
|
|
64
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M379.38,-584C379.38,-586.21 361.33,-588 339.12,-588 316.92,-588 298.88,-586.21 298.88,-584 298.88,-584 298.88,-548 298.88,-548 298.88,-545.79 316.92,-544 339.12,-544 361.33,-544 379.38,-545.79 379.38,-548 379.38,-548 379.38,-584 379.38,-584"/>
|
|
65
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M379.38,-584C379.38,-581.79 361.33,-580 339.12,-580 316.92,-580 298.88,-581.79 298.88,-584"/>
|
|
66
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-568.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">learning.jsonl</text>
|
|
67
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-556.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">task outcomes</text>
|
|
68
|
+
</g>
|
|
69
|
+
<!-- Root->lrn -->
|
|
70
|
+
<g id="edge4" class="edge">
|
|
71
|
+
<title>Root->lrn</title>
|
|
72
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M139.74,-403.37C160.36,-434.01 205.62,-495.87 257.62,-533 267.61,-540.13 279.37,-546.06 290.77,-550.83"/>
|
|
73
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="289.62,-553.01 297.03,-553.33 291.44,-548.46 289.62,-553.01"/>
|
|
74
|
+
</g>
|
|
75
|
+
<!-- mis -->
|
|
76
|
+
<g id="node6" class="node">
|
|
77
|
+
<title>mis</title>
|
|
78
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M418.38,-516.75C418.38,-519.78 382.85,-522.25 339.12,-522.25 295.4,-522.25 259.88,-519.78 259.88,-516.75 259.88,-516.75 259.88,-467.25 259.88,-467.25 259.88,-464.22 295.4,-461.75 339.12,-461.75 382.85,-461.75 418.38,-464.22 418.38,-467.25 418.38,-467.25 418.38,-516.75 418.38,-516.75"/>
|
|
79
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M418.38,-516.75C418.38,-513.72 382.85,-511.25 339.12,-511.25 295.4,-511.25 259.88,-513.72 259.88,-516.75"/>
|
|
80
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-500.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">mistakes.json</text>
|
|
81
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-488.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">failure fingerprints · fixes</text>
|
|
82
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-476.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">[REPEATING] · [REGRESSED]</text>
|
|
83
|
+
</g>
|
|
84
|
+
<!-- Root->mis -->
|
|
85
|
+
<g id="edge5" class="edge">
|
|
86
|
+
<title>Root->mis</title>
|
|
87
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.11,-399.88C186.73,-414.95 233.56,-438.78 272.16,-458.43"/>
|
|
88
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="270.93,-460.55 278.28,-461.55 273.16,-456.19 270.93,-460.55"/>
|
|
89
|
+
</g>
|
|
90
|
+
<!-- met -->
|
|
91
|
+
<g id="node7" class="node">
|
|
92
|
+
<title>met</title>
|
|
93
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M385,-436C385,-438.21 364.44,-440 339.12,-440 313.81,-440 293.25,-438.21 293.25,-436 293.25,-436 293.25,-400 293.25,-400 293.25,-397.79 313.81,-396 339.12,-396 364.44,-396 385,-397.79 385,-400 385,-400 385,-436 385,-436"/>
|
|
94
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M385,-436C385,-433.79 364.44,-432 339.12,-432 313.81,-432 293.25,-433.79 293.25,-436"/>
|
|
95
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-420.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">metrics.json</text>
|
|
96
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-408.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">per-tool telemetry</text>
|
|
97
|
+
</g>
|
|
98
|
+
<!-- Root->met -->
|
|
99
|
+
<g id="edge6" class="edge">
|
|
100
|
+
<title>Root->met</title>
|
|
101
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.11,-389.59C189.98,-394.75 244.03,-403.23 284.53,-409.59"/>
|
|
102
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="284.02,-411.99 291.31,-410.65 284.78,-407.15 284.02,-411.99"/>
|
|
103
|
+
</g>
|
|
104
|
+
<!-- ext -->
|
|
105
|
+
<g id="node8" class="node">
|
|
106
|
+
<title>ext</title>
|
|
107
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M420.62,-370C420.62,-372.21 384.1,-374 339.12,-374 294.15,-374 257.62,-372.21 257.62,-370 257.62,-370 257.62,-334 257.62,-334 257.62,-331.79 294.15,-330 339.12,-330 384.1,-330 420.62,-331.79 420.62,-334 420.62,-334 420.62,-370 420.62,-370"/>
|
|
108
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M420.62,-370C420.62,-367.79 384.1,-366 339.12,-366 294.15,-366 257.62,-367.79 257.62,-370"/>
|
|
109
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-354.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">extrospection.json</text>
|
|
110
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-342.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">host snapshot + rf + observations</text>
|
|
111
|
+
</g>
|
|
112
|
+
<!-- Root->ext -->
|
|
113
|
+
<g id="edge7" class="edge">
|
|
114
|
+
<title>Root->ext</title>
|
|
115
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.11,-380.41C180.93,-376.67 215.88,-371.19 248.73,-366.03"/>
|
|
116
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="248.85,-368.49 255.39,-364.99 248.09,-363.65 248.85,-368.49"/>
|
|
117
|
+
</g>
|
|
118
|
+
<!-- ses -->
|
|
119
|
+
<g id="node9" class="node">
|
|
120
|
+
<title>ses</title>
|
|
121
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M381.62,-304C381.62,-306.21 362.58,-308 339.12,-308 315.67,-308 296.62,-306.21 296.62,-304 296.62,-304 296.62,-268 296.62,-268 296.62,-265.79 315.67,-264 339.12,-264 362.58,-264 381.62,-265.79 381.62,-268 381.62,-268 381.62,-304 381.62,-304"/>
|
|
122
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M381.62,-304C381.62,-301.79 362.58,-300 339.12,-300 315.67,-300 296.62,-301.79 296.62,-304"/>
|
|
123
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-288.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">sessions/*.jsonl</text>
|
|
124
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-276.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">transcripts</text>
|
|
125
|
+
</g>
|
|
126
|
+
<!-- Root->ses -->
|
|
127
|
+
<g id="edge8" class="edge">
|
|
128
|
+
<title>Root->ses</title>
|
|
129
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.17,-369.23C183.25,-355.41 222.59,-335.06 257.62,-319 267.47,-314.49 278.12,-309.91 288.35,-305.66"/>
|
|
130
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="288.99,-308.05 294.53,-303.12 287.12,-303.52 288.99,-308.05"/>
|
|
131
|
+
</g>
|
|
132
|
+
<!-- crn -->
|
|
133
|
+
<g id="node10" class="node">
|
|
134
|
+
<title>crn</title>
|
|
135
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M394.75,-238C394.75,-240.21 369.82,-242 339.12,-242 308.43,-242 283.5,-240.21 283.5,-238 283.5,-238 283.5,-202 283.5,-202 283.5,-199.79 308.43,-198 339.12,-198 369.82,-198 394.75,-199.79 394.75,-202 394.75,-202 394.75,-238 394.75,-238"/>
|
|
136
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M394.75,-238C394.75,-235.79 369.82,-234 339.12,-234 308.43,-234 283.5,-235.79 283.5,-238"/>
|
|
137
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-222.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">cron/jobs.yml</text>
|
|
138
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-210.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">scheduled jobs + logs</text>
|
|
139
|
+
</g>
|
|
140
|
+
<!-- Root->crn -->
|
|
141
|
+
<g id="edge9" class="edge">
|
|
142
|
+
<title>Root->crn</title>
|
|
143
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M141.96,-366.46C163.98,-338.57 209.08,-285.61 257.62,-253 263.09,-249.33 269.03,-245.95 275.12,-242.87"/>
|
|
144
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="276.15,-245.1 281.4,-239.86 274.02,-240.68 276.15,-245.1"/>
|
|
145
|
+
</g>
|
|
146
|
+
<!-- agt -->
|
|
147
|
+
<g id="node11" class="node">
|
|
148
|
+
<title>agt</title>
|
|
149
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M382,-172C382,-174.21 362.78,-176 339.12,-176 315.47,-176 296.25,-174.21 296.25,-172 296.25,-172 296.25,-136 296.25,-136 296.25,-133.79 315.47,-132 339.12,-132 362.78,-132 382,-133.79 382,-136 382,-136 382,-172 382,-172"/>
|
|
150
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M382,-172C382,-169.79 362.78,-168 339.12,-168 315.47,-168 296.25,-169.79 296.25,-172"/>
|
|
151
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-156.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">agents.yml</text>
|
|
152
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-144.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">persona registry</text>
|
|
153
|
+
</g>
|
|
154
|
+
<!-- Root->agt -->
|
|
155
|
+
<g id="edge10" class="edge">
|
|
156
|
+
<title>Root->agt</title>
|
|
157
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M135.42,-366.51C152,-328 195.18,-238.53 257.62,-187 266.53,-179.65 277.3,-173.75 288.02,-169.08"/>
|
|
158
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="288.7,-171.45 294.25,-166.53 286.84,-166.92 288.7,-171.45"/>
|
|
159
|
+
</g>
|
|
160
|
+
<!-- swm -->
|
|
161
|
+
<g id="node12" class="node">
|
|
162
|
+
<title>swm</title>
|
|
163
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M394,-106C394,-108.21 369.4,-110 339.12,-110 308.85,-110 284.25,-108.21 284.25,-106 284.25,-106 284.25,-70 284.25,-70 284.25,-67.79 308.85,-66 339.12,-66 369.4,-66 394,-67.79 394,-70 394,-70 394,-106 394,-106"/>
|
|
164
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M394,-106C394,-103.79 369.4,-102 339.12,-102 308.85,-102 284.25,-103.79 284.25,-106"/>
|
|
165
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-90.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">swarm/<id>/bus.jsonl</text>
|
|
166
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-78.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">multi-agent chat</text>
|
|
167
|
+
</g>
|
|
168
|
+
<!-- Root->swm -->
|
|
169
|
+
<g id="edge11" class="edge">
|
|
170
|
+
<title>Root->swm</title>
|
|
171
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M132.08,-366.6C143.76,-319.39 180.94,-192.65 257.62,-121 263.14,-115.85 269.56,-111.45 276.33,-107.71"/>
|
|
172
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="277.19,-110.03 282.31,-104.66 274.96,-105.66 277.19,-110.03"/>
|
|
173
|
+
</g>
|
|
174
|
+
<!-- hist -->
|
|
175
|
+
<g id="node13" class="node">
|
|
176
|
+
<title>hist</title>
|
|
177
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M379.38,-40C379.38,-42.21 361.33,-44 339.12,-44 316.92,-44 298.88,-42.21 298.88,-40 298.88,-40 298.88,-4 298.88,-4 298.88,-1.79 316.92,0 339.12,0 361.33,0 379.38,-1.79 379.38,-4 379.38,-4 379.38,-40 379.38,-40"/>
|
|
178
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M379.38,-40C379.38,-37.79 361.33,-36 339.12,-36 316.92,-36 298.88,-37.79 298.88,-40"/>
|
|
179
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">~/.pwn_history</text>
|
|
180
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-12.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">REPL history</text>
|
|
181
|
+
</g>
|
|
182
|
+
<!-- Root->hist -->
|
|
183
|
+
<g id="edge12" class="edge">
|
|
184
|
+
<title>Root->hist</title>
|
|
185
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M130.04,-366.57C137.42,-311.7 166.44,-147.51 257.62,-55 266.67,-45.82 278.63,-39.1 290.55,-34.21"/>
|
|
186
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="291.11,-36.61 296.79,-31.84 289.38,-32.03 291.11,-36.61"/>
|
|
187
|
+
</g>
|
|
188
|
+
</g>
|
|
189
|
+
</svg>
|