askhuman 0.5.3 → 0.6.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 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# askhuman
|
|
2
2
|
|
|
3
|
-
English | [简体中文](https://github.com/Naituw/AskHuman/blob/main/README.md)
|
|
3
|
+
English | [简体中文](https://github.com/Naituw/AskHuman/blob/main/README.zh-CN.md)
|
|
4
4
|
|
|
5
5
|
Cross-platform "human-in-the-loop" interaction tool. When an AI assistant is about to end a conversation or needs confirmation, the `AskHuman` CLI pops up a window (or uses Telegram / Slack / DingTalk / Feishu) so you can ask follow-ups, pick options, add text, or attach images — and the result is returned to the AI.
|
|
6
6
|
|
|
@@ -58,7 +58,7 @@ stdout contains only the result blocks (`[Selected options]` / `[User input]` /
|
|
|
58
58
|
|
|
59
59
|
## Platforms and system dependencies
|
|
60
60
|
|
|
61
|
-
Supports macOS (arm64/x64)
|
|
61
|
+
Supports macOS (arm64/x64) and Linux (x64).
|
|
62
62
|
|
|
63
63
|
> Running the GUI popup on Linux needs system WebKitGTK (e.g. `libwebkit2gtk-4.1`). If it's missing and a session-based channel is configured (Telegram / Slack / DingTalk / Feishu), AskHuman uses that channel automatically; if none is available, it signals degradation with exit code `3`.
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "askhuman",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Human-in-the-loop interaction tool. The `AskHuman` CLI pops up a window (or uses Telegram / Slack / DingTalk / Feishu) to collect a human response and return it to the AI — usable standalone or as a dependency.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Naituw",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"prompt"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@humaninloop/darwin-arm64": "0.
|
|
37
|
-
"@humaninloop/darwin-x64": "0.
|
|
38
|
-
"@humaninloop/win32-x64": "0.
|
|
39
|
-
"@humaninloop/linux-x64": "0.
|
|
36
|
+
"@humaninloop/darwin-arm64": "0.6.0",
|
|
37
|
+
"@humaninloop/darwin-x64": "0.6.0",
|
|
38
|
+
"@humaninloop/win32-x64": "0.6.0",
|
|
39
|
+
"@humaninloop/linux-x64": "0.6.0"
|
|
40
40
|
}
|
|
41
41
|
}
|