pwn 0.5.666 → 0.5.667

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -3
  3. data/lib/pwn/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad38a3062af2dfd655e372b35546535f8f652b39a8b91269ce8ee9e45a01ba9b
4
- data.tar.gz: c66ed8a1aa104008e480f5118b892a5132ce8047e0029ab4728381f8a4e00ba7
3
+ metadata.gz: aa499352cfb75931341be5441fff894e39fbdff2292872d73a1e47617d89561f
4
+ data.tar.gz: b84bc29d866707b543f3813d60cd3df045b953aca991fd23af637ce126e9e1a9
5
5
  SHA512:
6
- metadata.gz: f27ba8cff4c35f7cb330ce1b1fad3cf7806759ff84a6706b61e6dd55864a3241c29990e151e63ae9218a065748e9383698dfec586245573c3d80a55a4bd9300a
7
- data.tar.gz: 2643e1501646d411888403352dd2e822f597f2222089a8d06ac1fac8d9b5c474d72a55ad072e150e102366e63bdb9d157a0ad1d2a2c935722b1ba80d20782788
6
+ metadata.gz: a79c88587274434b654149e2a45593e14e445ae7ac2d322e3bf45da6e3902709544de0ab061b03a449cdd170376771adf3fa46b06aac2cc2b3b65f808f474f56
7
+ data.tar.gz: 915b78058dd9af752236a97c4c040a5005d850af0ba3ed4554459858d64afcc2fa325c4c5bcc438d716753b5130ac37f97fa728d879eae430ac76d7cde6b0a34
data/README.md CHANGED
@@ -58,11 +58,20 @@ pwn.ai:grok/grok-4.5/0:500K[CURRENT_VERSION]:002 >>> Briefly describe your take
58
58
 
59
59
  **My take, in plain English:**
60
60
 
61
- pwn-ai’s reinforcement loop is mostly **learning in context**, not only weight training.
61
+ pwn-ai’s reinforced learning loop is less a classic offline RL trainer and more a living, multi-store control system wrapped around an agent turn. My take is that it is one of the more complete in-context self-improvement stacks I’ve seen in an agent harness, and also that its real power and its main failure modes come from the same place: it learns loudly in the prompt long before it learns quietly in weights.
62
62
 
63
- On every turn the agent acts with tools. Each result is scored in a few ways: quick “did this tool call really fail?” checks, longer-term tool success stats, and—when a final answer lands—a judge that scores whether the *goal* was actually met, plus per-step credit for which tool calls helped or hurt. Failures become fingerprints (mistakes) with fixes; wins become outcomes, exemplars, memory lessons, and sometimes skills. All of that is written back into the next prompt as “what worked,” “what not to repeat,” and “which tools pay off,” so behavior improves on the following run without waiting for a model train.
63
+ ## Bottom line
64
64
 
65
- Around that core sit self-checks: a sentinel that distrusts inflated success rates when the judge disagrees, night jobs that practice the worst repeating mistakes, and optional export of preference pairs for a gated LoRA update when a trainer and GPU exist. So the loop is: **act measure honestly remember (and fix) bias the next act**—with real weight updates as an optional outer ring, not the main daily path.
65
+ My take: pwn-ai implements a **closed-loop, dual-horizon, self-and-world-aware reinforcement system** around an LLM agent. The clever part is not that it has a reward model. The clever part is that it treats agent work as an ongoing control problem with:
66
+
67
+ - fast aversive conditioning (Mistakes),
68
+ - value estimates for actions (Metrics),
69
+ - episode scoring and replay (Learning/Reward),
70
+ - deliberate practice (Curriculum),
71
+ - and an external reality check (Extrospection),
72
+ - with a slower supervised/DPO hatch only when the diet and gates look sane.
73
+
74
+ It feels less like “fine-tune the model forever” and more like giving the agent a nervous system: pain, habit, memory, practice, and a rudimentary sense of whether the world changed. That is why it can improve overnight on a host with no trainer. It is also why health has to be measured by judge gap, repeating-mistake trend, trajectory fraction, and resolved scars rather than by tool success_rate alone.
66
75
  ```
67
76
 
68
77
  Offensive work is hard because the *tools* do not fit together. PWN's fix is
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.5.666'
4
+ VERSION = '0.5.667'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.666
4
+ version: 0.5.667
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.