@aswless_854771076/ai_short_studio_cli 0.1.15 → 0.1.16
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,16 +1,18 @@
|
|
|
1
1
|
# AI Short Studio CLI
|
|
2
2
|
|
|
3
|
-
VVICAT 新链路无限画布的官方命令行客户端。要求 Node.js 22
|
|
3
|
+
VVICAT 新链路无限画布的官方命令行客户端。要求 Node.js 22 或更高版本。截至 2026 年 7 月 28 日,个人包的 npm `latest` 为 `0.1.15`;后续以 npm dist-tag 为准。
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
npm view @aswless_854771076/ai_short_studio_cli dist-tags.latest
|
|
7
|
+
npm install --global @aswless_854771076/ai_short_studio_cli@latest
|
|
8
|
+
ai-short-studio --version
|
|
9
|
+
ai-short-studio auth login --google
|
|
10
10
|
ai-short-studio project list --json
|
|
11
11
|
ai-short-studio canvas node types --json
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
npm 包内置 `using-vvicat-ai-short-studio-cli` Agent Skill。安装或升级 CLI 时,`postinstall` 会自动把该 Skill 安装或更新到 Codex;用户修改过或不由 CLI 管理的副本不会被覆盖。设置 `VVICAT_SKIP_SKILL_INSTALL=1` 可关闭自动安装。
|
|
15
|
+
|
|
14
16
|
邮箱注册和登录从 stdin 读取密码:
|
|
15
17
|
|
|
16
18
|
```bash
|
package/package.json
CHANGED
|
@@ -26,9 +26,9 @@ ai-short-studio skill update --target codex --json
|
|
|
26
26
|
## 认证
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
ai-short-studio auth signup --email user@example.com --password-stdin
|
|
30
|
-
ai-short-studio auth login --google
|
|
31
|
-
ai-short-studio auth login --email user@example.com --password-stdin
|
|
29
|
+
ai-short-studio auth signup --email user@example.com --password-stdin
|
|
30
|
+
ai-short-studio auth login --google
|
|
31
|
+
ai-short-studio auth login --email user@example.com --password-stdin
|
|
32
32
|
ai-short-studio auth status --json
|
|
33
33
|
ai-short-studio auth logout
|
|
34
34
|
```
|