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.
- checksums.yaml +4 -4
- data/README.md +12 -3
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa499352cfb75931341be5441fff894e39fbdff2292872d73a1e47617d89561f
|
|
4
|
+
data.tar.gz: b84bc29d866707b543f3813d60cd3df045b953aca991fd23af637ce126e9e1a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
-
|
|
63
|
+
## Bottom line
|
|
64
64
|
|
|
65
|
-
|
|
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