runpane 2.4.81 → 2.4.83
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/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +10 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands.d.ts +9 -0
- package/dist/commands.d.ts.map +1 -1
- package/dist/commands.js +61 -0
- package/dist/commands.js.map +1 -1
- package/dist/doctor.d.ts +93 -0
- package/dist/doctor.d.ts.map +1 -1
- package/dist/doctor.js +180 -0
- package/dist/doctor.js.map +1 -1
- package/dist/generated/contract.d.ts +434 -21
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +646 -14
- package/dist/generated/contract.js.map +1 -1
- package/dist/localControl.d.ts +1 -0
- package/dist/localControl.d.ts.map +1 -1
- package/dist/localControl.js +186 -28
- package/dist/localControl.js.map +1 -1
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +5 -1
- package/dist/telemetry.js.map +1 -1
- package/dist/watchLines.d.ts +30 -0
- package/dist/watchLines.d.ts.map +1 -0
- package/dist/watchLines.js +79 -0
- package/dist/watchLines.js.map +1 -0
- package/package.json +1 -1
|
@@ -28,7 +28,14 @@ exports.RUNPANE_CONTRACT = {
|
|
|
28
28
|
"format": "auto",
|
|
29
29
|
"dryRun": false,
|
|
30
30
|
"yes": false,
|
|
31
|
-
"verbose": false
|
|
31
|
+
"verbose": false,
|
|
32
|
+
"watch": {
|
|
33
|
+
"format": "lines",
|
|
34
|
+
"heartbeatSeconds": 60,
|
|
35
|
+
"idleAfterMs": 600000,
|
|
36
|
+
"agentsOnly": true,
|
|
37
|
+
"includeHeldInputPresence": true
|
|
38
|
+
}
|
|
32
39
|
},
|
|
33
40
|
"enums": {
|
|
34
41
|
"installTargets": [
|
|
@@ -119,7 +126,8 @@ exports.RUNPANE_CONTRACT = {
|
|
|
119
126
|
"name": "doctor",
|
|
120
127
|
"summary": "Run platform, release, installed Pane, daemon reachability, and remote setup diagnostics.",
|
|
121
128
|
"usage": [
|
|
122
|
-
"runpane doctor [--json] [--pane-dir <path>] [--pane-path <path>] [--format <format>] [--verbose]"
|
|
129
|
+
"runpane doctor [--json] [--pane-dir <path>] [--pane-path <path>] [--format <format>] [--verbose]",
|
|
130
|
+
"runpane doctor --report [--title <text>] --body-file <path|-> [--yes] [--json]"
|
|
123
131
|
],
|
|
124
132
|
"jsonSchemas": [
|
|
125
133
|
"doctorResult"
|
|
@@ -190,6 +198,17 @@ exports.RUNPANE_CONTRACT = {
|
|
|
190
198
|
"paneListResult"
|
|
191
199
|
]
|
|
192
200
|
},
|
|
201
|
+
{
|
|
202
|
+
"name": "panes cost",
|
|
203
|
+
"summary": "Report estimated token cost per Pane, with per-model breakdown and cache efficiency.",
|
|
204
|
+
"usage": [
|
|
205
|
+
"runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]"
|
|
206
|
+
],
|
|
207
|
+
"jsonSchemas": [
|
|
208
|
+
"paneCostRequest",
|
|
209
|
+
"paneCostResult"
|
|
210
|
+
]
|
|
211
|
+
},
|
|
193
212
|
{
|
|
194
213
|
"name": "workspace state",
|
|
195
214
|
"summary": "Read one workspace snapshot of every Pane and CLI panel.",
|
|
@@ -204,7 +223,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
204
223
|
"name": "watch",
|
|
205
224
|
"summary": "Wait for workspace agent and Pane transitions using a daemon-held cursor.",
|
|
206
225
|
"usage": [
|
|
207
|
-
"runpane watch [--as <name>|--since <generation>] [--follow] [--
|
|
226
|
+
"runpane watch [--as <name>|--since <generation>] [--follow] [--format <lines|json>] [--heartbeat <seconds>] [--idle-after <ms>] [--all-managed|--pane <id>] [--include-shells] [--self-test] [--kinds <kind,...>] [--repo <selector>] [--name-contains <text>] [--timeout-ms <ms>] [--from <now|earliest>] [--json]"
|
|
208
227
|
],
|
|
209
228
|
"jsonSchemas": [
|
|
210
229
|
"workspaceWaitRequest",
|
|
@@ -604,6 +623,31 @@ exports.RUNPANE_CONTRACT = {
|
|
|
604
623
|
"name": "--name-contains",
|
|
605
624
|
"value": "<text>",
|
|
606
625
|
"description": "Limit workspace events to Pane names containing text."
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"name": "--exclude-pane",
|
|
629
|
+
"value": "<pane-id>",
|
|
630
|
+
"description": "Exclude a Pane from workspace watch results; repeatable."
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "--format",
|
|
634
|
+
"value": "<lines|json>",
|
|
635
|
+
"description": "Watch output format; scoped to the watch command."
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"name": "--heartbeat",
|
|
639
|
+
"value": "<seconds>",
|
|
640
|
+
"description": "Maximum healthy silence in follow mode; 0 disables heartbeats."
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"name": "--idle-after",
|
|
644
|
+
"value": "<milliseconds>",
|
|
645
|
+
"description": "Emit agent.idle after this READY duration; 0 disables idle events."
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"name": "--body-file",
|
|
649
|
+
"value": "<path|->",
|
|
650
|
+
"description": "Read diagnostic report evidence from a file or stdin."
|
|
607
651
|
}
|
|
608
652
|
],
|
|
609
653
|
"localBoolean": [
|
|
@@ -646,6 +690,30 @@ exports.RUNPANE_CONTRACT = {
|
|
|
646
690
|
{
|
|
647
691
|
"name": "--include-held-input",
|
|
648
692
|
"description": "Include up to 120 characters of unsubmitted composer text in ready events."
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"name": "--agents-only",
|
|
696
|
+
"description": "Limit workspace events to CLI agent panels."
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"name": "--all-managed",
|
|
700
|
+
"description": "Watch all non-archived, non-hidden managed panes."
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "--include-shells",
|
|
704
|
+
"description": "Include ordinary shell panels in follow mode."
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "--no-held-input",
|
|
708
|
+
"description": "Disable redacted STUCK detection in lines follow mode."
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "--self-test",
|
|
712
|
+
"description": "Probe the current daemon watch path without advancing a named cursor."
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "--report",
|
|
716
|
+
"description": "Prepare a redacted doctor report; external filing still requires --yes."
|
|
649
717
|
}
|
|
650
718
|
]
|
|
651
719
|
},
|
|
@@ -659,14 +727,16 @@ exports.RUNPANE_CONTRACT = {
|
|
|
659
727
|
" runpane update [options]",
|
|
660
728
|
" runpane version",
|
|
661
729
|
" runpane doctor",
|
|
730
|
+
" runpane doctor --report --body-file <path|->",
|
|
662
731
|
" runpane daemon repair [--pane-dir <path>] [--yes] [--json]",
|
|
663
732
|
" runpane agent-context [--json]",
|
|
664
733
|
" runpane agents doctor --agent <codex|claude|cursor> [--repo <selector>] [--json]",
|
|
665
734
|
" runpane repos list [--json]",
|
|
666
735
|
" runpane repos add --path <path> [--name <name>]",
|
|
667
736
|
" runpane panes list [--repo <selector>] [--json]",
|
|
737
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
668
738
|
" runpane workspace state [--repo <selector>] [--json]",
|
|
669
|
-
" runpane watch
|
|
739
|
+
" runpane watch --follow",
|
|
670
740
|
" runpane panes create --repo <selector> --name <name> --agent <codex|claude|cursor> [--source user|agent] [--focus|--no-focus] [--wait-ready]",
|
|
671
741
|
" runpane panes archive --pane <pane-id> [--source user|agent] [--force] [--dry-run] --yes",
|
|
672
742
|
" runpane panels create --pane <pane-id> --agent <codex|claude|cursor> [--source user|agent] [--focus|--no-focus] --yes",
|
|
@@ -766,6 +836,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
766
836
|
"doctor": [
|
|
767
837
|
"Usage:",
|
|
768
838
|
" runpane doctor [--json] [--pane-dir <path>] [--pane-path <path>] [--format <format>] [--verbose]",
|
|
839
|
+
" runpane doctor --report [--title <text>] --body-file <path|-> [--yes] [--json]",
|
|
769
840
|
"",
|
|
770
841
|
"Checks wrapper/runtime details, release metadata, installed Pane detection, and Pane daemon reachability.",
|
|
771
842
|
"",
|
|
@@ -775,6 +846,10 @@ exports.RUNPANE_CONTRACT = {
|
|
|
775
846
|
" --pane-path <path> Inspect a specific Pane executable",
|
|
776
847
|
" --format <format> Release artifact format to inspect",
|
|
777
848
|
" --verbose Print extra diagnostics",
|
|
849
|
+
" --report Prepare a redacted, inspectable report",
|
|
850
|
+
" --body-file <path|-> Read report evidence from a file or stdin",
|
|
851
|
+
" --title <text> Report title",
|
|
852
|
+
" --yes Confirm creating one dcouple/Pane issue",
|
|
778
853
|
"",
|
|
779
854
|
"Agent discovery:",
|
|
780
855
|
" runpane doctor --json",
|
|
@@ -824,6 +899,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
824
899
|
"",
|
|
825
900
|
"Commands:",
|
|
826
901
|
" runpane panes list [--repo <selector>] [--json]",
|
|
902
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
827
903
|
" runpane panes create --repo <selector> --name <name> --agent <codex|claude|cursor> [options]",
|
|
828
904
|
" runpane panes archive --pane <pane-id> [--force] [--source user|agent] [--dry-run] --yes [--json]",
|
|
829
905
|
" runpane panes pin --pane <pane-id> --yes [--dry-run] [--json]",
|
|
@@ -843,12 +919,24 @@ exports.RUNPANE_CONTRACT = {
|
|
|
843
919
|
" --pane-dir <path> Connect to a specific Pane data directory",
|
|
844
920
|
" --json Print machine-readable output"
|
|
845
921
|
],
|
|
922
|
+
"panes cost": [
|
|
923
|
+
"Usage:",
|
|
924
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
925
|
+
"",
|
|
926
|
+
"Reports estimated token costs per Pane for the last 30 days, including per-model and cache-efficiency details.",
|
|
927
|
+
"",
|
|
928
|
+
"Options:",
|
|
929
|
+
" --repo <selector> Limit results to one saved repository",
|
|
930
|
+
" --pane <pane-id> Return one Pane, including an idle Pane with zero usage",
|
|
931
|
+
" --pane-dir <path> Connect to a specific Pane data directory",
|
|
932
|
+
" --json Print machine-readable output"
|
|
933
|
+
],
|
|
846
934
|
"workspace": [
|
|
847
935
|
"Workspace observation commands.",
|
|
848
936
|
"",
|
|
849
937
|
"Usage:",
|
|
850
938
|
" runpane workspace state [--repo <selector>] [--json]",
|
|
851
|
-
" runpane watch
|
|
939
|
+
" runpane watch --follow"
|
|
852
940
|
],
|
|
853
941
|
"workspace state": [
|
|
854
942
|
"Usage:",
|
|
@@ -867,6 +955,14 @@ exports.RUNPANE_CONTRACT = {
|
|
|
867
955
|
" --since <generation> Use an explicit cursor instead",
|
|
868
956
|
" --from <now|earliest> Starting point for a new named cursor",
|
|
869
957
|
" --follow Continue waiting until interrupted",
|
|
958
|
+
" --format <lines|json> Output format; lines is the follow default",
|
|
959
|
+
" --heartbeat <seconds> Healthy-silence bound; defaults to 60 under --follow",
|
|
960
|
+
" --idle-after <ms> Re-firing READY idle interval; defaults to 600000 under --follow",
|
|
961
|
+
" --all-managed Explicitly watch all managed panes",
|
|
962
|
+
" --include-shells Include ordinary shell panels",
|
|
963
|
+
" --agents-only Limit to CLI agent panels",
|
|
964
|
+
" --exclude-pane <id> Exclude a Pane; repeatable",
|
|
965
|
+
" --self-test Anonymous, read-only daemon path probe",
|
|
870
966
|
" --kinds <kind,...> Limit event kinds",
|
|
871
967
|
" --pane <id> Limit to a Pane; repeatable",
|
|
872
968
|
" --repo <selector> Limit to a saved repository",
|
|
@@ -874,8 +970,9 @@ exports.RUNPANE_CONTRACT = {
|
|
|
874
970
|
" --timeout-ms <ms> Wait timeout; 0 polls once",
|
|
875
971
|
" --limit <count> Maximum entries per response",
|
|
876
972
|
" --ack-now Use at-most-once named-cursor delivery",
|
|
877
|
-
" --include-held-input Include unsubmitted composer text",
|
|
878
|
-
" --
|
|
973
|
+
" --include-held-input Include unsubmitted composer text in JSON",
|
|
974
|
+
" --no-held-input Disable redacted STUCK detection",
|
|
975
|
+
" --json Alias for --format json"
|
|
879
976
|
],
|
|
880
977
|
"panes create": [
|
|
881
978
|
"Usage:",
|
|
@@ -1134,14 +1231,16 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1134
1231
|
" runpane update [options]",
|
|
1135
1232
|
" runpane version",
|
|
1136
1233
|
" runpane doctor",
|
|
1234
|
+
" runpane doctor --report --body-file <path|->",
|
|
1137
1235
|
" runpane daemon repair [--pane-dir <path>] [--yes] [--json]",
|
|
1138
1236
|
" runpane agent-context [--json]",
|
|
1139
1237
|
" runpane agents doctor --agent <codex|claude|cursor> [--repo <selector>] [--json]",
|
|
1140
1238
|
" runpane repos list [--json]",
|
|
1141
1239
|
" runpane repos add --path <path> [--name <name>]",
|
|
1142
1240
|
" runpane panes list [--repo <selector>] [--json]",
|
|
1241
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
1143
1242
|
" runpane workspace state [--repo <selector>] [--json]",
|
|
1144
|
-
" runpane watch
|
|
1243
|
+
" runpane watch --follow",
|
|
1145
1244
|
" runpane panes create --repo <selector> --name <name> --agent <codex|claude|cursor> [--source user|agent] [--focus|--no-focus] [--wait-ready]",
|
|
1146
1245
|
" runpane panes archive --pane <pane-id> [--source user|agent] [--force] [--dry-run] --yes",
|
|
1147
1246
|
" python -m runpane panels create --pane <pane-id> --agent <codex|claude|cursor> [--source user|agent] [--focus|--no-focus] --yes",
|
|
@@ -1230,6 +1329,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1230
1329
|
"doctor": [
|
|
1231
1330
|
"Usage:",
|
|
1232
1331
|
" runpane doctor [--json] [--pane-dir <path>] [--pane-path <path>] [--format <format>] [--verbose]",
|
|
1332
|
+
" runpane doctor --report [--title <text>] --body-file <path|-> [--yes] [--json]",
|
|
1233
1333
|
"",
|
|
1234
1334
|
"Checks wrapper/runtime details, release metadata, installed Pane detection, and Pane daemon reachability.",
|
|
1235
1335
|
"",
|
|
@@ -1239,6 +1339,10 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1239
1339
|
" --pane-path <path>",
|
|
1240
1340
|
" --format <format>",
|
|
1241
1341
|
" --verbose",
|
|
1342
|
+
" --report",
|
|
1343
|
+
" --body-file <path|->",
|
|
1344
|
+
" --title <text>",
|
|
1345
|
+
" --yes",
|
|
1242
1346
|
"",
|
|
1243
1347
|
"Agent discovery:",
|
|
1244
1348
|
" runpane doctor --json",
|
|
@@ -1288,6 +1392,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1288
1392
|
"",
|
|
1289
1393
|
"Commands:",
|
|
1290
1394
|
" runpane panes list [--repo <selector>] [--json]",
|
|
1395
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
1291
1396
|
" runpane panes create --repo <selector> --name <name> --agent <codex|claude|cursor> [options]",
|
|
1292
1397
|
" runpane panes archive --pane <pane-id> [--force] [--source user|agent] [--dry-run] --yes [--json]",
|
|
1293
1398
|
" runpane panes pin --pane <pane-id> --yes [--dry-run] [--json]",
|
|
@@ -1307,12 +1412,24 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1307
1412
|
" --pane-dir <path>",
|
|
1308
1413
|
" --json"
|
|
1309
1414
|
],
|
|
1415
|
+
"panes cost": [
|
|
1416
|
+
"Usage:",
|
|
1417
|
+
" runpane panes cost [--repo <selector>] [--pane <pane-id>] [--json]",
|
|
1418
|
+
"",
|
|
1419
|
+
"Reports estimated token costs per Pane for the last 30 days, including per-model and cache-efficiency details.",
|
|
1420
|
+
"",
|
|
1421
|
+
"Options:",
|
|
1422
|
+
" --repo <selector>",
|
|
1423
|
+
" --pane <pane-id>",
|
|
1424
|
+
" --pane-dir <path>",
|
|
1425
|
+
" --json"
|
|
1426
|
+
],
|
|
1310
1427
|
"workspace": [
|
|
1311
1428
|
"Workspace observation commands.",
|
|
1312
1429
|
"",
|
|
1313
1430
|
"Usage:",
|
|
1314
1431
|
" runpane workspace state [--repo <selector>] [--json]",
|
|
1315
|
-
" runpane watch
|
|
1432
|
+
" runpane watch --follow"
|
|
1316
1433
|
],
|
|
1317
1434
|
"workspace state": [
|
|
1318
1435
|
"Usage:",
|
|
@@ -1331,6 +1448,14 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1331
1448
|
" --since <generation>",
|
|
1332
1449
|
" --from <now|earliest>",
|
|
1333
1450
|
" --follow",
|
|
1451
|
+
" --format <lines|json>",
|
|
1452
|
+
" --heartbeat <seconds>",
|
|
1453
|
+
" --idle-after <ms>",
|
|
1454
|
+
" --all-managed",
|
|
1455
|
+
" --include-shells",
|
|
1456
|
+
" --agents-only",
|
|
1457
|
+
" --exclude-pane <id> Repeatable",
|
|
1458
|
+
" --self-test",
|
|
1334
1459
|
" --kinds <kind,...>",
|
|
1335
1460
|
" --pane <id> Repeatable",
|
|
1336
1461
|
" --repo <selector>",
|
|
@@ -1339,7 +1464,8 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1339
1464
|
" --limit <count>",
|
|
1340
1465
|
" --ack-now",
|
|
1341
1466
|
" --include-held-input",
|
|
1342
|
-
" --
|
|
1467
|
+
" --no-held-input",
|
|
1468
|
+
" --json Alias for --format json"
|
|
1343
1469
|
],
|
|
1344
1470
|
"panes create": [
|
|
1345
1471
|
"Usage:",
|
|
@@ -1659,6 +1785,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1659
1785
|
"runpane repos list --json",
|
|
1660
1786
|
"runpane repos add --path /path/to/repo --name Pane --yes --json",
|
|
1661
1787
|
"runpane panes list --repo active --json",
|
|
1788
|
+
"runpane panes cost --pane <pane-id> --json",
|
|
1662
1789
|
"runpane panes create --repo active --name issue-252 --agent <agent> --prompt \"Kick off the discussion skill for issue 252\" --source agent --no-focus --wait-ready --yes --json",
|
|
1663
1790
|
"runpane panes create --from-json panes.json --yes --json",
|
|
1664
1791
|
"runpane panes archive --pane <pane-id> --source agent --yes --json",
|
|
@@ -1684,6 +1811,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1684
1811
|
"`runpane repos list` connects to the running local Pane daemon and prints saved repository records.",
|
|
1685
1812
|
"`runpane repos add` registers an existing git repository with the running local Pane daemon. It does not create directories or initialize git repositories by default.",
|
|
1686
1813
|
"`runpane panes list` lists Pane sessions, optionally scoped to one saved repository.",
|
|
1814
|
+
"`runpane panes cost` reports estimated token costs per Pane for the last 30 days, including per-model breakdowns and cache efficiency; unscoped output includes an Unattributed bucket that reconciles against workspace totals.",
|
|
1687
1815
|
"`runpane panes create` connects to the running local Pane daemon, resolves the requested saved base repository, creates user-visible Pane sessions backed by Pane-managed worktrees/branches, opens terminal-backed tool tabs, and optionally sends initial input to the started tool. Built-in agent panes and `--source agent` default to background/no-focus unless `--focus` is passed. New Panes are pinned into the UI's favorite/pin set by default; pass `--no-pinned` to opt out. Panes created interactively in the Pane UI are unaffected.",
|
|
1688
1816
|
"For `panes create --wait-ready`, `initialInput.verifiedSubmitted: true` is reported only after argument attachment or composer-clear plus activity evidence. Routing input does not by itself verify submission.",
|
|
1689
1817
|
"`runpane panes archive` refreshes the configured upstream, reports exact unpushed commit evidence, and refuses unsafe archive operations unless `--force` is used. Add `--dry-run` to inspect the same evidence without archiving. Successful archives wait for worktree removal and report `worktreeCleanup`.",
|
|
@@ -1781,6 +1909,37 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1781
1909
|
"--pane-dir",
|
|
1782
1910
|
"/tmp/pane"
|
|
1783
1911
|
],
|
|
1912
|
+
[
|
|
1913
|
+
"doctor",
|
|
1914
|
+
"--report",
|
|
1915
|
+
"--title",
|
|
1916
|
+
"watch failed",
|
|
1917
|
+
"--body-file",
|
|
1918
|
+
"/tmp/watch-evidence.txt",
|
|
1919
|
+
"--json"
|
|
1920
|
+
],
|
|
1921
|
+
[
|
|
1922
|
+
"watch",
|
|
1923
|
+
"--as",
|
|
1924
|
+
"monitor",
|
|
1925
|
+
"--from",
|
|
1926
|
+
"earliest",
|
|
1927
|
+
"--follow",
|
|
1928
|
+
"--format",
|
|
1929
|
+
"lines",
|
|
1930
|
+
"--heartbeat",
|
|
1931
|
+
"60",
|
|
1932
|
+
"--idle-after",
|
|
1933
|
+
"600000",
|
|
1934
|
+
"--all-managed",
|
|
1935
|
+
"--agents-only",
|
|
1936
|
+
"--exclude-pane",
|
|
1937
|
+
"pane-old",
|
|
1938
|
+
"--kinds",
|
|
1939
|
+
"agent.ready,agent.idle",
|
|
1940
|
+
"--include-held-input",
|
|
1941
|
+
"--self-test"
|
|
1942
|
+
],
|
|
1784
1943
|
[
|
|
1785
1944
|
"daemon",
|
|
1786
1945
|
"repair",
|
|
@@ -1825,6 +1984,13 @@ exports.RUNPANE_CONTRACT = {
|
|
|
1825
1984
|
"active",
|
|
1826
1985
|
"--json"
|
|
1827
1986
|
],
|
|
1987
|
+
[
|
|
1988
|
+
"panes",
|
|
1989
|
+
"cost",
|
|
1990
|
+
"--pane",
|
|
1991
|
+
"session-1",
|
|
1992
|
+
"--json"
|
|
1993
|
+
],
|
|
1828
1994
|
[
|
|
1829
1995
|
"panes",
|
|
1830
1996
|
"create",
|
|
@@ -3155,6 +3321,332 @@ exports.RUNPANE_CONTRACT = {
|
|
|
3155
3321
|
},
|
|
3156
3322
|
"additionalProperties": false
|
|
3157
3323
|
},
|
|
3324
|
+
"paneCostRequest": {
|
|
3325
|
+
"type": "object",
|
|
3326
|
+
"properties": {
|
|
3327
|
+
"repo": {
|
|
3328
|
+
"oneOf": [
|
|
3329
|
+
{
|
|
3330
|
+
"type": "string"
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"type": "object",
|
|
3334
|
+
"properties": {
|
|
3335
|
+
"id": {
|
|
3336
|
+
"type": "number"
|
|
3337
|
+
},
|
|
3338
|
+
"path": {
|
|
3339
|
+
"type": "string"
|
|
3340
|
+
},
|
|
3341
|
+
"name": {
|
|
3342
|
+
"type": "string"
|
|
3343
|
+
},
|
|
3344
|
+
"active": {
|
|
3345
|
+
"const": true
|
|
3346
|
+
}
|
|
3347
|
+
},
|
|
3348
|
+
"additionalProperties": false
|
|
3349
|
+
}
|
|
3350
|
+
]
|
|
3351
|
+
},
|
|
3352
|
+
"paneId": {
|
|
3353
|
+
"type": "string",
|
|
3354
|
+
"minLength": 1
|
|
3355
|
+
}
|
|
3356
|
+
},
|
|
3357
|
+
"additionalProperties": false
|
|
3358
|
+
},
|
|
3359
|
+
"paneCostResult": {
|
|
3360
|
+
"$defs": {
|
|
3361
|
+
"usageTotals": {
|
|
3362
|
+
"type": "object",
|
|
3363
|
+
"required": [
|
|
3364
|
+
"inputTokens",
|
|
3365
|
+
"outputTokens",
|
|
3366
|
+
"cacheReadTokens",
|
|
3367
|
+
"cacheCreationTokens",
|
|
3368
|
+
"totalTokens",
|
|
3369
|
+
"messageCount",
|
|
3370
|
+
"estimatedCostUsd",
|
|
3371
|
+
"costIncomplete",
|
|
3372
|
+
"cacheSavingsUsd"
|
|
3373
|
+
],
|
|
3374
|
+
"properties": {
|
|
3375
|
+
"inputTokens": {
|
|
3376
|
+
"type": "number"
|
|
3377
|
+
},
|
|
3378
|
+
"outputTokens": {
|
|
3379
|
+
"type": "number"
|
|
3380
|
+
},
|
|
3381
|
+
"cacheReadTokens": {
|
|
3382
|
+
"type": "number"
|
|
3383
|
+
},
|
|
3384
|
+
"cacheCreationTokens": {
|
|
3385
|
+
"type": "number"
|
|
3386
|
+
},
|
|
3387
|
+
"totalTokens": {
|
|
3388
|
+
"type": "number"
|
|
3389
|
+
},
|
|
3390
|
+
"messageCount": {
|
|
3391
|
+
"type": "number"
|
|
3392
|
+
},
|
|
3393
|
+
"estimatedCostUsd": {
|
|
3394
|
+
"type": "number"
|
|
3395
|
+
},
|
|
3396
|
+
"costIncomplete": {
|
|
3397
|
+
"type": "boolean"
|
|
3398
|
+
},
|
|
3399
|
+
"cacheSavingsUsd": {
|
|
3400
|
+
"type": "number"
|
|
3401
|
+
}
|
|
3402
|
+
},
|
|
3403
|
+
"additionalProperties": false
|
|
3404
|
+
},
|
|
3405
|
+
"usageByModel": {
|
|
3406
|
+
"type": "object",
|
|
3407
|
+
"required": [
|
|
3408
|
+
"model",
|
|
3409
|
+
"provider",
|
|
3410
|
+
"inputTokens",
|
|
3411
|
+
"outputTokens",
|
|
3412
|
+
"cacheReadTokens",
|
|
3413
|
+
"cacheCreationTokens",
|
|
3414
|
+
"totalTokens",
|
|
3415
|
+
"messageCount",
|
|
3416
|
+
"estimatedCostUsd",
|
|
3417
|
+
"costIncomplete",
|
|
3418
|
+
"cacheSavingsUsd"
|
|
3419
|
+
],
|
|
3420
|
+
"properties": {
|
|
3421
|
+
"model": {
|
|
3422
|
+
"type": "string"
|
|
3423
|
+
},
|
|
3424
|
+
"provider": {
|
|
3425
|
+
"enum": [
|
|
3426
|
+
"claude",
|
|
3427
|
+
"codex"
|
|
3428
|
+
]
|
|
3429
|
+
},
|
|
3430
|
+
"inputTokens": {
|
|
3431
|
+
"type": "number"
|
|
3432
|
+
},
|
|
3433
|
+
"outputTokens": {
|
|
3434
|
+
"type": "number"
|
|
3435
|
+
},
|
|
3436
|
+
"cacheReadTokens": {
|
|
3437
|
+
"type": "number"
|
|
3438
|
+
},
|
|
3439
|
+
"cacheCreationTokens": {
|
|
3440
|
+
"type": "number"
|
|
3441
|
+
},
|
|
3442
|
+
"totalTokens": {
|
|
3443
|
+
"type": "number"
|
|
3444
|
+
},
|
|
3445
|
+
"messageCount": {
|
|
3446
|
+
"type": "number"
|
|
3447
|
+
},
|
|
3448
|
+
"estimatedCostUsd": {
|
|
3449
|
+
"type": "number"
|
|
3450
|
+
},
|
|
3451
|
+
"costIncomplete": {
|
|
3452
|
+
"type": "boolean"
|
|
3453
|
+
},
|
|
3454
|
+
"cacheSavingsUsd": {
|
|
3455
|
+
"type": "number"
|
|
3456
|
+
}
|
|
3457
|
+
},
|
|
3458
|
+
"additionalProperties": false
|
|
3459
|
+
},
|
|
3460
|
+
"paneCostSlice": {
|
|
3461
|
+
"type": "object",
|
|
3462
|
+
"required": [
|
|
3463
|
+
"inputTokens",
|
|
3464
|
+
"outputTokens",
|
|
3465
|
+
"cacheReadTokens",
|
|
3466
|
+
"cacheCreationTokens",
|
|
3467
|
+
"totalTokens",
|
|
3468
|
+
"messageCount",
|
|
3469
|
+
"estimatedCostUsd",
|
|
3470
|
+
"costIncomplete",
|
|
3471
|
+
"cacheSavingsUsd",
|
|
3472
|
+
"uncachedCostUsd",
|
|
3473
|
+
"uncachedInputTokens",
|
|
3474
|
+
"cacheHitRate",
|
|
3475
|
+
"byModel"
|
|
3476
|
+
],
|
|
3477
|
+
"properties": {
|
|
3478
|
+
"inputTokens": {
|
|
3479
|
+
"type": "number"
|
|
3480
|
+
},
|
|
3481
|
+
"outputTokens": {
|
|
3482
|
+
"type": "number"
|
|
3483
|
+
},
|
|
3484
|
+
"cacheReadTokens": {
|
|
3485
|
+
"type": "number"
|
|
3486
|
+
},
|
|
3487
|
+
"cacheCreationTokens": {
|
|
3488
|
+
"type": "number"
|
|
3489
|
+
},
|
|
3490
|
+
"totalTokens": {
|
|
3491
|
+
"type": "number"
|
|
3492
|
+
},
|
|
3493
|
+
"messageCount": {
|
|
3494
|
+
"type": "number"
|
|
3495
|
+
},
|
|
3496
|
+
"estimatedCostUsd": {
|
|
3497
|
+
"type": "number"
|
|
3498
|
+
},
|
|
3499
|
+
"costIncomplete": {
|
|
3500
|
+
"type": "boolean"
|
|
3501
|
+
},
|
|
3502
|
+
"cacheSavingsUsd": {
|
|
3503
|
+
"type": "number"
|
|
3504
|
+
},
|
|
3505
|
+
"uncachedCostUsd": {
|
|
3506
|
+
"type": "number"
|
|
3507
|
+
},
|
|
3508
|
+
"uncachedInputTokens": {
|
|
3509
|
+
"type": "number"
|
|
3510
|
+
},
|
|
3511
|
+
"cacheHitRate": {
|
|
3512
|
+
"type": "number"
|
|
3513
|
+
},
|
|
3514
|
+
"byModel": {
|
|
3515
|
+
"type": "array",
|
|
3516
|
+
"items": {
|
|
3517
|
+
"$ref": "#/$defs/usageByModel"
|
|
3518
|
+
}
|
|
3519
|
+
}
|
|
3520
|
+
},
|
|
3521
|
+
"additionalProperties": false
|
|
3522
|
+
},
|
|
3523
|
+
"pane": {
|
|
3524
|
+
"type": "object",
|
|
3525
|
+
"required": [
|
|
3526
|
+
"paneId",
|
|
3527
|
+
"paneName",
|
|
3528
|
+
"worktreePath",
|
|
3529
|
+
"repoId",
|
|
3530
|
+
"archived",
|
|
3531
|
+
"createdAtMs",
|
|
3532
|
+
"inputTokens",
|
|
3533
|
+
"outputTokens",
|
|
3534
|
+
"cacheReadTokens",
|
|
3535
|
+
"cacheCreationTokens",
|
|
3536
|
+
"totalTokens",
|
|
3537
|
+
"messageCount",
|
|
3538
|
+
"estimatedCostUsd",
|
|
3539
|
+
"costIncomplete",
|
|
3540
|
+
"cacheSavingsUsd",
|
|
3541
|
+
"uncachedCostUsd",
|
|
3542
|
+
"uncachedInputTokens",
|
|
3543
|
+
"cacheHitRate",
|
|
3544
|
+
"byModel"
|
|
3545
|
+
],
|
|
3546
|
+
"properties": {
|
|
3547
|
+
"paneId": {
|
|
3548
|
+
"type": "string"
|
|
3549
|
+
},
|
|
3550
|
+
"paneName": {
|
|
3551
|
+
"type": "string"
|
|
3552
|
+
},
|
|
3553
|
+
"worktreePath": {
|
|
3554
|
+
"type": "string"
|
|
3555
|
+
},
|
|
3556
|
+
"repoId": {
|
|
3557
|
+
"type": [
|
|
3558
|
+
"number",
|
|
3559
|
+
"null"
|
|
3560
|
+
]
|
|
3561
|
+
},
|
|
3562
|
+
"archived": {
|
|
3563
|
+
"type": "boolean"
|
|
3564
|
+
},
|
|
3565
|
+
"createdAtMs": {
|
|
3566
|
+
"type": "number"
|
|
3567
|
+
},
|
|
3568
|
+
"inputTokens": {
|
|
3569
|
+
"type": "number"
|
|
3570
|
+
},
|
|
3571
|
+
"outputTokens": {
|
|
3572
|
+
"type": "number"
|
|
3573
|
+
},
|
|
3574
|
+
"cacheReadTokens": {
|
|
3575
|
+
"type": "number"
|
|
3576
|
+
},
|
|
3577
|
+
"cacheCreationTokens": {
|
|
3578
|
+
"type": "number"
|
|
3579
|
+
},
|
|
3580
|
+
"totalTokens": {
|
|
3581
|
+
"type": "number"
|
|
3582
|
+
},
|
|
3583
|
+
"messageCount": {
|
|
3584
|
+
"type": "number"
|
|
3585
|
+
},
|
|
3586
|
+
"estimatedCostUsd": {
|
|
3587
|
+
"type": "number"
|
|
3588
|
+
},
|
|
3589
|
+
"costIncomplete": {
|
|
3590
|
+
"type": "boolean"
|
|
3591
|
+
},
|
|
3592
|
+
"cacheSavingsUsd": {
|
|
3593
|
+
"type": "number"
|
|
3594
|
+
},
|
|
3595
|
+
"uncachedCostUsd": {
|
|
3596
|
+
"type": "number"
|
|
3597
|
+
},
|
|
3598
|
+
"uncachedInputTokens": {
|
|
3599
|
+
"type": "number"
|
|
3600
|
+
},
|
|
3601
|
+
"cacheHitRate": {
|
|
3602
|
+
"type": "number"
|
|
3603
|
+
},
|
|
3604
|
+
"byModel": {
|
|
3605
|
+
"type": "array",
|
|
3606
|
+
"items": {
|
|
3607
|
+
"$ref": "#/$defs/usageByModel"
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3610
|
+
},
|
|
3611
|
+
"additionalProperties": false
|
|
3612
|
+
}
|
|
3613
|
+
},
|
|
3614
|
+
"type": "object",
|
|
3615
|
+
"required": [
|
|
3616
|
+
"ok",
|
|
3617
|
+
"fromMs",
|
|
3618
|
+
"toMs",
|
|
3619
|
+
"pricingAsOf",
|
|
3620
|
+
"panes"
|
|
3621
|
+
],
|
|
3622
|
+
"properties": {
|
|
3623
|
+
"ok": {
|
|
3624
|
+
"const": true
|
|
3625
|
+
},
|
|
3626
|
+
"fromMs": {
|
|
3627
|
+
"type": "number"
|
|
3628
|
+
},
|
|
3629
|
+
"toMs": {
|
|
3630
|
+
"type": "number"
|
|
3631
|
+
},
|
|
3632
|
+
"pricingAsOf": {
|
|
3633
|
+
"type": "string"
|
|
3634
|
+
},
|
|
3635
|
+
"panes": {
|
|
3636
|
+
"type": "array",
|
|
3637
|
+
"items": {
|
|
3638
|
+
"$ref": "#/$defs/pane"
|
|
3639
|
+
}
|
|
3640
|
+
},
|
|
3641
|
+
"unattributed": {
|
|
3642
|
+
"$ref": "#/$defs/paneCostSlice"
|
|
3643
|
+
},
|
|
3644
|
+
"totals": {
|
|
3645
|
+
"$ref": "#/$defs/usageTotals"
|
|
3646
|
+
}
|
|
3647
|
+
},
|
|
3648
|
+
"additionalProperties": false
|
|
3649
|
+
},
|
|
3158
3650
|
"workspaceEntry": {
|
|
3159
3651
|
"type": "object",
|
|
3160
3652
|
"required": [
|
|
@@ -3178,6 +3670,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
3178
3670
|
"agent.busy",
|
|
3179
3671
|
"agent.blocked",
|
|
3180
3672
|
"agent.unknown",
|
|
3673
|
+
"agent.idle",
|
|
3181
3674
|
"pane.created",
|
|
3182
3675
|
"pane.gone",
|
|
3183
3676
|
"panel.exited"
|
|
@@ -3240,9 +3733,18 @@ exports.RUNPANE_CONTRACT = {
|
|
|
3240
3733
|
"settledMs": {
|
|
3241
3734
|
"type": "number"
|
|
3242
3735
|
},
|
|
3736
|
+
"idleMs": {
|
|
3737
|
+
"type": "number"
|
|
3738
|
+
},
|
|
3739
|
+
"idleCount": {
|
|
3740
|
+
"type": "number"
|
|
3741
|
+
},
|
|
3243
3742
|
"heldInput": {
|
|
3244
3743
|
"type": "string"
|
|
3245
3744
|
},
|
|
3745
|
+
"heldInputPresent": {
|
|
3746
|
+
"type": "boolean"
|
|
3747
|
+
},
|
|
3246
3748
|
"exitCode": {
|
|
3247
3749
|
"type": "number"
|
|
3248
3750
|
},
|
|
@@ -3288,6 +3790,12 @@ exports.RUNPANE_CONTRACT = {
|
|
|
3288
3790
|
"type": "string"
|
|
3289
3791
|
}
|
|
3290
3792
|
},
|
|
3793
|
+
"excludePaneIds": {
|
|
3794
|
+
"type": "array",
|
|
3795
|
+
"items": {
|
|
3796
|
+
"type": "string"
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3291
3799
|
"repo": {
|
|
3292
3800
|
"oneOf": [
|
|
3293
3801
|
{
|
|
@@ -3316,11 +3824,23 @@ exports.RUNPANE_CONTRACT = {
|
|
|
3316
3824
|
"nameContains": {
|
|
3317
3825
|
"type": "string"
|
|
3318
3826
|
},
|
|
3827
|
+
"agentsOnly": {
|
|
3828
|
+
"type": "boolean"
|
|
3829
|
+
},
|
|
3319
3830
|
"ackNow": {
|
|
3320
3831
|
"type": "boolean"
|
|
3321
3832
|
},
|
|
3322
3833
|
"includeHeldInput": {
|
|
3323
3834
|
"type": "boolean"
|
|
3835
|
+
},
|
|
3836
|
+
"includeHeldInputPresence": {
|
|
3837
|
+
"type": "boolean"
|
|
3838
|
+
},
|
|
3839
|
+
"idleAfterMs": {
|
|
3840
|
+
"type": "number"
|
|
3841
|
+
},
|
|
3842
|
+
"idleWindowStartMs": {
|
|
3843
|
+
"type": "number"
|
|
3324
3844
|
}
|
|
3325
3845
|
},
|
|
3326
3846
|
"additionalProperties": false
|
|
@@ -4820,6 +5340,16 @@ exports.RUNPANE_CONTRACT = {
|
|
|
4820
5340
|
"--pane-dir <path>"
|
|
4821
5341
|
]
|
|
4822
5342
|
},
|
|
5343
|
+
{
|
|
5344
|
+
"name": "panes cost",
|
|
5345
|
+
"summary": "Report estimated token cost per Pane, with per-model breakdown and cache efficiency.",
|
|
5346
|
+
"arguments": [
|
|
5347
|
+
"--repo <selector>",
|
|
5348
|
+
"--pane <pane-id>",
|
|
5349
|
+
"--json",
|
|
5350
|
+
"--pane-dir <path>"
|
|
5351
|
+
]
|
|
5352
|
+
},
|
|
4823
5353
|
{
|
|
4824
5354
|
"name": "panes create",
|
|
4825
5355
|
"summary": "Create user-visible Panes (Pane sessions) backed by Pane-managed worktrees for feature/PR work and open terminal-backed tool tabs.",
|
|
@@ -5142,11 +5672,34 @@ exports.RUNPANE_CONTRACT = {
|
|
|
5142
5672
|
"name": "--verbose",
|
|
5143
5673
|
"required": false,
|
|
5144
5674
|
"description": "Print extra diagnostics."
|
|
5675
|
+
},
|
|
5676
|
+
{
|
|
5677
|
+
"name": "--report",
|
|
5678
|
+
"required": false,
|
|
5679
|
+
"description": "Prepare a redacted, inspectable diagnostic report."
|
|
5680
|
+
},
|
|
5681
|
+
{
|
|
5682
|
+
"name": "--body-file",
|
|
5683
|
+
"value": "<path|->",
|
|
5684
|
+
"required": false,
|
|
5685
|
+
"description": "Read report evidence from a file or stdin."
|
|
5686
|
+
},
|
|
5687
|
+
{
|
|
5688
|
+
"name": "--title",
|
|
5689
|
+
"value": "<text>",
|
|
5690
|
+
"required": false,
|
|
5691
|
+
"description": "Report title."
|
|
5692
|
+
},
|
|
5693
|
+
{
|
|
5694
|
+
"name": "--yes",
|
|
5695
|
+
"required": false,
|
|
5696
|
+
"description": "Confirm creating exactly one dcouple/Pane issue."
|
|
5145
5697
|
}
|
|
5146
5698
|
],
|
|
5147
5699
|
"examples": [
|
|
5148
5700
|
"runpane doctor --json",
|
|
5149
|
-
"runpane doctor"
|
|
5701
|
+
"runpane doctor",
|
|
5702
|
+
"runpane doctor --report --title \"runpane watch failed\" --body-file ./watch.txt --json"
|
|
5150
5703
|
],
|
|
5151
5704
|
"jsonSchemas": [
|
|
5152
5705
|
"doctorResult"
|
|
@@ -5348,6 +5901,50 @@ exports.RUNPANE_CONTRACT = {
|
|
|
5348
5901
|
"Without --repo, this lists sessions across saved Pane repositories."
|
|
5349
5902
|
]
|
|
5350
5903
|
},
|
|
5904
|
+
"panes cost": {
|
|
5905
|
+
"name": "panes cost",
|
|
5906
|
+
"summary": "Report estimated token cost per Pane, with per-model breakdown and cache efficiency.",
|
|
5907
|
+
"details": "Use this to attribute estimated workspace token costs to Pane lifetimes and inspect the models and cache efficiency behind each Pane's spend.",
|
|
5908
|
+
"requiresPaneDaemon": true,
|
|
5909
|
+
"mutates": false,
|
|
5910
|
+
"arguments": [
|
|
5911
|
+
{
|
|
5912
|
+
"name": "--repo",
|
|
5913
|
+
"value": "<selector>",
|
|
5914
|
+
"required": false,
|
|
5915
|
+
"description": "Optional repository selector: active, id, exact path, or saved repository name."
|
|
5916
|
+
},
|
|
5917
|
+
{
|
|
5918
|
+
"name": "--pane",
|
|
5919
|
+
"value": "<pane-id>",
|
|
5920
|
+
"required": false,
|
|
5921
|
+
"description": "Return only the selected Pane."
|
|
5922
|
+
},
|
|
5923
|
+
{
|
|
5924
|
+
"name": "--json",
|
|
5925
|
+
"required": false,
|
|
5926
|
+
"description": "Print machine-readable output."
|
|
5927
|
+
},
|
|
5928
|
+
{
|
|
5929
|
+
"name": "--pane-dir",
|
|
5930
|
+
"value": "<path>",
|
|
5931
|
+
"required": false,
|
|
5932
|
+
"description": "Connect to a specific Pane data directory."
|
|
5933
|
+
}
|
|
5934
|
+
],
|
|
5935
|
+
"examples": [
|
|
5936
|
+
"runpane panes cost --pane <pane-id> --json"
|
|
5937
|
+
],
|
|
5938
|
+
"jsonSchemas": [
|
|
5939
|
+
"paneCostRequest",
|
|
5940
|
+
"paneCostResult"
|
|
5941
|
+
],
|
|
5942
|
+
"notes": [
|
|
5943
|
+
"The report range is the last 30 days.",
|
|
5944
|
+
"Costs are estimates based on API token prices.",
|
|
5945
|
+
"The unattributed bucket reconciles the Pane rows against totals in the unscoped result."
|
|
5946
|
+
]
|
|
5947
|
+
},
|
|
5351
5948
|
"panes create": {
|
|
5352
5949
|
"name": "panes create",
|
|
5353
5950
|
"summary": "Create user-visible Panes (Pane sessions) backed by Pane-managed worktrees for feature/PR work and open terminal-backed tool tabs.",
|
|
@@ -6183,7 +6780,7 @@ exports.RUNPANE_CONTRACT = {
|
|
|
6183
6780
|
"watch": {
|
|
6184
6781
|
"name": "watch",
|
|
6185
6782
|
"summary": "Wait for workspace transitions using the daemon journal.",
|
|
6186
|
-
"details": "
|
|
6783
|
+
"details": "`runpane watch --follow` is the canonical zero-flag monitor: lines, 60-second heartbeats, 10-minute re-firing IDLE, managed-agent scope, and redacted STUCK detection are follow defaults. Named cursors persist in the Pane data directory.",
|
|
6187
6784
|
"requiresPaneDaemon": true,
|
|
6188
6785
|
"mutates": false,
|
|
6189
6786
|
"arguments": [
|
|
@@ -6204,17 +6801,52 @@ exports.RUNPANE_CONTRACT = {
|
|
|
6204
6801
|
"required": false,
|
|
6205
6802
|
"description": "Continue waiting until interrupted."
|
|
6206
6803
|
},
|
|
6804
|
+
{
|
|
6805
|
+
"name": "--format",
|
|
6806
|
+
"value": "<lines|json>",
|
|
6807
|
+
"required": false,
|
|
6808
|
+
"description": "Output format; lines is the follow default."
|
|
6809
|
+
},
|
|
6810
|
+
{
|
|
6811
|
+
"name": "--heartbeat",
|
|
6812
|
+
"value": "<seconds>",
|
|
6813
|
+
"required": false,
|
|
6814
|
+
"description": "Healthy-silence bound; defaults to 60 under follow."
|
|
6815
|
+
},
|
|
6816
|
+
{
|
|
6817
|
+
"name": "--idle-after",
|
|
6818
|
+
"value": "<milliseconds>",
|
|
6819
|
+
"required": false,
|
|
6820
|
+
"description": "Re-firing READY idle interval; defaults to 600000 under follow."
|
|
6821
|
+
},
|
|
6822
|
+
{
|
|
6823
|
+
"name": "--all-managed",
|
|
6824
|
+
"required": false,
|
|
6825
|
+
"description": "Explicit spelling for the all-managed default scope."
|
|
6826
|
+
},
|
|
6827
|
+
{
|
|
6828
|
+
"name": "--include-shells",
|
|
6829
|
+
"required": false,
|
|
6830
|
+
"description": "Include ordinary shell panels."
|
|
6831
|
+
},
|
|
6832
|
+
{
|
|
6833
|
+
"name": "--self-test",
|
|
6834
|
+
"required": false,
|
|
6835
|
+
"description": "Probe the watch path anonymously without advancing a named cursor."
|
|
6836
|
+
},
|
|
6207
6837
|
{
|
|
6208
6838
|
"name": "--json",
|
|
6209
6839
|
"required": false,
|
|
6210
|
-
"description": "Emit
|
|
6840
|
+
"description": "Emit structured NDJSON; held-input content remains opt-in."
|
|
6211
6841
|
}
|
|
6212
6842
|
],
|
|
6213
6843
|
"examples": [
|
|
6844
|
+
"runpane watch --follow",
|
|
6214
6845
|
"runpane watch --as monitor --follow --json"
|
|
6215
6846
|
],
|
|
6216
6847
|
"notes": [
|
|
6217
|
-
"Journal loss is surfaced through reset and dropped metadata."
|
|
6848
|
+
"Journal loss is surfaced through reset and dropped metadata.",
|
|
6849
|
+
"The daemon treats omitted idleAfterMs as disabled so older clients never receive agent.idle unexpectedly."
|
|
6218
6850
|
]
|
|
6219
6851
|
}
|
|
6220
6852
|
},
|