ralph-flow-pi 0.2.0 → 0.2.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 -0
- package/dist/cli.js +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
- [Node.js](https://nodejs.org/) 20+
|
|
31
31
|
- 一个 Pi SDK 支持的模型账号或 API key(Anthropic / OpenAI / Gemini 等都行,见下面「配置模型凭据」)
|
|
32
|
+
- **macOS 或 Linux**。本工具基于 [Pi SDK](https://github.com/earendil-works/pi),Pi 在 Windows 上支持较差(WSL 下可以正常运行)
|
|
32
33
|
|
|
33
34
|
### 安装
|
|
34
35
|
|
|
@@ -384,6 +385,10 @@ npm ls -g --depth=0 | grep ralph-flow-pi
|
|
|
384
385
|
|
|
385
386
|
确认 `/login` 走完了流程,或者对应 provider 的环境变量(如 `ANTHROPIC_API_KEY`)已经设置。
|
|
386
387
|
|
|
388
|
+
**Windows 上运行报错**
|
|
389
|
+
|
|
390
|
+
Pi SDK 对 Windows 原生支持有限,推荐在 WSL2 中安装使用。在 WSL 终端里执行 `npm install -g ralph-flow-pi` 即可。
|
|
391
|
+
|
|
387
392
|
**Esc 退出后忘了怎么回去看进度**
|
|
388
393
|
|
|
389
394
|
直接说"帮我看看工作流跑得怎么样了",或者打 `/ralphflow-watch`;忘了实例名先 `/ralphflow-list` 或 `ralphflow list`。
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ralph-flow-pi",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "DO → CHECK workflow engine on the Pi SDK — every step runs in a fresh, isolated AI session",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"author": "534529531",
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "tsc -p tsconfig.json",
|
|
34
|
+
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js",
|
|
35
35
|
"dev": "tsc -p tsconfig.json --watch",
|
|
36
36
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
37
37
|
"test": "vitest run",
|