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
docs: list the 6 actual zerion-agent skills + reclassify signing as agent-side
- Replace placeholder "Wallet analysis / Trading / Authentication" bullets in the Agent Skills section with one-line intros for each of the 6 skills shipped in zeriontech/zerion-agent (zerion, zerion-wallet, zerion-agent-management, zerion-analyze, zerion-sign, zerion-trading); descriptions sourced from each skill's frontmatter.
- Move `sign-message` and `sign-typed-data` from the manual side to the agent side. An agent token authorizes signing on behalf of the wallet without a passphrase prompt — the manual passphrase path only kicks in when no agent token is configured. Adjusted the closing sentence to make the token-as-signer mechanic explicit.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The `init` command installs the Zerion agent skill bundle into AI coding agents (Cursor, Claude Code, Windsurf, etc.). The bundle teaches them how to drive the CLI:
44
+
The `init` command installs the Zerion agent skill bundle into AI coding agents (Cursor, Claude Code, Windsurf, etc.). Six skills ship in the bundle:
45
45
46
-
-**Wallet analysis** — when to call `analyze` vs `portfolio` vs `pnl`, and how to read the JSON
-**Authentication** — picking between API key, x402, and MPP based on the task
46
+
-**`zerion`** — entry point with install, authentication, and routing to the right capability skill
47
+
-**`zerion-wallet`** — local encrypted wallets: create, import (key or mnemonic), list, fund, backup, delete, sync to the Zerion app
48
+
-**`zerion-agent-management`** — mint and scope agent tokens + policies (chain locks, allowlists, transfer/approval gates, expiry) for autonomous trading and signing
-**`zerion-sign`** — off-chain signatures (EIP-191, EIP-712, Solana raw) without broadcasting a transaction; requires an agent token
51
+
-**`zerion-trading`** — swap, bridge, and send across 14 EVM chains and Solana; uses an API key + agent token
49
52
50
53
To reinstall skills manually:
51
54
@@ -59,8 +62,8 @@ Skills live in [`zeriontech/zerion-agent`](https://github.com/zeriontech/zerion-
59
62
60
63
Zerion CLI splits into two surfaces, by design.
61
64
62
-
-**Wallet, signing, and agent token setup are manual.**`wallet create`, `import`, `backup`, and `delete` all prompt for a passphrase, as do `sign-message` and `sign-typed-data`. `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.
63
-
-**Analysis, trading, and discovery are for agents.**`analyze`, `portfolio`, `positions`, `history`, `pnl`, `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, trades fire immediately.
65
+
-**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.
66
+
-**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.
64
67
65
68
Setup gestures (`init`, `setup skills`, `setup mcp`, `config set/unset/list`, `watch` add/remove) are one-time configuration steps you run yourself before automation takes over.
0 commit comments