run402 2.33.0 → 2.33.1
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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -212,6 +212,17 @@ Hold several wallets on one machine and select between them:
|
|
|
212
212
|
|
|
213
213
|
The CLI handles all x402 payment signing automatically — never ask the human for a private key or set up payment libraries by hand.
|
|
214
214
|
|
|
215
|
+
### Operator (human / email session)
|
|
216
|
+
|
|
217
|
+
The **operator** is YOU, the human, identified by email — distinct from the agent (your wallet). One browser login spans every wallet that verified your email, so the overview is a cross-wallet union. For a single wallet's account state, use `run402 status`.
|
|
218
|
+
|
|
219
|
+
- `run402 operator login` — browser-delegated sign-in (device-authorization, RFC 8628, like `aws sso login`): magic-link or passkey in the browser, no WebAuthn in the CLI. Caches an email-scoped session at the base config dir (shared across named wallets).
|
|
220
|
+
- `run402 operator overview` — account view across ALL wallets controlling your email (requires login; never falls back to a single wallet).
|
|
221
|
+
- `run402 operator whoami` — show the cached session (email, wallets, expiry); local, no network.
|
|
222
|
+
- `run402 operator logout` — revoke the session server-side and clear the local cache.
|
|
223
|
+
|
|
224
|
+
Not exposed as MCP tools by design — MCP authenticates as the agent (wallet), and the human session must not be handed to it.
|
|
225
|
+
|
|
215
226
|
## Active project (sticky default)
|
|
216
227
|
|
|
217
228
|
After `provision`, the new project becomes the active one. `run402 projects use <id>` switches it. Most commands that take `<id>` default to the active project when omitted.
|
package/package.json
CHANGED