nolo-cli 0.1.58 → 0.3.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.
- package/README.md +2 -0
- package/index.js +93424 -17700
- package/package.json +18 -2
package/README.md
CHANGED
|
@@ -92,6 +92,7 @@ nolo login
|
|
|
92
92
|
nolo auth antigravity # Google Antigravity (Gemini 3, Claude, GPT-OSS)
|
|
93
93
|
nolo auth claude # Claude Pro/Max
|
|
94
94
|
nolo auth chatgpt # ChatGPT Plus / OpenAI Codex
|
|
95
|
+
nolo auth cursor # Cursor Pro (Grok 4.5, Composer 2.5, GPT-5.3 Codex)
|
|
95
96
|
nolo auth xai # xAI Grok (SuperGrok)
|
|
96
97
|
nolo auth cloudflare # Cloudflare OAuth (email routing, etc.)
|
|
97
98
|
```
|
|
@@ -231,6 +232,7 @@ nolo table add-column --table meta-0e95801d90-01KWSK4Q4TESXQ06SW39JN2TTJ --schem
|
|
|
231
232
|
- `nolo agent email create-and-provision <slug> --name <display> [--local-part pay] [--copy-provider-from <agent>]` 一步创建 agent 并开通邮箱。
|
|
232
233
|
- `nolo auth cloudflare [--client-id <id>] [--generate-token] [--zone-name <domain>] [--write-to-env [path]]` 通过 Cloudflare 自托管 OAuth 授权并可选生成 `Zone:Email Routing:Edit` 的 API Token,还可直接写入 `.env`。
|
|
233
234
|
- `nolo auth claude [--no-browser] [--sync-to-server]` 通过 PKCE + `localhost:54545` 回调授权 Claude Pro/Max;`--no-browser` 时可粘贴最终回调 URL/授权码。凭据保存到 `~/.nolo/credentials/claude.json`。Agent 使用 `provider: "anthropic"`、`apiKeyRef: "claude"`。
|
|
235
|
+
- `nolo auth cursor [--no-browser] [--sync-to-server]` 通过 poll-based device flow 授权 Cursor Pro(无需回调端口)。打开 `https://cursor.com/loginDeepControl` 并轮询 `api2.cursor.sh/auth/poll` 获取 token。凭据保存到 `~/.nolo/credentials/cursor.json`。Agent 使用 `provider: "cursor"`、`apiKeyRef: "cursor"`,模型如 `cursor-grok-4.5`。
|
|
234
236
|
|
|
235
237
|
账户所有权对私有 agent 维护很重要。默认的新测试、验证 dialogs、任务板写入、机器绑定的 agent 运行和用户可见的结果应写入当前操作员账户 `0e95801d90`。原有的 `b2e06f801f` / platform-demo 账户已删除,仅在极少数维护旧公开/共享记录场景时保留。使用 `nolo agent read`、`nolo agent update` 和仓库原生助手作为正常入口点;只有明确针对旧记录的所有者专属操作才应使用维护的 platform-demo token(来自 `scripts/testUtils.ts`)或重新生成的 token(来自 `scripts/generateToken.ts`)。不要将 token 字符串复制到文档、日志或提示词中。
|
|
236
238
|
|