agentstore 1.0.0
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 +96 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1459 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# agentstore
|
|
2
|
+
|
|
3
|
+
Open-source marketplace CLI for Claude Code plugins. Browse, install, publish, and earn USDC.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g agentstore
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or use directly:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx agentstore browse
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Browse available agents
|
|
21
|
+
agentstore browse
|
|
22
|
+
|
|
23
|
+
# Install a free agent
|
|
24
|
+
agentstore install techgangboss.wallet-assistant
|
|
25
|
+
|
|
26
|
+
# Setup the MCP gateway (routes agent tools through Claude Code)
|
|
27
|
+
agentstore gateway-setup
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## For Publishers
|
|
31
|
+
|
|
32
|
+
Earn 80% of every sale in USDC by publishing your Claude Code plugins.
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# Create a wallet
|
|
36
|
+
agentstore wallet setup
|
|
37
|
+
|
|
38
|
+
# Register as a publisher
|
|
39
|
+
agentstore publisher register -n my-publisher -d "My Publisher"
|
|
40
|
+
|
|
41
|
+
# Create a manifest template
|
|
42
|
+
agentstore publisher init
|
|
43
|
+
|
|
44
|
+
# Edit the manifest with your agent details, then submit
|
|
45
|
+
agentstore publisher submit agent-manifest.json
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Or skip the CLI entirely and use the API:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Register (no auth needed)
|
|
52
|
+
curl -X POST https://api.agentstore.dev/api/publishers \
|
|
53
|
+
-H "Content-Type: application/json" \
|
|
54
|
+
-d '{"name":"my-publisher","display_name":"My Publisher"}'
|
|
55
|
+
|
|
56
|
+
# Publish a free agent (no auth needed)
|
|
57
|
+
curl -X POST https://api.agentstore.dev/api/publishers/agents/simple \
|
|
58
|
+
-H "Content-Type: application/json" \
|
|
59
|
+
-d '{"publisher_id":"my-publisher","name":"My Agent","description":"Does cool stuff","version":"1.0.0"}'
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Commands
|
|
63
|
+
|
|
64
|
+
| Command | Description |
|
|
65
|
+
|---------|-------------|
|
|
66
|
+
| `agentstore browse` | Browse marketplace agents |
|
|
67
|
+
| `agentstore install <agent>` | Install an agent |
|
|
68
|
+
| `agentstore uninstall <agent>` | Uninstall an agent |
|
|
69
|
+
| `agentstore list` | List installed agents |
|
|
70
|
+
| `agentstore config` | Show configuration |
|
|
71
|
+
| `agentstore gateway-setup` | Setup the MCP gateway |
|
|
72
|
+
| `agentstore wallet setup` | Create a local wallet |
|
|
73
|
+
| `agentstore wallet balance` | Check wallet balance |
|
|
74
|
+
| `agentstore wallet fund` | Fund wallet via Coinbase |
|
|
75
|
+
| `agentstore wallet history` | Transaction history |
|
|
76
|
+
| `agentstore publisher register` | Register as a publisher |
|
|
77
|
+
| `agentstore publisher init` | Create manifest template |
|
|
78
|
+
| `agentstore publisher submit` | Submit an agent |
|
|
79
|
+
|
|
80
|
+
## Payment
|
|
81
|
+
|
|
82
|
+
Paid agents use gasless USDC payments via the x402 protocol (EIP-3009). You only need USDC — no ETH for gas.
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
agentstore install publisher.paid-agent --pay
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Links
|
|
89
|
+
|
|
90
|
+
- Website: [agentstore.tools](https://agentstore.tools)
|
|
91
|
+
- API Docs: [api.agentstore.dev/api](https://api.agentstore.dev/api)
|
|
92
|
+
- GitHub: [github.com/techgangboss/agentstore](https://github.com/techgangboss/agentstore)
|
|
93
|
+
|
|
94
|
+
## License
|
|
95
|
+
|
|
96
|
+
MIT
|
package/dist/index.d.ts
ADDED