You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+56Lines changed: 56 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Changelog
2
2
3
+
## 2.5.0 — 2026-07-03
4
+
5
+
### Changed
6
+
- x402 v2 payment requirements are read correctly: amount from the v2 `amount` field and resource from the top-level `resource` object, in addition to the v1 fields. The version is taken from `x402Version`, or inferred when absent; payloads whose version conflicts with their fields are rejected.
7
+
- The signed payment returned for a v2 request now uses the v2 `PAYMENT-SIGNATURE` shape — an `accepted` block (including `extra`) and a top-level `resource` — so resource servers can verify it. v1 requests keep the flat v1 shape.
8
+
- Payment skill examples updated to x402 v2 (v1 still supported).
9
+
3
10
## 2.4.1 — 2026-06-29
4
11
5
12
### Fixed
@@ -21,3 +28,52 @@
21
28
22
29
### Added
23
30
-`platformdirs` dependency for cross-platform data directory resolution.
31
+
32
+
## 2.3.0 — 2026-05-20
33
+
34
+
### Fixed
35
+
- Amount display now uses 6 decimals consistently (sub-cent payments no longer show as 0.00).
36
+
- Removed the redundant "$" prefix from amount displays.
37
+
38
+
## 2.2.2 — 2026-05-20
39
+
40
+
### Fixed
41
+
- Windows taskbar now shows the MultiClaw icon instead of the Python icon (pip install).
42
+
43
+
### Docs
44
+
- SKILL.md updated to v2-first format (CAIP-2 networks, `PAYMENT-SIGNATURE` header).
45
+
46
+
## 2.2.1 — 2026-05-19
47
+
48
+
### Fixed
49
+
- SKILL.md is now bundled in the pip package, so the `/agent` endpoint works for pip installs.
50
+
51
+
## 2.2.0 — 2026-04-21
52
+
53
+
### Added
54
+
- Market tab — browse and search x402 services from agentic.market in the GUI, with category filtering and copy-to-clipboard agent snippets.
55
+
- Service discovery in SKILL.md — agents can discover x402 services via the Agentic.Market API, with budget-aware filtering against their spend policy.
Copy file name to clipboardExpand all lines: README.md
+1-30Lines changed: 1 addition & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -251,34 +251,5 @@ pip install multiclaw # CLI only
251
251
252
252
## Changelog
253
253
254
-
### v2.3.0
255
-
-**Fix:** Amount display now uses 6 decimals consistently (sub-cent payments no longer show as 0.00)
256
-
-**Fix:** Removed redundant "$" prefix from amount displays (shows "0.002000 USDC" instead of "$0.00 USDC")
257
-
258
-
### v2.2.2
259
-
-**Fix:** Windows taskbar now shows MultiClaw icon instead of Python icon (pip install)
260
-
-**Docs:** SKILL.md updated to v2-first format (CAIP-2 networks, `PAYMENT-SIGNATURE` header)
261
-
262
-
### v2.2.1
263
-
-**Fix:** SKILL.md now correctly bundled in pip package — `/agent` endpoint works for pip installs (was only working for PyInstaller builds)
264
-
265
-
### v2.2.0
266
-
-**Market tab** — browse and search x402 services from [agentic.market](https://agentic.market) directly in the GUI, with category filtering and copy-to-clipboard agent snippets
267
-
-**Service discovery in SKILL.md** — agents can now discover x402 services via the Agentic.Market API, with budget-aware filtering against their MultiClaw spend policy
268
-
-**MultiClaw Skills package** — `npx skills add primer-systems/multiclaw-skills` installs setup, payment, and discovery skills for any AI coding agent
269
-
- Updated system interactions diagram in documentation
270
-
271
-
### v2.1.0
272
-
- Published to PyPI — install with `pip install multiclaw` or `pip install multiclaw[gui]`
273
-
- Restructured as a proper Python package (`src/multiclaw/`)
274
-
- Assets bundled with pip install (logo, icons)
275
-
276
-
### v2.0.0
277
-
- Added CLI mode with interactive REPL and scriptable single commands
278
-
- Added headless daemon mode for server deployments
279
-
- Added in-GUI console window (File → Console)
280
-
- Single-instance architecture: CLI connects to running GUI via HTTP
281
-
282
-
### v1.0.0
283
-
- Initial release
254
+
See [CHANGELOG.md](CHANGELOG.md) for the full release history.
0 commit comments