@uqpay/cli 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,7 +33,11 @@ The official [UQPAY](https://www.uqpay.com/) CLI tool — built for humans and A
33
33
  ### From npm (recommended)
34
34
 
35
35
  ```bash
36
+ # Install CLI
36
37
  npm install -g @uqpay/cli
38
+
39
+ # Install AI Agent Skills (required for AI Agent usage)
40
+ npx skills add uqpay/uqpay-cli -y -g
37
41
  ```
38
42
 
39
43
  ### From source
@@ -44,6 +48,9 @@ Requires Go 1.21+.
44
48
  git clone https://github.com/uqpay/uqpay-cli.git
45
49
  cd uqpay-cli
46
50
  make install
51
+
52
+ # Install AI Agent Skills (required for AI Agent usage)
53
+ npx skills add uqpay/uqpay-cli -y -g
47
54
  ```
48
55
 
49
56
  ### Enable tab completion (optional)
@@ -78,6 +85,7 @@ uqpay --env sandbox --client-id ID --api-key KEY banking balance list
78
85
  ```bash
79
86
  # Step 1 — Install
80
87
  npm install -g @uqpay/cli
88
+ npx skills add uqpay/uqpay-cli -y -g
81
89
 
82
90
  # Step 2 — Configure (provide credentials from UQPAY dashboard)
83
91
  uqpay config set client-id <CLIENT_ID>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uqpay/cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "UQPAY command-line tool for banking, issuing, and payment APIs",
5
5
  "bin": {
6
6
  "uqpay": "scripts/run.js"