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
Drift fix — the `wallet export-key` command shipped in 5bb9951 but README,
SKILL.md, and capabilities/wallet.md weren't updated. Adds the command row to
the README wallet-management table, lists it under the manual/passphrase ops
in the capability doc with usage examples for each --chain option, and
updates the capability index entries that enumerate wallet verbs.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|[`agent-management.md`](./skills/zerion/capabilities/agent-management.md)| Agent tokens + policies (the autonomous-trading primitives) |
41
41
|[`swap-0x.md`](./skills/zerion/capabilities/swap-0x.md)| Token swaps via 0x API v2 — AllowanceHolder, Permit2, and Gasless flows across 20+ EVM chains |
42
42
@@ -138,7 +138,7 @@ The agent reaches for the `zerion` skill, which routes by task to the right nest
138
138
139
139
Zerion CLI splits into two surfaces, by design.
140
140
141
-
-**Wallet management and agent token setup are manual.**`wallet create`, `import`, `backup`, and `delete` all prompt for a passphrase. `wallet sync` emits a QR code you scan with the Zerion app. `agent create-token` mints a scoped trading credential bound to a specific wallet, and `agent create-policy` attaches the rules it has to obey — allowed chains, expiry, transfer/approval gates, contract allowlists. The sibling admin commands (`agent list-tokens`, `use-token`, `revoke-token`, `list-policies`, `show-policy`, `delete-policy`) are also gestures you make yourself. No key material moves and no spending credential widens without you in the loop. For CI and headless servers, `agent create-token` accepts `--passphrase-file <path>` (file must be mode `0600`) so token issuance can be scripted without an interactive TTY — see [`capabilities/agent-management.md`](./skills/zerion/capabilities/agent-management.md).
141
+
-**Wallet management and agent token setup are manual.**`wallet create`, `import`, `backup`, `export-key`, and `delete` all prompt for a passphrase. `wallet sync` emits a QR code you scan with the Zerion app. `agent create-token` mints a scoped trading credential bound to a specific wallet, and `agent create-policy` attaches the rules it has to obey — allowed chains, expiry, transfer/approval gates, contract allowlists. The sibling admin commands (`agent list-tokens`, `use-token`, `revoke-token`, `list-policies`, `show-policy`, `delete-policy`) are also gestures you make yourself. No key material moves and no spending credential widens without you in the loop. For CI and headless servers, `agent create-token` accepts `--passphrase-file <path>` (file must be mode `0600`) so token issuance can be scripted without an interactive TTY — see [`capabilities/agent-management.md`](./skills/zerion/capabilities/agent-management.md).
142
142
-**Analysis, signing, trading, and discovery are for agents.**`analyze`, `portfolio`, `positions`, `history`, `pnl`, `sign-message`, `sign-typed-data`, `swap`, `bridge`, `send`, `swap tokens`, `search`, `chains`, `wallet list`, `wallet fund`, and `watch list` emit JSON to stdout, structured errors to stderr, and skip confirmation dialogs. Once an agent token is configured, signing and trading fire immediately — the token authorizes operations on behalf of the wallet without a passphrase prompt.
143
143
144
144
Setup gestures (`init`, `setup skills`, `config set/unset/list`, `watch` add/remove) are one-time configuration steps you run yourself before automation takes over.
@@ -251,6 +251,7 @@ Encrypted local wallets. EVM + Solana supported. Passphrase required for all des
251
251
|`zerion wallet list`| List all wallets |`zerion wallet list`|
252
252
|`zerion wallet fund`| Show deposit addresses for funding |`zerion wallet fund --wallet trading-bot`|
Copy file name to clipboardExpand all lines: skills/zerion/capabilities/wallet.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Requires Node.js ≥ 20. For auth see the parent `SKILL.md` (Setup + Authenticat
19
19
- "Import my wallet from a private key / mnemonic"
20
20
- "Show my wallets" / "list deposit addresses"
21
21
- "Back up my recovery phrase"
22
+
- "Export the raw private key" / "give me the 0x hex key" / "give me the Phantom-format secret"
22
23
- "Delete this wallet"
23
24
- "Sync my wallet to the Zerion mobile app"
24
25
@@ -43,7 +44,7 @@ A wallet imported from a single private key holds only one chain's account:
43
44
| Operation | Type | Notes |
44
45
|-----------|------|-------|
45
46
|`wallet list`, `wallet fund`|**Agent**| Read-only. Safe to invoke autonomously. |
46
-
|`wallet create`, `wallet import`, `wallet backup`, `wallet delete`, `wallet sync`|**Manual**| Require passphrase or interactive input. Humans must run these directly — agents must not call them. |
47
+
|`wallet create`, `wallet import`, `wallet backup`, `wallet export-key`, `wallet delete`, `wallet sync`|**Manual**| Require passphrase or interactive input. Humans must run these directly — agents must not call them. |
0 commit comments