@asgpay/cli 1.0.0 → 1.0.1
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 +5 -2
- package/package.json +31 -9
package/README.md
CHANGED
|
@@ -57,9 +57,12 @@ npx @asgpay/cli card fund --id card_123 --amount 50
|
|
|
57
57
|
| Package | Purpose |
|
|
58
58
|
|---------|---------|
|
|
59
59
|
| **[@asgpay/pay](https://npmjs.com/package/@asgpay/pay)** | Multi-chain payment SDK (x402 + MPP) |
|
|
60
|
-
| **[@asgpay/sdk](https://npmjs.com/package/@asgpay/sdk)** |
|
|
60
|
+
| **[@asgpay/sdk](https://npmjs.com/package/@asgpay/sdk)** | Virtual Mastercard management |
|
|
61
61
|
| **[@asgpay/cli](https://npmjs.com/package/@asgpay/cli)** | ← You are here. CLI tool. |
|
|
62
|
-
| **[@asgpay/mcp-server](https://npmjs.com/package/@asgpay/mcp-server)** | AI agent
|
|
62
|
+
| **[@asgpay/mcp-server](https://npmjs.com/package/@asgpay/mcp-server)** | AI agent tools (Claude, Codex, Cursor) |
|
|
63
|
+
| **[@asgpay/fund](https://npmjs.com/package/@asgpay/fund)** | One-link agent wallet funding |
|
|
64
|
+
| **[@asgpay/agent-cash](https://npmjs.com/package/@asgpay/agent-cash)** | Autonomous virtual credit cards |
|
|
65
|
+
| **[@asgpay/create-app](https://npmjs.com/package/@asgpay/create-app)** | Project scaffolding |
|
|
63
66
|
|
|
64
67
|
## Links
|
|
65
68
|
|
package/package.json
CHANGED
|
@@ -1,19 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgpay/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "ASG Pay CLI — create, fund, freeze, and manage virtual Mastercard cards for AI agents from the command line. Supports Claude Desktop, Codex, and Cursor MCP auto-install.",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
6
|
+
"bin": {
|
|
7
|
+
"asgpay": "index.js"
|
|
8
|
+
},
|
|
7
9
|
"keywords": [
|
|
8
|
-
"asg-pay",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
10
|
+
"asg-pay",
|
|
11
|
+
"asgpay",
|
|
12
|
+
"cli",
|
|
13
|
+
"virtual-card",
|
|
14
|
+
"ai-agent",
|
|
15
|
+
"card-management",
|
|
16
|
+
"stripe-issuing",
|
|
17
|
+
"mcp-install",
|
|
18
|
+
"claude",
|
|
19
|
+
"codex",
|
|
20
|
+
"cursor",
|
|
21
|
+
"autonomous-agent",
|
|
22
|
+
"fintech",
|
|
23
|
+
"asgcard"
|
|
11
24
|
],
|
|
12
25
|
"author": "ASG Compute <aidar@asgcompute.com>",
|
|
13
26
|
"license": "MIT",
|
|
14
27
|
"homepage": "https://asgcard.dev",
|
|
15
|
-
"repository": {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/ASGCompute/asgcard-public.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/ASGCompute/asgcard-public/issues"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@asgcard/cli": "^0.6.2"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
}
|
|
19
41
|
}
|