zk-agent-cli 0.1.0-rc.4 → 0.1.0-rc.5
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.
- package/README.md +17 -2
- package/dist/index.js +2270 -147
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,10 +39,24 @@ the approval-based pay path when fee-token/default state matters, and recover
|
|
|
39
39
|
funding only when the workflow says the write path is blocked.
|
|
40
40
|
|
|
41
41
|
The first Agent Pay platform primitive now exists as a local-first payment
|
|
42
|
-
request surface:
|
|
42
|
+
ingress, request, routing, and approval-orchestration surface:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
+
zk-agent payment submit --wallet main --to <address> --amount <amount>
|
|
46
|
+
zk-agent payment queue
|
|
47
|
+
zk-agent payment report
|
|
48
|
+
zk-agent payment approval --request-id <id>
|
|
49
|
+
zk-agent payment sync-approval --request-id <id>
|
|
45
50
|
zk-agent payment create --wallet main --to <address> --amount <amount>
|
|
51
|
+
zk-agent payment next --request-id <id>
|
|
52
|
+
zk-agent payment inspect --request-id <id>
|
|
53
|
+
zk-agent payment intent --request-id <id>
|
|
54
|
+
zk-agent payment describe --request-id <id>
|
|
55
|
+
zk-agent payment execution --request-id <id>
|
|
56
|
+
zk-agent payment quote --request-id <id>
|
|
57
|
+
zk-agent payment refresh-quote --request-id <id>
|
|
58
|
+
zk-agent payment settlement --request-id <id>
|
|
59
|
+
zk-agent payment reconcile --request-id <id> --status <status>
|
|
46
60
|
zk-agent payment list
|
|
47
61
|
```
|
|
48
62
|
|
|
@@ -128,7 +142,8 @@ ZK_AGENT_STORAGE_DIR=
|
|
|
128
142
|
`zk-agent wallet next --name <wallet>`: wallet-scoped repair and readiness
|
|
129
143
|
- `zk-agent workflow ...`: explicit workflow planning, persistence, status, and
|
|
130
144
|
resume questions
|
|
131
|
-
- `zk-agent payment ...`: local-first payment request capture
|
|
145
|
+
- `zk-agent payment ...`: local-first payment ingress, request capture, routing,
|
|
146
|
+
and settlement-state tracking for the Agent Pay platform layer
|
|
132
147
|
- `zk-agent suite`: the packaged post-flagship catalog once wallet readiness is
|
|
133
148
|
no longer the blocker
|
|
134
149
|
|