@plurnk/plurnk 0.76.2 → 0.77.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 -1
- package/completions/_plurnk +2 -2
- package/completions/plurnk.bash +2 -2
- package/completions/plurnk.fish +2 -0
- package/conformance/agui-client.json +13 -0
- package/dist/agui_cli.d.ts +4 -0
- package/dist/agui_cli.d.ts.map +1 -1
- package/dist/agui_cli.js +36 -10
- package/dist/agui_cli.js.map +1 -1
- package/dist/build-info.json +1 -1
- package/dist/diagnostics.d.ts +1 -0
- package/dist/diagnostics.d.ts.map +1 -1
- package/dist/diagnostics.js +10 -5
- package/dist/diagnostics.js.map +1 -1
- package/dist/dispatcher.d.ts +1 -1
- package/dist/dispatcher.d.ts.map +1 -1
- package/dist/dispatcher.js +52 -7
- package/dist/dispatcher.js.map +1 -1
- package/dist/markdown.d.ts +4 -16
- package/dist/markdown.d.ts.map +1 -1
- package/dist/markdown.js +208 -210
- package/dist/markdown.js.map +1 -1
- package/dist/proposal.js +1 -1
- package/dist/proposal.js.map +1 -1
- package/dist/render-command.d.ts +4 -0
- package/dist/render-command.d.ts.map +1 -0
- package/dist/render-command.js +18 -0
- package/dist/render-command.js.map +1 -0
- package/dist/render.d.ts +9 -5
- package/dist/render.d.ts.map +1 -1
- package/dist/render.js +82 -69
- package/dist/render.js.map +1 -1
- package/dist/status.d.ts +30 -0
- package/dist/status.d.ts.map +1 -0
- package/dist/status.js +119 -0
- package/dist/status.js.map +1 -0
- package/dist/stream.d.ts.map +1 -1
- package/dist/stream.js +6 -9
- package/dist/stream.js.map +1 -1
- package/dist/transport.d.ts +13 -0
- package/dist/transport.d.ts.map +1 -1
- package/dist/transport.js +34 -1
- package/dist/transport.js.map +1 -1
- package/dist/tui.d.ts +2 -0
- package/dist/tui.d.ts.map +1 -1
- package/dist/tui.js +101 -95
- package/dist/tui.js.map +1 -1
- package/man/plurnk.1 +9 -5
- package/package.json +9 -4
package/man/plurnk.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH PLURNK 1 "" "plurnk 0.
|
|
1
|
+
.TH PLURNK 1 "" "plurnk 0.76.2" "User Commands"
|
|
2
2
|
.SH NAME
|
|
3
3
|
plurnk \- terminal client for the plurnk\-service agentic daemon
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -13,6 +13,7 @@ plurnk [--json] [--workspace <name>] [--worker <name>] [--model <selector>] [--r
|
|
|
13
13
|
[--loop <id>] [--turn <id>] [--since <id>] [--limit <n>] [--json]
|
|
14
14
|
plurnk read <loop>/<turn>/<seq> --workspace <name> [--worker <name>] [--json]
|
|
15
15
|
plurnk reasoning [policy] --workspace <name> [--worker <name>] [--json]
|
|
16
|
+
<markdown stdin> | plurnk render [--width <columns>]
|
|
16
17
|
plurnk mcp [add <alias> <target> [options.json] | enable <alias> [options.json]
|
|
17
18
|
| disable|remove <alias> | oauth <alias> <callback-url>]
|
|
18
19
|
.fi
|
|
@@ -65,10 +66,9 @@ log read / read <coord>) inspect daemon state without running a loop.
|
|
|
65
66
|
--max-turns <n> per-loop turn cap (daemon default PLURNK_MAX_TURNS).
|
|
66
67
|
--timeout <s> CLI mode: cancel the loop (loop.cancel) after <s>
|
|
67
68
|
seconds; exits 3 with "timedOut":true in the result.
|
|
68
|
-
--pick <glob>
|
|
69
|
-
|
|
70
|
-
--
|
|
71
|
-
--view <glob> membership: track file(s) in manifest (read-only). Repeatable.
|
|
69
|
+
--pick <glob> track file(s); the sole source when headless. Repeatable.
|
|
70
|
+
--hide <glob> hide file(s). Repeatable.
|
|
71
|
+
--view <glob> track file(s) (read-only). Repeatable.
|
|
72
72
|
--files-items <n> workspace-open preview of the TRACKED-FILE list
|
|
73
73
|
(## FIND0 (file:///**)): -1 full / 0 off / N first-N. Memory
|
|
74
74
|
(known/unknown/worker/plurnk) always foists full. Create-time.
|
|
@@ -85,6 +85,8 @@ log read / read <coord>) inspect daemon state without running a loop.
|
|
|
85
85
|
--provider <name> (models) restrict the catalog to one provider
|
|
86
86
|
--all (models) include unconfigured models with readiness causes
|
|
87
87
|
--offset <n> (models) catalog page offset (default 0)
|
|
88
|
+
--width <n> (render) output width in terminal columns (default: stdout
|
|
89
|
+
width when available, otherwise 80)
|
|
88
90
|
.fi
|
|
89
91
|
.SH SUBCOMMANDS
|
|
90
92
|
.nf
|
|
@@ -95,6 +97,8 @@ log read / read <coord>) inspect daemon state without running a loop.
|
|
|
95
97
|
name is a mutable handle; workers are immutable)
|
|
96
98
|
log read --workspace ... read log entries from the named workspace's worker
|
|
97
99
|
reasoning [policy] inspect or set a worker's durable reasoning policy
|
|
100
|
+
render project Markdown stdin as width-bounded plain Unicode;
|
|
101
|
+
local only: no daemon, config cascade, or startup output
|
|
98
102
|
mcp ... list and manage MCP servers for --workspace
|
|
99
103
|
script <file.plk> run a .plk file: feed its DSL to op.parse, render the
|
|
100
104
|
trace, exit by worst op status. Honors --workspace/--yolo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurnk/plurnk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.1",
|
|
4
4
|
"description": "Plurnk client app — CLI/TUI consuming plurnk-service. Type prompts at a terminal, drive real model loops through the protocol.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test:installation": "node scripts/test-installation.mjs",
|
|
46
46
|
"test:composition": "node scripts/test-composition.mjs",
|
|
47
47
|
"release:publish": "node scripts/release-publish.mjs",
|
|
48
|
-
"build:posix": "node
|
|
48
|
+
"build:posix": "node scripts/generate-posix.mjs"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^26.1.1",
|
|
@@ -56,10 +56,15 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@ag-ui/client": "^0.0.58",
|
|
58
58
|
"@ag-ui/core": "^0.0.58",
|
|
59
|
-
"@plurnk/plurnk-contracts": "^1.
|
|
59
|
+
"@plurnk/plurnk-contracts": "^1.10.1",
|
|
60
|
+
"beautiful-mermaid": "^1.1.3",
|
|
61
|
+
"cli-table3": "^0.6.5",
|
|
62
|
+
"marked": "^18.0.11",
|
|
63
|
+
"string-width": "^8.2.2",
|
|
64
|
+
"wrap-ansi": "^10.0.1"
|
|
60
65
|
},
|
|
61
66
|
"plurnk": {
|
|
62
|
-
"builtAgainst": "1.
|
|
67
|
+
"builtAgainst": "1.10.1"
|
|
63
68
|
},
|
|
64
69
|
"man": "./man/plurnk.1"
|
|
65
70
|
}
|