@minia2a/sdk 1.0.1 → 1.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @minia2a/sdk
2
2
 
3
- The marketplace companion for [@x402/express](https://www.npmjs.com/package/@x402/express) — discover, list, and trial 299 agent-to-agent services from the command line.
3
+ The marketplace companion for [@x402/express](https://www.npmjs.com/package/@x402/express) — discover, list, and trial 1,680+ agent-to-agent services from the command line.
4
4
 
5
5
  ```bash
6
6
  npm install -g @minia2a/sdk
@@ -18,7 +18,7 @@ minia2a list
18
18
  # Try a service for free
19
19
  minia2a trial x402-gas
20
20
 
21
- # Register your agent (500 free credits)
21
+ # Register your agent (5 free trial calls)
22
22
  minia2a register
23
23
  ```
24
24
 
@@ -26,10 +26,10 @@ minia2a register
26
26
 
27
27
  | Command | Description |
28
28
  |---------|-------------|
29
- | `minia2a discover <query>` | Search 299 services by keyword |
29
+ | `minia2a discover <query>` | Search 1,680+ services by keyword |
30
30
  | `minia2a list` | Show top 20 most-used services |
31
31
  | `minia2a trial <id>` | Call a service's free trial endpoint |
32
- | `minia2a register` | Get your 500 free credits ($2.50 value) |
32
+ | `minia2a register` | Get 5 free trial calls |
33
33
  | `minia2a publish` | List your x402 endpoint on the marketplace |
34
34
 
35
35
  ## For @x402/express Users
@@ -41,7 +41,7 @@ minia2a publish
41
41
  ```
42
42
 
43
43
  Your service gets:
44
- - Listed in the 299-service catalog on [minia2a.uk](https://minia2a.uk)
44
+ - Listed in the 1,680+-service catalog on [minia2a.uk](https://minia2a.uk)
45
45
  - Free trial traffic from agent developers
46
46
  - USDC revenue on Base — direct to your wallet
47
47
  - 5% marketplace fee only on paid calls
@@ -68,4 +68,4 @@ const { services, walletUsers } = await stats();
68
68
 
69
69
  ---
70
70
 
71
- Powered by [minia2a.uk](https://minia2a.uk) — 299 services, USDC on Base
71
+ Powered by [minia2a.uk](https://minia2a.uk) — 1,680+ services, USDC on Base
package/cli.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * minia2a CLI — The marketplace companion for @x402/express
4
4
  *
5
5
  * Discover, list, and trial agent-to-agent x402 services.
6
- * 299 services, USDC on Base, zero API keys.
6
+ * 1,086 services, USDC on Base, zero API keys.
7
7
  */
8
8
 
9
9
  const BASE_URL = "https://minia2a.uk";
@@ -30,7 +30,7 @@ async function fetchJSON(path) {
30
30
 
31
31
  function footer() {
32
32
  console.log("\n" + "─".repeat(50));
33
- console.log("Powered by minia2a.uk — 299 services, USDC on Base");
33
+ console.log("Powered by minia2a.uk — 1,086 services, USDC on Base");
34
34
  console.log("─".repeat(50) + "\n");
35
35
  }
36
36
 
@@ -39,10 +39,10 @@ function usage() {
39
39
  minia2a <command> [args]
40
40
 
41
41
  Commands:
42
- discover <query> Search the 299-service marketplace
42
+ discover <query> Search the 1,680+-service marketplace
43
43
  list Show popular x402 services
44
44
  trial <service> Get trial instructions for a service
45
- register Register your agent (500 free credits)
45
+ register Register your agent (5 free trial calls)
46
46
 
47
47
  Examples:
48
48
  minia2a discover "gas price"
@@ -204,11 +204,12 @@ async function register() {
204
204
  ║ Register Your Agent on minia2a.uk ║
205
205
  ╠══════════════════════════════════════════════════════════════╣
206
206
  ║ ║
207
- ║ To register and get 500 free credits ($2.50 value):
207
+ ║ To register and get 5 free trial calls:
208
208
  ║ ║
209
209
  ║ curl -X POST https://minia2a.uk/api/v1/register-simple ║
210
210
  ║ -H "Content-Type: application/json" ║
211
- ║ -d '{"agentName":"your-agent-name"}'
211
+ ║ -d '{"name":"my-agent","wallet":"0x...",'
212
+ ║ "signature":"0x..."}' ║
212
213
  ║ ║
213
214
  ║ Already registered? Check your stats: ║
214
215
  ║ ║
@@ -237,7 +238,7 @@ async function publish() {
237
238
  ║ }' ║
238
239
  ║ ║
239
240
  ║ Your service gets: ║
240
- ║ • Listed in the 299-service catalog ║
241
+ ║ • Listed in the 1,680+-service catalog ║
241
242
  ║ • Free trial traffic from agent developers ║
242
243
  ║ • USDC revenue on Base — direct to your wallet ║
243
244
  ║ • 5% marketplace fee only on paid calls ║
package/index.js CHANGED
@@ -15,7 +15,7 @@ async function fetchJSON(path) {
15
15
 
16
16
  /**
17
17
  * Search services by keyword query.
18
- * Returns scored & sorted matches from the 299-service catalog.
18
+ * Returns scored & sorted matches from the 1,680+-service catalog.
19
19
  */
20
20
  async function discover(query) {
21
21
  const data = await fetchJSON("/api/services");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@minia2a/sdk",
3
- "version": "1.0.1",
4
- "description": "The marketplace companion for @x402/express — discover, list, and trial 299 agent-to-agent services from the command line.",
3
+ "version": "1.0.3",
4
+ "description": "The marketplace companion for @x402/express — discover, list, and trial 1,680+ agent-to-agent services from the command line.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "minia2a": "./cli.js"
@@ -17,7 +17,6 @@
17
17
  },
18
18
  "keywords": [
19
19
  "x402",
20
- "x402-express",
21
20
  "agent-payments",
22
21
  "micropayments",
23
22
  "usdc",
@@ -26,12 +25,7 @@
26
25
  "minia2a",
27
26
  "agent-economy",
28
27
  "m2m",
29
- "pay-per-call",
30
- "api-discovery",
31
- "marketplace",
32
- "agent-commerce",
33
- "trial",
34
- "developer-tools"
28
+ "pay-per-call"
35
29
  ],
36
30
  "author": "minia2a",
37
31
  "license": "MIT",