@aionis/create 0.1.1 → 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.
Files changed (2) hide show
  1. package/README.md +10 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,18 +2,25 @@
2
2
 
3
3
  One-command installer for Aionis Runtime and SDK.
4
4
 
5
- After this package is published, users can run:
5
+ Run:
6
6
 
7
7
  ```bash
8
- npx @aionis/create --provider minimax --quickstart sdk
8
+ npx @aionis/create@latest --provider minimax --quickstart sdk
9
9
  ```
10
10
 
11
11
  With a key:
12
12
 
13
13
  ```bash
14
- MINIMAX_API_KEY="your-key" npx @aionis/create --provider minimax --quickstart sdk
14
+ MINIMAX_API_KEY="your-key" npx @aionis/create@latest --provider minimax --quickstart sdk
15
15
  ```
16
16
 
17
17
  The installer clones the Runtime repo, installs dependencies and workspace SDK
18
18
  packages, writes `.env`, builds the publishable packages, then optionally runs a
19
19
  quickstart.
20
+
21
+ Common first runs:
22
+
23
+ ```bash
24
+ npx @aionis/create@latest my-aionis --provider minimax --skip-quickstart
25
+ MINIMAX_API_KEY="your-key" npx @aionis/create@latest --provider minimax --quickstart multi-agent
26
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aionis/create",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "One-command installer for Aionis Runtime and SDK.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",