pwn 0.5.618 → 0.5.621

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 (107) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -2
  3. data/README.md +14 -6
  4. data/bin/pwn_gqrx_scanner +25 -5
  5. data/documentation/Agent-Tool-Registry.md +4 -4
  6. data/documentation/Cron.md +13 -0
  7. data/documentation/Diagrams.md +6 -2
  8. data/documentation/Extrospection.md +96 -11
  9. data/documentation/Home.md +5 -4
  10. data/documentation/How-PWN-Works.md +7 -4
  11. data/documentation/Mistakes.md +97 -0
  12. data/documentation/Persistence.md +4 -1
  13. data/documentation/SDR.md +23 -5
  14. data/documentation/Skills-Memory-Learning.md +16 -5
  15. data/documentation/Transparent-Browser.md +18 -1
  16. data/documentation/diagrams/agent-tool-registry.svg +103 -100
  17. data/documentation/diagrams/ai-integration-tool-calling.svg +24 -24
  18. data/documentation/diagrams/aws-cloud-security.svg +25 -25
  19. data/documentation/diagrams/burp-vs-zap-preference.svg +12 -12
  20. data/documentation/diagrams/code-scanning-sast.svg +25 -25
  21. data/documentation/diagrams/cron-scheduling.svg +23 -23
  22. data/documentation/diagrams/dot/agent-tool-registry.dot +3 -3
  23. data/documentation/diagrams/dot/extrospection-world-awareness.dot +33 -10
  24. data/documentation/diagrams/dot/memory-skills-detailed.dot +16 -5
  25. data/documentation/diagrams/dot/mistakes-negative-feedback.dot +93 -0
  26. data/documentation/diagrams/dot/overall-pwn-architecture.dot +7 -5
  27. data/documentation/diagrams/dot/persistence-filesystem.dot +4 -2
  28. data/documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot +25 -7
  29. data/documentation/diagrams/dot/sdr-radio-flow.dot +13 -11
  30. data/documentation/diagrams/driver-framework.svg +13 -13
  31. data/documentation/diagrams/extrospection-world-awareness.svg +241 -93
  32. data/documentation/diagrams/fuzzing-workflow.svg +24 -24
  33. data/documentation/diagrams/hardware-hacking.svg +18 -18
  34. data/documentation/diagrams/history-to-drivers.svg +18 -18
  35. data/documentation/diagrams/memory-skills-detailed.svg +169 -97
  36. data/documentation/diagrams/mistakes-negative-feedback.svg +266 -0
  37. data/documentation/diagrams/network-infra-testing.svg +27 -27
  38. data/documentation/diagrams/overall-pwn-architecture.svg +184 -173
  39. data/documentation/diagrams/penetration-testing-workflow.svg +30 -30
  40. data/documentation/diagrams/persistence-filesystem.svg +111 -87
  41. data/documentation/diagrams/plugin-ecosystem.svg +35 -35
  42. data/documentation/diagrams/pwn-ai-feedback-learning-loop.svg +263 -149
  43. data/documentation/diagrams/pwn-repl-prototyping.svg +20 -20
  44. data/documentation/diagrams/reporting-pipeline.svg +18 -18
  45. data/documentation/diagrams/reverse-engineering-flow.svg +21 -21
  46. data/documentation/diagrams/sdr-radio-flow.svg +76 -56
  47. data/documentation/diagrams/sessions-cron-automation.svg +18 -18
  48. data/documentation/diagrams/swarm-multi-agent.svg +39 -39
  49. data/documentation/diagrams/web-application-testing.svg +26 -26
  50. data/documentation/diagrams/zero-day-research-flow.svg +25 -25
  51. data/documentation/pwn-ai-Agent.md +28 -15
  52. data/lib/pwn/ai/agent/extrospection.rb +494 -6
  53. data/lib/pwn/ai/agent/learning.rb +67 -7
  54. data/lib/pwn/ai/agent/loop.rb +72 -6
  55. data/lib/pwn/ai/agent/mistakes.rb +369 -0
  56. data/lib/pwn/ai/agent/prompt_builder.rb +10 -1
  57. data/lib/pwn/ai/agent/tools/extrospection.rb +88 -3
  58. data/lib/pwn/ai/agent/tools/mistakes.rb +132 -0
  59. data/lib/pwn/ai/agent.rb +1 -0
  60. data/lib/pwn/plugins/jira_data_center.rb +2 -2
  61. data/lib/pwn/sdr/decoder/adsb.rb +82 -0
  62. data/lib/pwn/sdr/decoder/apt.rb +136 -0
  63. data/lib/pwn/sdr/decoder/base.rb +258 -171
  64. data/lib/pwn/sdr/decoder/bluetooth.rb +71 -0
  65. data/lib/pwn/sdr/decoder/dect.rb +70 -0
  66. data/lib/pwn/sdr/decoder/dsp.rb +396 -0
  67. data/lib/pwn/sdr/decoder/flex.rb +177 -210
  68. data/lib/pwn/sdr/decoder/gps.rb +74 -0
  69. data/lib/pwn/sdr/decoder/gsm.rb +31 -62
  70. data/lib/pwn/sdr/decoder/iridium.rb +66 -0
  71. data/lib/pwn/sdr/decoder/lora.rb +80 -0
  72. data/lib/pwn/sdr/decoder/lte.rb +67 -0
  73. data/lib/pwn/sdr/decoder/morse.rb +138 -0
  74. data/lib/pwn/sdr/decoder/p25.rb +74 -0
  75. data/lib/pwn/sdr/decoder/pager.rb +61 -0
  76. data/lib/pwn/sdr/decoder/pocsag.rb +176 -54
  77. data/lib/pwn/sdr/decoder/rfid.rb +79 -0
  78. data/lib/pwn/sdr/decoder/rtl433.rb +86 -0
  79. data/lib/pwn/sdr/decoder/rtty.rb +139 -0
  80. data/lib/pwn/sdr/decoder/wifi.rb +77 -0
  81. data/lib/pwn/sdr/decoder/zigbee.rb +74 -0
  82. data/lib/pwn/sdr/decoder.rb +75 -7
  83. data/lib/pwn/sdr/frequency_allocation.rb +82 -41
  84. data/lib/pwn/sdr/gqrx.rb +186 -95
  85. data/lib/pwn/version.rb +1 -1
  86. data/spec/lib/pwn/ai/agent/mistakes_spec.rb +36 -0
  87. data/spec/lib/pwn/ai/agent/tools/mistakes_spec.rb +12 -0
  88. data/spec/lib/pwn/sdr/decoder/adsb_spec.rb +15 -0
  89. data/spec/lib/pwn/sdr/decoder/apt_spec.rb +15 -0
  90. data/spec/lib/pwn/sdr/decoder/bluetooth_spec.rb +15 -0
  91. data/spec/lib/pwn/sdr/decoder/dect_spec.rb +15 -0
  92. data/spec/lib/pwn/sdr/decoder/dsp_spec.rb +15 -0
  93. data/spec/lib/pwn/sdr/decoder/gps_spec.rb +15 -0
  94. data/spec/lib/pwn/sdr/decoder/iridium_spec.rb +15 -0
  95. data/spec/lib/pwn/sdr/decoder/lora_spec.rb +15 -0
  96. data/spec/lib/pwn/sdr/decoder/lte_spec.rb +15 -0
  97. data/spec/lib/pwn/sdr/decoder/morse_spec.rb +15 -0
  98. data/spec/lib/pwn/sdr/decoder/p25_spec.rb +15 -0
  99. data/spec/lib/pwn/sdr/decoder/pager_spec.rb +15 -0
  100. data/spec/lib/pwn/sdr/decoder/rfid_spec.rb +15 -0
  101. data/spec/lib/pwn/sdr/decoder/rtl433_spec.rb +15 -0
  102. data/spec/lib/pwn/sdr/decoder/rtty_spec.rb +15 -0
  103. data/spec/lib/pwn/sdr/decoder/wifi_spec.rb +15 -0
  104. data/spec/lib/pwn/sdr/decoder/zigbee_spec.rb +15 -0
  105. data/third_party/pwn_rdoc.jsonl +115 -5
  106. metadata +46 -6
  107. data/README.md.bak +0 -200
@@ -4,143 +4,163 @@
4
4
  <!-- Generated by graphviz version 14.1.2 (0)
5
5
  -->
6
6
  <!-- Title: PWN_SDR Pages: 1 -->
7
- <svg width="784pt" height="368pt"
8
- viewBox="0.00 0.00 784.00 368.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 325.2)">
7
+ <svg width="917pt" height="599pt"
8
+ viewBox="0.00 0.00 917.00 599.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 556.2)">
10
10
  <title>PWN_SDR</title>
11
- <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-325.2 740.45,-325.2 740.45,43.2 -43.2,43.2"/>
12
- <text xml:space="preserve" text-anchor="start" x="103.38" y="-260" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::SDR — Software&#45;Defined Radio &amp; RF Hacking</text>
13
- <text xml:space="preserve" text-anchor="start" x="196" y="-248.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">GQRX · FlipperZero · RFIDler · SonMicro · FrequencyAllocation</text>
11
+ <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-556.2 873.45,-556.2 873.45,43.2 -43.2,43.2"/>
12
+ <text xml:space="preserve" text-anchor="start" x="169.88" y="-491" font-family="Helvetica,sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::SDR — Software&#45;Defined Radio &amp; RF Hacking</text>
13
+ <text xml:space="preserve" text-anchor="start" x="197.62" y="-479.55" font-family="Helvetica,sans-Serif" font-size="11.00" fill="#94a3b8">GQRX · FlipperZero · RFIDler · SonMicro · FrequencyAllocation · Decoder::* (20 protocols)</text>
14
14
  <g id="clust1" class="cluster">
15
15
  <title>cluster_hw</title>
16
- <path fill="#022c22" stroke="#047857" d="M183.25,-16C183.25,-16 280.5,-16 280.5,-16 286.5,-16 292.5,-22 292.5,-28 292.5,-28 292.5,-223 292.5,-223 292.5,-229 286.5,-235 280.5,-235 280.5,-235 183.25,-235 183.25,-235 177.25,-235 171.25,-229 171.25,-223 171.25,-223 171.25,-28 171.25,-28 171.25,-22 177.25,-16 183.25,-16"/>
17
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-212" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Hardware</text>
16
+ <path fill="#022c22" stroke="#047857" d="M228.5,-239C228.5,-239 346,-239 346,-239 352,-239 358,-245 358,-251 358,-251 358,-446 358,-446 358,-452 352,-458 346,-458 346,-458 228.5,-458 228.5,-458 222.5,-458 216.5,-452 216.5,-446 216.5,-446 216.5,-251 216.5,-251 216.5,-245 222.5,-239 228.5,-239"/>
17
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-435" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#a7f3d0">Hardware</text>
18
18
  </g>
19
19
  <g id="clust2" class="cluster">
20
20
  <title>cluster_ctrl</title>
21
- <path fill="#422006" stroke="#a16207" d="M374.5,-8C374.5,-8 498.75,-8 498.75,-8 504.75,-8 510.75,-14 510.75,-20 510.75,-20 510.75,-223 510.75,-223 510.75,-229 504.75,-235 498.75,-235 498.75,-235 374.5,-235 374.5,-235 368.5,-235 362.5,-229 362.5,-223 362.5,-223 362.5,-20 362.5,-20 362.5,-14 368.5,-8 374.5,-8"/>
22
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-212" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Control</text>
21
+ <path fill="#422006" stroke="#a16207" d="M440,-219C440,-219 564.25,-219 564.25,-219 570.25,-219 576.25,-225 576.25,-231 576.25,-231 576.25,-454 576.25,-454 576.25,-460 570.25,-466 564.25,-466 564.25,-466 440,-466 440,-466 434,-466 428,-460 428,-454 428,-454 428,-231 428,-231 428,-225 434,-219 440,-219"/>
22
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-443" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fde68a">Control · Scan</text>
23
23
  </g>
24
24
  <g id="clust3" class="cluster">
25
25
  <title>cluster_dec</title>
26
- <path fill="#2e1065" stroke="#6d28d9" d="M592.75,-84C592.75,-84 677.25,-84 677.25,-84 683.25,-84 689.25,-90 689.25,-96 689.25,-96 689.25,-223 689.25,-223 689.25,-229 683.25,-235 677.25,-235 677.25,-235 592.75,-235 592.75,-235 586.75,-235 580.75,-229 580.75,-223 580.75,-223 580.75,-96 580.75,-96 580.75,-90 586.75,-84 592.75,-84"/>
27
- <text xml:space="preserve" text-anchor="middle" x="635" y="-212" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">Decode</text>
26
+ <path fill="#2e1065" stroke="#6d28d9" d="M20,-8C20,-8 810.25,-8 810.25,-8 816.25,-8 822.25,-14 822.25,-20 822.25,-20 822.25,-199 822.25,-199 822.25,-205 816.25,-211 810.25,-211 810.25,-211 20,-211 20,-211 14,-211 8,-205 8,-199 8,-199 8,-20 8,-20 8,-14 14,-8 20,-8"/>
27
+ <text xml:space="preserve" text-anchor="middle" x="415.12" y="-188" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#ddd6fe">Decode · Record</text>
28
28
  </g>
29
29
  <!-- RF -->
30
30
  <g id="node1" class="node">
31
31
  <title>RF</title>
32
- <path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M81.25,-128C81.25,-128 12,-128 12,-128 6,-128 0,-122 0,-116 0,-116 0,-104 0,-104 0,-98 6,-92 12,-92 12,-92 81.25,-92 81.25,-92 87.25,-92 93.25,-98 93.25,-104 93.25,-104 93.25,-116 93.25,-116 93.25,-122 87.25,-128 81.25,-128"/>
33
- <text xml:space="preserve" text-anchor="middle" x="46.62" y="-106.88" font-family="sans-Serif" font-size="10.00" fill="#0f172a">📡 &#160;RF Spectrum</text>
32
+ <path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M111.88,-351C111.88,-351 42.62,-351 42.62,-351 36.62,-351 30.62,-345 30.62,-339 30.62,-339 30.62,-327 30.62,-327 30.62,-321 36.62,-315 42.62,-315 42.62,-315 111.88,-315 111.88,-315 117.88,-315 123.88,-321 123.88,-327 123.88,-327 123.88,-339 123.88,-339 123.88,-345 117.88,-351 111.88,-351"/>
33
+ <text xml:space="preserve" text-anchor="middle" x="77.25" y="-329.88" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">📡 &#160;RF Spectrum</text>
34
34
  </g>
35
35
  <!-- SDRhw -->
36
36
  <g id="node2" class="node">
37
37
  <title>SDRhw</title>
38
- <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M272.5,-60C272.5,-60 191.25,-60 191.25,-60 185.25,-60 179.25,-54 179.25,-48 179.25,-48 179.25,-36 179.25,-36 179.25,-30 185.25,-24 191.25,-24 191.25,-24 272.5,-24 272.5,-24 278.5,-24 284.5,-30 284.5,-36 284.5,-36 284.5,-48 284.5,-48 284.5,-54 278.5,-60 272.5,-60"/>
39
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-44.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">RTL&#45;SDR / HackRF</text>
40
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-32.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">(via GQRX)</text>
38
+ <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M338,-283C338,-283 236.5,-283 236.5,-283 230.5,-283 224.5,-277 224.5,-271 224.5,-271 224.5,-259 224.5,-259 224.5,-253 230.5,-247 236.5,-247 236.5,-247 338,-247 338,-247 344,-247 350,-253 350,-259 350,-259 350,-271 350,-271 350,-277 344,-283 338,-283"/>
39
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-267.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">RTL&#45;SDR / HackRF</text>
40
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-255.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(via GQRX / SoapySDR)</text>
41
41
  </g>
42
42
  <!-- RF&#45;&gt;SDRhw -->
43
43
  <g id="edge1" class="edge">
44
44
  <title>RF&#45;&gt;SDRhw</title>
45
- <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M93.87,-92.84C117.47,-84.08 146.46,-73.32 171.68,-63.97"/>
46
- <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="172.42,-66.68 178.94,-61.27 170.47,-61.43 172.42,-66.68"/>
45
+ <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M124.41,-317.91C152.63,-308.69 189.17,-296.74 220.38,-286.53"/>
46
+ <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="220.86,-289.32 227.59,-284.18 219.12,-284 220.86,-289.32"/>
47
47
  </g>
48
48
  <!-- Flipper -->
49
49
  <g id="node3" class="node">
50
50
  <title>Flipper</title>
51
- <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M266.12,-128C266.12,-128 197.62,-128 197.62,-128 191.62,-128 185.62,-122 185.62,-116 185.62,-116 185.62,-104 185.62,-104 185.62,-98 191.62,-92 197.62,-92 197.62,-92 266.12,-92 266.12,-92 272.12,-92 278.12,-98 278.12,-104 278.12,-104 278.12,-116 278.12,-116 278.12,-122 272.12,-128 266.12,-128"/>
52
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-106.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SDR::FlipperZero</text>
51
+ <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M321.5,-351C321.5,-351 253,-351 253,-351 247,-351 241,-345 241,-339 241,-339 241,-327 241,-327 241,-321 247,-315 253,-315 253,-315 321.5,-315 321.5,-315 327.5,-315 333.5,-321 333.5,-327 333.5,-327 333.5,-339 333.5,-339 333.5,-345 327.5,-351 321.5,-351"/>
52
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-329.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SDR::FlipperZero</text>
53
53
  </g>
54
54
  <!-- RF&#45;&gt;Flipper -->
55
55
  <g id="edge2" class="edge">
56
56
  <title>RF&#45;&gt;Flipper</title>
57
- <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M93.87,-110C118.69,-110 149.45,-110 175.54,-110"/>
58
- <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="175.32,-112.8 183.32,-110 175.32,-107.2 175.32,-112.8"/>
57
+ <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M124.41,-333C155.89,-333 197.74,-333 231,-333"/>
58
+ <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="230.61,-335.8 238.61,-333 230.61,-330.2 230.61,-335.8"/>
59
59
  </g>
60
60
  <!-- RFID -->
61
61
  <g id="node4" class="node">
62
62
  <title>RFID</title>
63
- <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M260.5,-196C260.5,-196 203.25,-196 203.25,-196 197.25,-196 191.25,-190 191.25,-184 191.25,-184 191.25,-172 191.25,-172 191.25,-166 197.25,-160 203.25,-160 203.25,-160 260.5,-160 260.5,-160 266.5,-160 272.5,-166 272.5,-172 272.5,-172 272.5,-184 272.5,-184 272.5,-190 266.5,-196 260.5,-196"/>
64
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-180.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SDR::RFIDler</text>
65
- <text xml:space="preserve" text-anchor="middle" x="231.88" y="-168.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SonMicroRFID</text>
63
+ <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M315.88,-419C315.88,-419 258.62,-419 258.62,-419 252.62,-419 246.62,-413 246.62,-407 246.62,-407 246.62,-395 246.62,-395 246.62,-389 252.62,-383 258.62,-383 258.62,-383 315.88,-383 315.88,-383 321.88,-383 327.88,-389 327.88,-395 327.88,-395 327.88,-407 327.88,-407 327.88,-413 321.88,-419 315.88,-419"/>
64
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-403.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SDR::RFIDler</text>
65
+ <text xml:space="preserve" text-anchor="middle" x="287.25" y="-391.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SonMicroRFID</text>
66
66
  </g>
67
67
  <!-- RF&#45;&gt;RFID -->
68
68
  <g id="edge3" class="edge">
69
69
  <title>RF&#45;&gt;RFID</title>
70
- <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M93.87,-127.16C120.73,-137.13 154.56,-149.68 181.88,-159.82"/>
71
- <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="180.55,-162.31 189.03,-162.47 182.5,-157.06 180.55,-162.31"/>
70
+ <path fill="none" stroke="#fb7185" stroke-width="1.3" d="M124.27,-348.51C151.14,-357.52 185.7,-369.02 216.5,-379 223.06,-381.13 229.98,-383.34 236.8,-385.51"/>
71
+ <polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="235.66,-388.09 244.14,-387.83 237.36,-382.75 235.66,-388.09"/>
72
72
  </g>
73
73
  <!-- GQRX -->
74
74
  <g id="node5" class="node">
75
75
  <title>GQRX</title>
76
- <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M478.75,-60C478.75,-60 394.5,-60 394.5,-60 388.5,-60 382.5,-54 382.5,-48 382.5,-48 382.5,-28 382.5,-28 382.5,-22 388.5,-16 394.5,-16 394.5,-16 478.75,-16 478.75,-16 484.75,-16 490.75,-22 490.75,-28 490.75,-28 490.75,-48 490.75,-48 490.75,-54 484.75,-60 478.75,-60"/>
77
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-46.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SDR::GQRX</text>
78
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-34.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">remote control · scan</text>
79
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-22.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">spectrum snapshot</text>
76
+ <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M548.75,-283C548.75,-283 455.5,-283 455.5,-283 449.5,-283 443.5,-277 443.5,-271 443.5,-271 443.5,-239 443.5,-239 443.5,-233 449.5,-227 455.5,-227 455.5,-227 548.75,-227 548.75,-227 554.75,-227 560.75,-233 560.75,-239 560.75,-239 560.75,-271 560.75,-271 560.75,-277 554.75,-283 548.75,-283"/>
77
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-269.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SDR::GQRX</text>
78
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-257.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">remote control</text>
79
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-245.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">spectrum snapshot</text>
80
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-233.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(median floor · DC null)</text>
80
81
  </g>
81
82
  <!-- SDRhw&#45;&gt;GQRX -->
82
83
  <g id="edge4" class="edge">
83
84
  <title>SDRhw&#45;&gt;GQRX</title>
84
- <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M285.09,-40.97C311.75,-40.44 344.39,-39.8 372.46,-39.25"/>
85
- <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="372.27,-42.05 380.21,-39.09 372.16,-36.45 372.27,-42.05"/>
85
+ <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M350.39,-262.08C376.41,-260.86 406.72,-259.43 433.31,-258.19"/>
86
+ <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="433.09,-261 440.95,-257.83 432.83,-255.41 433.09,-261"/>
87
+ </g>
88
+ <!-- Xrf -->
89
+ <g id="node10" class="node">
90
+ <title>Xrf</title>
91
+ <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M126.5,-112C126.5,-112 28,-112 28,-112 22,-112 16,-106 16,-100 16,-100 16,-88 16,-88 16,-82 22,-76 28,-76 28,-76 126.5,-76 126.5,-76 132.5,-76 138.5,-82 138.5,-88 138.5,-88 138.5,-100 138.5,-100 138.5,-106 132.5,-112 126.5,-112"/>
92
+ <text xml:space="preserve" text-anchor="middle" x="77.25" y="-96.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">extro_snapshot :rf</text>
93
+ <text xml:space="preserve" text-anchor="middle" x="77.25" y="-84.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">probe_rf → hw inventory</text>
94
+ </g>
95
+ <!-- SDRhw&#45;&gt;Xrf -->
96
+ <g id="edge10" class="edge">
97
+ <title>SDRhw&#45;&gt;Xrf</title>
98
+ <path fill="none" stroke="#fbbf24" stroke-width="1.3" stroke-dasharray="5,2" d="M223.87,-247.2C221.33,-245.89 218.86,-244.49 216.5,-243 164.82,-210.3 119.75,-153.58 96.03,-120.36"/>
99
+ <polygon fill="#fbbf24" stroke="#fbbf24" stroke-width="1.3" points="98.49,-118.99 91.6,-114.05 93.91,-122.21 98.49,-118.99"/>
86
100
  </g>
87
101
  <!-- Freq -->
88
102
  <g id="node6" class="node">
89
103
  <title>Freq</title>
90
- <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M490.75,-128C490.75,-128 382.5,-128 382.5,-128 376.5,-128 370.5,-122 370.5,-116 370.5,-116 370.5,-104 370.5,-104 370.5,-98 376.5,-92 382.5,-92 382.5,-92 490.75,-92 490.75,-92 496.75,-92 502.75,-98 502.75,-104 502.75,-104 502.75,-116 502.75,-116 502.75,-122 496.75,-128 490.75,-128"/>
91
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-112.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SDR::FrequencyAllocation</text>
92
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-100.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">band lookup</text>
104
+ <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M556.25,-351C556.25,-351 448,-351 448,-351 442,-351 436,-345 436,-339 436,-339 436,-327 436,-327 436,-321 442,-315 448,-315 448,-315 556.25,-315 556.25,-315 562.25,-315 568.25,-321 568.25,-327 568.25,-327 568.25,-339 568.25,-339 568.25,-345 562.25,-351 556.25,-351"/>
105
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-335.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SDR::FrequencyAllocation</text>
106
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-323.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">band lookup</text>
93
107
  </g>
94
108
  <!-- Flipper&#45;&gt;Freq -->
95
109
  <g id="edge5" class="edge">
96
110
  <title>Flipper&#45;&gt;Freq</title>
97
- <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M278.63,-110C302.66,-110 332.72,-110 360.1,-110"/>
98
- <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="360.08,-112.8 368.08,-110 360.08,-107.2 360.08,-112.8"/>
111
+ <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M333.92,-333C360.7,-333 395.22,-333 425.92,-333"/>
112
+ <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="425.77,-335.8 433.77,-333 425.77,-330.2 425.77,-335.8"/>
99
113
  </g>
100
114
  <!-- Scan -->
101
115
  <g id="node7" class="node">
102
116
  <title>Scan</title>
103
- <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M481.38,-196C481.38,-196 391.88,-196 391.88,-196 385.88,-196 379.88,-190 379.88,-184 379.88,-184 379.88,-172 379.88,-172 379.88,-166 385.88,-160 391.88,-160 391.88,-160 481.38,-160 481.38,-160 487.38,-160 493.38,-166 493.38,-172 493.38,-172 493.38,-184 493.38,-184 493.38,-190 487.38,-196 481.38,-196"/>
104
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-180.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">bin/pwn_gqrx_scanner</text>
105
- <text xml:space="preserve" text-anchor="middle" x="436.62" y="-168.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">fast · iterative</text>
117
+ <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M546.88,-427C546.88,-427 457.38,-427 457.38,-427 451.38,-427 445.38,-421 445.38,-415 445.38,-415 445.38,-395 445.38,-395 445.38,-389 451.38,-383 457.38,-383 457.38,-383 546.88,-383 546.88,-383 552.88,-383 558.88,-389 558.88,-395 558.88,-395 558.88,-415 558.88,-415 558.88,-421 552.88,-427 546.88,-427"/>
118
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-413.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">bin/pwn_gqrx_scanner</text>
119
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-401.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">&#45;&#45;fft&#45;scan · iterative</text>
120
+ <text xml:space="preserve" text-anchor="middle" x="502.12" y="-389.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">&#45;&#45;min&#45;snr&#45;db · &#45;&#45;avg</text>
106
121
  </g>
107
122
  <!-- RFID&#45;&gt;Scan -->
108
123
  <g id="edge6" class="edge">
109
124
  <title>RFID&#45;&gt;Scan</title>
110
- <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M272.93,-178C300.54,-178 337.87,-178 369.81,-178"/>
111
- <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="369.57,-180.8 377.57,-178 369.57,-175.2 369.57,-180.8"/>
125
+ <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M328.29,-401.75C358.34,-402.32 400.16,-403.1 435.13,-403.76"/>
126
+ <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="434.78,-406.55 442.83,-403.9 434.88,-400.95 434.78,-406.55"/>
112
127
  </g>
113
128
  <!-- Dec -->
114
129
  <g id="node8" class="node">
115
130
  <title>Dec</title>
116
- <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M668.12,-128C668.12,-128 601.88,-128 601.88,-128 595.88,-128 589.88,-122 589.88,-116 589.88,-116 589.88,-104 589.88,-104 589.88,-98 595.88,-92 601.88,-92 601.88,-92 668.12,-92 668.12,-92 674.12,-92 680.12,-98 680.12,-104 680.12,-104 680.12,-116 680.12,-116 680.12,-122 674.12,-128 668.12,-128"/>
117
- <text xml:space="preserve" text-anchor="middle" x="635" y="-112.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SDR::Decoder::*</text>
118
- <text xml:space="preserve" text-anchor="middle" x="635" y="-100.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">demod · protocol</text>
131
+ <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M802.25,-96C802.25,-96 666.25,-96 666.25,-96 660.25,-96 654.25,-90 654.25,-84 654.25,-84 654.25,-28 654.25,-28 654.25,-22 660.25,-16 666.25,-16 666.25,-16 802.25,-16 802.25,-16 808.25,-16 814.25,-22 814.25,-28 814.25,-28 814.25,-84 814.25,-84 814.25,-90 808.25,-96 802.25,-96"/>
132
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-82.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SDR::Decoder::*</text>
133
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-70.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">ADSB · APT · BT · DECT · GPS</text>
134
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-58.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">GSM · Iridium · LoRa · LTE</text>
135
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-46.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Morse · P25 · POCSAG/FLEX</text>
136
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-34.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">RDS · RFID · rtl_433 · RTTY</text>
137
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-22.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">WiFi · ZigBee</text>
119
138
  </g>
120
139
  <!-- GQRX&#45;&gt;Dec -->
121
140
  <g id="edge7" class="edge">
122
141
  <title>GQRX&#45;&gt;Dec</title>
123
- <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M491.29,-57.67C518.93,-67.81 552.56,-80.14 580.23,-90.28"/>
124
- <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="579.04,-92.83 587.52,-92.96 580.97,-87.57 579.04,-92.83"/>
142
+ <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M561.17,-233.24C566.51,-230.18 571.64,-226.77 576.25,-223 622.93,-184.83 611.7,-154.72 654.25,-112 657.34,-108.9 660.61,-105.85 664,-102.88"/>
143
+ <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="665.77,-105.05 670.09,-97.76 662.16,-100.77 665.77,-105.05"/>
125
144
  </g>
126
145
  <!-- Freq&#45;&gt;Dec -->
127
146
  <g id="edge8" class="edge">
128
147
  <title>Freq&#45;&gt;Dec</title>
129
- <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M503.29,-110C528.07,-110 555.97,-110 579.6,-110"/>
130
- <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="579.48,-112.8 587.48,-110 579.48,-107.2 579.48,-112.8"/>
148
+ <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M568.68,-316.86C571.37,-315.1 573.91,-313.16 576.25,-311 646.1,-246.61 595.72,-186.82 654.25,-112 656.7,-108.87 659.37,-105.84 662.19,-102.92"/>
149
+ <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="663.82,-105.25 667.64,-97.68 659.93,-101.22 663.82,-105.25"/>
131
150
  </g>
132
151
  <!-- Obs -->
133
152
  <g id="node9" class="node">
134
153
  <title>Obs</title>
135
- <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M669.25,-196C669.25,-196 600.75,-196 600.75,-196 594.75,-196 588.75,-190 588.75,-184 588.75,-184 588.75,-172 588.75,-172 588.75,-166 594.75,-160 600.75,-160 600.75,-160 669.25,-160 669.25,-160 675.25,-160 681.25,-166 681.25,-172 681.25,-172 681.25,-184 681.25,-184 681.25,-190 675.25,-196 669.25,-196"/>
136
- <text xml:space="preserve" text-anchor="middle" x="635" y="-180.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">extro_observe</text>
137
- <text xml:space="preserve" text-anchor="middle" x="635" y="-168.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">record signal intel</text>
154
+ <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M768.5,-172C768.5,-172 700,-172 700,-172 694,-172 688,-166 688,-160 688,-160 688,-140 688,-140 688,-134 694,-128 700,-128 700,-128 768.5,-128 768.5,-128 774.5,-128 780.5,-134 780.5,-140 780.5,-140 780.5,-160 780.5,-160 780.5,-166 774.5,-172 768.5,-172"/>
155
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-158.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">extro_observe</text>
156
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-146.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">category: :rf</text>
157
+ <text xml:space="preserve" text-anchor="middle" x="734.25" y="-134.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">record signal intel</text>
138
158
  </g>
139
159
  <!-- Scan&#45;&gt;Obs -->
140
160
  <g id="edge9" class="edge">
141
161
  <title>Scan&#45;&gt;Obs</title>
142
- <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M493.9,-178C520.43,-178 551.99,-178 578.43,-178"/>
143
- <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="578.32,-180.8 586.32,-178 578.32,-175.2 578.32,-180.8"/>
162
+ <path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M559.35,-389.21C565.35,-386.32 571.12,-382.94 576.25,-379 646.6,-324.88 696.97,-230.14 719.71,-181.21"/>
163
+ <polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="722.17,-182.58 722.94,-174.14 717.07,-180.25 722.17,-182.58"/>
144
164
  </g>
145
165
  </g>
146
166
  </svg>
@@ -9,72 +9,72 @@
9
9
  <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 317.45)">
10
10
  <title>PWN_SessionsCron</title>
11
11
  <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-317.45 832.7,-317.45 832.7,43.2 -43.2,43.2"/>
12
- <text xml:space="preserve" text-anchor="start" x="127.75" y="-252.25" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">Sessions ↔ Cron ↔ Swarm — Cross&#45;Session Continuity</text>
12
+ <text xml:space="preserve" text-anchor="start" x="127.75" y="-252.25" font-family="Helvetica,sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">Sessions ↔ Cron ↔ Swarm — Cross&#45;Session Continuity</text>
13
13
  <g id="clust1" class="cluster">
14
14
  <title>cluster_p</title>
15
15
  <path fill="#422006" stroke="#a16207" d="M233.25,-8C233.25,-8 335,-8 335,-8 341,-8 347,-14 347,-20 347,-20 347,-223 347,-223 347,-229 341,-235 335,-235 335,-235 233.25,-235 233.25,-235 227.25,-235 221.25,-229 221.25,-223 221.25,-223 221.25,-20 221.25,-20 221.25,-14 227.25,-8 233.25,-8"/>
16
- <text xml:space="preserve" text-anchor="middle" x="284.12" y="-212" font-family="sans-Serif" font-size="20.00" fill="#fde68a">~/.pwn/</text>
16
+ <text xml:space="preserve" text-anchor="middle" x="284.12" y="-212" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fde68a">~/.pwn/</text>
17
17
  </g>
18
18
  <g id="clust3" class="cluster">
19
19
  <title>cluster_later</title>
20
20
  <path fill="#2e1065" stroke="#6d28d9" d="M438,-8C438,-8 585.25,-8 585.25,-8 591.25,-8 597.25,-14 597.25,-20 597.25,-20 597.25,-223 597.25,-223 597.25,-229 591.25,-235 585.25,-235 585.25,-235 438,-235 438,-235 432,-235 426,-229 426,-223 426,-223 426,-20 426,-20 426,-14 432,-8 438,-8"/>
21
- <text xml:space="preserve" text-anchor="middle" x="511.62" y="-212" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">Later / Elsewhere</text>
21
+ <text xml:space="preserve" text-anchor="middle" x="511.62" y="-212" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#ddd6fe">Later / Elsewhere</text>
22
22
  </g>
23
23
  <!-- Now -->
24
24
  <g id="node1" class="node">
25
25
  <title>Now</title>
26
26
  <path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M74.5,-124C74.5,-124 12,-124 12,-124 6,-124 0,-118 0,-112 0,-112 0,-100 0,-100 0,-94 6,-88 12,-88 12,-88 74.5,-88 74.5,-88 80.5,-88 86.5,-94 86.5,-100 86.5,-100 86.5,-112 86.5,-112 86.5,-118 80.5,-124 74.5,-124"/>
27
- <text xml:space="preserve" text-anchor="middle" x="43.25" y="-108.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai</text>
28
- <text xml:space="preserve" text-anchor="middle" x="43.25" y="-96.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">(interactive turn)</text>
27
+ <text xml:space="preserve" text-anchor="middle" x="43.25" y="-108.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai</text>
28
+ <text xml:space="preserve" text-anchor="middle" x="43.25" y="-96.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(interactive turn)</text>
29
29
  </g>
30
30
  <!-- Sess -->
31
31
  <g id="node2" class="node">
32
32
  <title>Sess</title>
33
33
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M334.5,-192.73C334.5,-194.53 311.92,-196 284.12,-196 256.33,-196 233.75,-194.53 233.75,-192.73 233.75,-192.73 233.75,-163.27 233.75,-163.27 233.75,-161.47 256.33,-160 284.12,-160 311.92,-160 334.5,-161.47 334.5,-163.27 334.5,-163.27 334.5,-192.73 334.5,-192.73"/>
34
34
  <path fill="none" stroke="#334155" stroke-width="1.3" d="M334.5,-192.73C334.5,-190.92 311.92,-189.45 284.12,-189.45 256.33,-189.45 233.75,-190.92 233.75,-192.73"/>
35
- <text xml:space="preserve" text-anchor="middle" x="284.12" y="-174.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">sessions/&lt;id&gt;.jsonl</text>
35
+ <text xml:space="preserve" text-anchor="middle" x="284.12" y="-174.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">sessions/&lt;id&gt;.jsonl</text>
36
36
  </g>
37
37
  <!-- Now&#45;&gt;Sess -->
38
38
  <g id="edge1" class="edge">
39
39
  <title>Now&#45;&gt;Sess</title>
40
40
  <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M86.96,-118.87C125.13,-130.38 181.45,-147.35 223.96,-160.17"/>
41
41
  <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="223,-162.8 231.47,-162.43 224.62,-157.44 223,-162.8"/>
42
- <text xml:space="preserve" text-anchor="middle" x="157.88" y="-148.26" font-family="sans-Serif" font-size="9.00" fill="#cbd5e1">append</text>
42
+ <text xml:space="preserve" text-anchor="middle" x="157.88" y="-148.26" font-family="Helvetica,sans-Serif" font-size="9.00" fill="#cbd5e1">append</text>
43
43
  </g>
44
44
  <!-- Cron -->
45
45
  <g id="node3" class="node">
46
46
  <title>Cron</title>
47
47
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M321.38,-120.73C321.38,-122.53 304.68,-124 284.12,-124 263.57,-124 246.88,-122.53 246.88,-120.73 246.88,-120.73 246.88,-91.27 246.88,-91.27 246.88,-89.47 263.57,-88 284.12,-88 304.68,-88 321.38,-89.47 321.38,-91.27 321.38,-91.27 321.38,-120.73 321.38,-120.73"/>
48
48
  <path fill="none" stroke="#334155" stroke-width="1.3" d="M321.38,-120.73C321.38,-118.92 304.68,-117.45 284.12,-117.45 263.57,-117.45 246.88,-118.92 246.88,-120.73"/>
49
- <text xml:space="preserve" text-anchor="middle" x="284.12" y="-102.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">cron/jobs.yml</text>
49
+ <text xml:space="preserve" text-anchor="middle" x="284.12" y="-102.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">cron/jobs.yml</text>
50
50
  </g>
51
51
  <!-- Now&#45;&gt;Cron -->
52
52
  <g id="edge2" class="edge">
53
53
  <title>Now&#45;&gt;Cron</title>
54
54
  <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M86.96,-106C129.04,-106 193.15,-106 236.53,-106"/>
55
55
  <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="236.3,-108.8 244.3,-106 236.3,-103.2 236.3,-108.8"/>
56
- <text xml:space="preserve" text-anchor="middle" x="157.88" y="-107.95" font-family="sans-Serif" font-size="9.00" fill="#cbd5e1">cron_create</text>
56
+ <text xml:space="preserve" text-anchor="middle" x="157.88" y="-107.95" font-family="Helvetica,sans-Serif" font-size="9.00" fill="#cbd5e1">cron_create</text>
57
57
  </g>
58
58
  <!-- Swarm -->
59
59
  <g id="node4" class="node">
60
60
  <title>Swarm</title>
61
61
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M339,-48.73C339,-50.53 314.4,-52 284.12,-52 253.85,-52 229.25,-50.53 229.25,-48.73 229.25,-48.73 229.25,-19.27 229.25,-19.27 229.25,-17.47 253.85,-16 284.12,-16 314.4,-16 339,-17.47 339,-19.27 339,-19.27 339,-48.73 339,-48.73"/>
62
62
  <path fill="none" stroke="#334155" stroke-width="1.3" d="M339,-48.73C339,-46.92 314.4,-45.45 284.12,-45.45 253.85,-45.45 229.25,-46.92 229.25,-48.73"/>
63
- <text xml:space="preserve" text-anchor="middle" x="284.12" y="-30.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">swarm/&lt;id&gt;/bus.jsonl</text>
63
+ <text xml:space="preserve" text-anchor="middle" x="284.12" y="-30.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">swarm/&lt;id&gt;/bus.jsonl</text>
64
64
  </g>
65
65
  <!-- Now&#45;&gt;Swarm -->
66
66
  <g id="edge3" class="edge">
67
67
  <title>Now&#45;&gt;Swarm</title>
68
68
  <path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M86.96,-93.13C123.76,-82.03 177.42,-65.86 219.32,-53.23"/>
69
69
  <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="219.88,-55.99 226.73,-51 218.26,-50.63 219.88,-55.99"/>
70
- <text xml:space="preserve" text-anchor="middle" x="157.88" y="-80.52" font-family="sans-Serif" font-size="9.00" fill="#cbd5e1">agent_ask</text>
70
+ <text xml:space="preserve" text-anchor="middle" x="157.88" y="-80.52" font-family="Helvetica,sans-Serif" font-size="9.00" fill="#cbd5e1">agent_ask</text>
71
71
  </g>
72
72
  <!-- Reflect -->
73
73
  <g id="node5" class="node">
74
74
  <title>Reflect</title>
75
75
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M540.12,-196C540.12,-196 482.12,-196 482.12,-196 476.12,-196 470.12,-190 470.12,-184 470.12,-184 470.12,-172 470.12,-172 470.12,-166 476.12,-160 482.12,-160 482.12,-160 540.12,-160 540.12,-160 546.12,-160 552.12,-166 552.12,-172 552.12,-172 552.12,-184 552.12,-184 552.12,-190 546.12,-196 540.12,-196"/>
76
- <text xml:space="preserve" text-anchor="middle" x="511.12" y="-180.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">learning_reflect</text>
77
- <text xml:space="preserve" text-anchor="middle" x="511.12" y="-168.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">(session_id)</text>
76
+ <text xml:space="preserve" text-anchor="middle" x="511.12" y="-180.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">learning_reflect</text>
77
+ <text xml:space="preserve" text-anchor="middle" x="511.12" y="-168.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(session_id)</text>
78
78
  </g>
79
79
  <!-- Sess&#45;&gt;Reflect -->
80
80
  <g id="edge4" class="edge">
@@ -86,7 +86,7 @@
86
86
  <g id="node6" class="node">
87
87
  <title>Fire</title>
88
88
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M564.88,-124C564.88,-124 457.38,-124 457.38,-124 451.38,-124 445.38,-118 445.38,-112 445.38,-112 445.38,-100 445.38,-100 445.38,-94 451.38,-88 457.38,-88 457.38,-88 564.88,-88 564.88,-88 570.88,-88 576.88,-94 576.88,-100 576.88,-100 576.88,-112 576.88,-112 576.88,-118 570.88,-124 564.88,-124"/>
89
- <text xml:space="preserve" text-anchor="middle" x="511.12" y="-102.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">crontab → PWN::Cron.run</text>
89
+ <text xml:space="preserve" text-anchor="middle" x="511.12" y="-102.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">crontab → PWN::Cron.run</text>
90
90
  </g>
91
91
  <!-- Cron&#45;&gt;Fire -->
92
92
  <g id="edge5" class="edge">
@@ -98,8 +98,8 @@
98
98
  <g id="node7" class="node">
99
99
  <title>Resume</title>
100
100
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M538.62,-52C538.62,-52 483.62,-52 483.62,-52 477.62,-52 471.62,-46 471.62,-40 471.62,-40 471.62,-28 471.62,-28 471.62,-22 477.62,-16 483.62,-16 483.62,-16 538.62,-16 538.62,-16 544.62,-16 550.62,-22 550.62,-28 550.62,-28 550.62,-40 550.62,-40 550.62,-46 544.62,-52 538.62,-52"/>
101
- <text xml:space="preserve" text-anchor="middle" x="511.12" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">agent_debate</text>
102
- <text xml:space="preserve" text-anchor="middle" x="511.12" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">(swarm_id: ...)</text>
101
+ <text xml:space="preserve" text-anchor="middle" x="511.12" y="-36.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">agent_debate</text>
102
+ <text xml:space="preserve" text-anchor="middle" x="511.12" y="-24.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(swarm_id: ...)</text>
103
103
  </g>
104
104
  <!-- Swarm&#45;&gt;Resume -->
105
105
  <g id="edge6" class="edge">
@@ -111,8 +111,8 @@
111
111
  <g id="node8" class="node">
112
112
  <title>Next</title>
113
113
  <path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M777.5,-124C777.5,-124 696.25,-124 696.25,-124 690.25,-124 684.25,-118 684.25,-112 684.25,-112 684.25,-100 684.25,-100 684.25,-94 690.25,-88 696.25,-88 696.25,-88 777.5,-88 777.5,-88 783.5,-88 789.5,-94 789.5,-100 789.5,-100 789.5,-112 789.5,-112 789.5,-118 783.5,-124 777.5,-124"/>
114
- <text xml:space="preserve" text-anchor="middle" x="736.88" y="-108.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Next pwn&#45;ai session</text>
115
- <text xml:space="preserve" text-anchor="middle" x="736.88" y="-96.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">context restored</text>
114
+ <text xml:space="preserve" text-anchor="middle" x="736.88" y="-108.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Next pwn&#45;ai session</text>
115
+ <text xml:space="preserve" text-anchor="middle" x="736.88" y="-96.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">context restored</text>
116
116
  </g>
117
117
  <!-- Reflect&#45;&gt;Next -->
118
118
  <g id="edge7" class="edge">