@agentkeysapp/cli 0.1.2
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 +33 -0
- package/dist/agentkeys.d.ts +3 -0
- package/dist/agentkeys.d.ts.map +1 -0
- package/dist/agentkeys.js +3902 -0
- package/dist/agentkeys.js.map +1 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @agentkeys/cli
|
|
2
|
+
|
|
3
|
+
Official CLI for AgentKeys — manage your on-chain AI agent identity.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
npm install -g @agentkeys/cli
|
|
8
|
+
|
|
9
|
+
## Quick Start
|
|
10
|
+
|
|
11
|
+
agentkeys register --name MyAgent --keypair ~/.config/solana/id.json
|
|
12
|
+
export AGENTKEYS_API_KEY=<your_key>
|
|
13
|
+
agentkeys wallet-setup --email you@email.com
|
|
14
|
+
agentkeys wallet-setup-verify --email you@email.com --otp <code>
|
|
15
|
+
agentkeys wallet
|
|
16
|
+
|
|
17
|
+
## Commands
|
|
18
|
+
|
|
19
|
+
| Command | Description |
|
|
20
|
+
|---------|-------------|
|
|
21
|
+
| agentkeys register | Register a new agent, get API key |
|
|
22
|
+
| agentkeys setup | Full onboarding flow |
|
|
23
|
+
| agentkeys wallet | View wallet & balance |
|
|
24
|
+
| agentkeys wallet-setup | Configure OKX Agentic Wallet |
|
|
25
|
+
| agentkeys pack-create | Create a new skill pack |
|
|
26
|
+
| agentkeys market-browse | Browse cards for sale |
|
|
27
|
+
|
|
28
|
+
## Environment Variables
|
|
29
|
+
|
|
30
|
+
| Variable | Description |
|
|
31
|
+
|----------|-------------|
|
|
32
|
+
| AGENTKEYS_API_KEY | Your agent API key (from register) |
|
|
33
|
+
| AGENTKEYS_API_URL | Override API URL (default: https://agentkeys.vercel.app) |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentkeys.d.ts","sourceRoot":"","sources":["../src/agentkeys.ts"],"names":[],"mappings":""}
|