pi-crew 0.9.46 → 0.9.48
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/CHANGELOG.md +83 -0
- package/README.md +16 -2
- package/dist/build-meta.json +289 -164
- package/dist/index.mjs +1744 -2732
- package/dist/index.mjs.map +4 -4
- package/docs/decisions/2026-07-21-broker-phase4-default-on.md +77 -0
- package/docs/decisions/2026-07-21-broker-windows-perms.md +91 -0
- package/docs/decisions/2026-07-22-broker-phase4-gated-on.md +99 -0
- package/docs/decisions/README.md +3 -0
- package/docs/publishing.md +29 -0
- package/package.json +3 -1
- package/scripts/build-bundle.mjs +7 -0
- package/scripts/postinstall.mjs +60 -1
- package/scripts/pty_probe.py +174 -0
- package/skills/real-test-pi-crew/SKILL.md +659 -0
- package/src/config/config.ts +42 -1
- package/src/config/defaults.ts +45 -1
- package/src/config/types.ts +19 -0
- package/src/extension/register.ts +6 -1
- package/src/extension/registration/context-builder.ts +4 -0
- package/src/extension/registration/lifecycle-handlers.ts +166 -3
- package/src/extension/registration/registration-types.ts +9 -0
- package/src/prompt/prompt-runtime.ts +108 -0
- package/src/runtime/broker-issuer.ts +37 -0
- package/src/runtime/child-pi-spawn.ts +53 -0
- package/src/runtime/child-pi.ts +42 -11
- package/src/runtime/crew-broker-child.ts +88 -0
- package/src/runtime/crew-broker-client.ts +673 -0
- package/src/runtime/crew-broker-tokens.ts +84 -0
- package/src/runtime/crew-broker.ts +1276 -0
- package/src/runtime/dynamic-workflow-context.ts +7 -3
- package/src/runtime/dynamic-workflow-runner.ts +1 -1
- package/src/runtime/plan-templates.ts +8 -6
- package/src/schema/config-schema.ts +14 -0
- package/src/state/mailbox.ts +43 -0
- package/src/ui/key-utils.ts +42 -0
- package/src/ui/keybinding-map.ts +29 -3
- package/src/ui/run-dashboard.ts +28 -0
- package/src/ui/settings-overlay.ts +42 -22
- package/src/utils/ndjson.ts +115 -0
- package/src/utils/session-utils.ts +30 -0
- package/src/utils/socket-path.ts +127 -0
- package/workflows/default.workflow.md +1 -1
- package/workflows/fast-fix.workflow.md +1 -1
- package/workflows/plan-execute.workflow.md +1 -1
- package/workflows/review.workflow.md +1 -1
package/dist/build-meta.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"format": "esm"
|
|
18
18
|
},
|
|
19
19
|
"src/schema/config-schema.ts": {
|
|
20
|
-
"bytes":
|
|
20
|
+
"bytes": 12739,
|
|
21
21
|
"imports": [
|
|
22
22
|
{
|
|
23
23
|
"path": "@sinclair/typebox",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"format": "esm"
|
|
122
122
|
},
|
|
123
123
|
"src/config/defaults.ts": {
|
|
124
|
-
"bytes":
|
|
124
|
+
"bytes": 6588,
|
|
125
125
|
"imports": [],
|
|
126
126
|
"format": "esm"
|
|
127
127
|
},
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"format": "esm"
|
|
204
204
|
},
|
|
205
205
|
"src/config/config.ts": {
|
|
206
|
-
"bytes":
|
|
206
|
+
"bytes": 52707,
|
|
207
207
|
"imports": [
|
|
208
208
|
{
|
|
209
209
|
"path": "node:fs",
|
|
@@ -255,6 +255,11 @@
|
|
|
255
255
|
"kind": "import-statement",
|
|
256
256
|
"original": "../utils/paths.ts"
|
|
257
257
|
},
|
|
258
|
+
{
|
|
259
|
+
"path": "src/config/defaults.ts",
|
|
260
|
+
"kind": "import-statement",
|
|
261
|
+
"original": "./defaults.ts"
|
|
262
|
+
},
|
|
258
263
|
{
|
|
259
264
|
"path": "src/config/suggestions.ts",
|
|
260
265
|
"kind": "import-statement",
|
|
@@ -513,7 +518,7 @@
|
|
|
513
518
|
"format": "esm"
|
|
514
519
|
},
|
|
515
520
|
"src/utils/session-utils.ts": {
|
|
516
|
-
"bytes":
|
|
521
|
+
"bytes": 4361,
|
|
517
522
|
"imports": [],
|
|
518
523
|
"format": "esm"
|
|
519
524
|
},
|
|
@@ -745,6 +750,11 @@
|
|
|
745
750
|
"imports": [],
|
|
746
751
|
"format": "esm"
|
|
747
752
|
},
|
|
753
|
+
"src/runtime/broker-issuer.ts": {
|
|
754
|
+
"bytes": 1530,
|
|
755
|
+
"imports": [],
|
|
756
|
+
"format": "esm"
|
|
757
|
+
},
|
|
748
758
|
"src/runtime/child-pi-constants.ts": {
|
|
749
759
|
"bytes": 1937,
|
|
750
760
|
"imports": [
|
|
@@ -809,7 +819,7 @@
|
|
|
809
819
|
"format": "esm"
|
|
810
820
|
},
|
|
811
821
|
"src/runtime/child-pi-spawn.ts": {
|
|
812
|
-
"bytes":
|
|
822
|
+
"bytes": 13310,
|
|
813
823
|
"imports": [
|
|
814
824
|
{
|
|
815
825
|
"path": "node:fs",
|
|
@@ -974,7 +984,7 @@
|
|
|
974
984
|
"format": "esm"
|
|
975
985
|
},
|
|
976
986
|
"src/runtime/child-pi.ts": {
|
|
977
|
-
"bytes":
|
|
987
|
+
"bytes": 46378,
|
|
978
988
|
"imports": [
|
|
979
989
|
{
|
|
980
990
|
"path": "node:child_process",
|
|
@@ -1021,6 +1031,11 @@
|
|
|
1021
1031
|
"kind": "import-statement",
|
|
1022
1032
|
"original": "../utils/redaction.ts"
|
|
1023
1033
|
},
|
|
1034
|
+
{
|
|
1035
|
+
"path": "src/runtime/broker-issuer.ts",
|
|
1036
|
+
"kind": "import-statement",
|
|
1037
|
+
"original": "./broker-issuer.ts"
|
|
1038
|
+
},
|
|
1024
1039
|
{
|
|
1025
1040
|
"path": "src/runtime/child-pi-constants.ts",
|
|
1026
1041
|
"kind": "import-statement",
|
|
@@ -1537,7 +1552,7 @@
|
|
|
1537
1552
|
"format": "esm"
|
|
1538
1553
|
},
|
|
1539
1554
|
"src/state/mailbox.ts": {
|
|
1540
|
-
"bytes":
|
|
1555
|
+
"bytes": 35819,
|
|
1541
1556
|
"imports": [
|
|
1542
1557
|
{
|
|
1543
1558
|
"path": "node:fs",
|
|
@@ -9060,7 +9075,7 @@
|
|
|
9060
9075
|
"format": "esm"
|
|
9061
9076
|
},
|
|
9062
9077
|
"src/runtime/plan-templates.ts": {
|
|
9063
|
-
"bytes":
|
|
9078
|
+
"bytes": 6668,
|
|
9064
9079
|
"imports": [
|
|
9065
9080
|
{
|
|
9066
9081
|
"path": "src/utils/internal-error.ts",
|
|
@@ -9596,72 +9611,6 @@
|
|
|
9596
9611
|
],
|
|
9597
9612
|
"format": "esm"
|
|
9598
9613
|
},
|
|
9599
|
-
"node_modules/esbuild/lib/main.js": {
|
|
9600
|
-
"bytes": 97214,
|
|
9601
|
-
"imports": [
|
|
9602
|
-
{
|
|
9603
|
-
"path": "fs",
|
|
9604
|
-
"kind": "require-call",
|
|
9605
|
-
"external": true
|
|
9606
|
-
},
|
|
9607
|
-
{
|
|
9608
|
-
"path": "os",
|
|
9609
|
-
"kind": "require-call",
|
|
9610
|
-
"external": true
|
|
9611
|
-
},
|
|
9612
|
-
{
|
|
9613
|
-
"path": "path",
|
|
9614
|
-
"kind": "require-call",
|
|
9615
|
-
"external": true
|
|
9616
|
-
},
|
|
9617
|
-
{
|
|
9618
|
-
"path": "pnpapi",
|
|
9619
|
-
"kind": "require-call",
|
|
9620
|
-
"external": true
|
|
9621
|
-
},
|
|
9622
|
-
{
|
|
9623
|
-
"path": "child_process",
|
|
9624
|
-
"kind": "require-call",
|
|
9625
|
-
"external": true
|
|
9626
|
-
},
|
|
9627
|
-
{
|
|
9628
|
-
"path": "crypto",
|
|
9629
|
-
"kind": "require-call",
|
|
9630
|
-
"external": true
|
|
9631
|
-
},
|
|
9632
|
-
{
|
|
9633
|
-
"path": "path",
|
|
9634
|
-
"kind": "require-call",
|
|
9635
|
-
"external": true
|
|
9636
|
-
},
|
|
9637
|
-
{
|
|
9638
|
-
"path": "fs",
|
|
9639
|
-
"kind": "require-call",
|
|
9640
|
-
"external": true
|
|
9641
|
-
},
|
|
9642
|
-
{
|
|
9643
|
-
"path": "os",
|
|
9644
|
-
"kind": "require-call",
|
|
9645
|
-
"external": true
|
|
9646
|
-
},
|
|
9647
|
-
{
|
|
9648
|
-
"path": "tty",
|
|
9649
|
-
"kind": "require-call",
|
|
9650
|
-
"external": true
|
|
9651
|
-
},
|
|
9652
|
-
{
|
|
9653
|
-
"path": "worker_threads",
|
|
9654
|
-
"kind": "require-call",
|
|
9655
|
-
"external": true
|
|
9656
|
-
},
|
|
9657
|
-
{
|
|
9658
|
-
"path": "<runtime>",
|
|
9659
|
-
"kind": "import-statement",
|
|
9660
|
-
"external": true
|
|
9661
|
-
}
|
|
9662
|
-
],
|
|
9663
|
-
"format": "cjs"
|
|
9664
|
-
},
|
|
9665
9614
|
"src/runtime/deterministic-ast.ts": {
|
|
9666
9615
|
"bytes": 5850,
|
|
9667
9616
|
"imports": [
|
|
@@ -9737,7 +9686,7 @@
|
|
|
9737
9686
|
"format": "esm"
|
|
9738
9687
|
},
|
|
9739
9688
|
"src/runtime/dynamic-workflow-context.ts": {
|
|
9740
|
-
"bytes":
|
|
9689
|
+
"bytes": 44124,
|
|
9741
9690
|
"imports": [
|
|
9742
9691
|
{
|
|
9743
9692
|
"path": "node:crypto",
|
|
@@ -9818,7 +9767,7 @@
|
|
|
9818
9767
|
"format": "esm"
|
|
9819
9768
|
},
|
|
9820
9769
|
"src/runtime/dynamic-workflow-runner.ts": {
|
|
9821
|
-
"bytes":
|
|
9770
|
+
"bytes": 14093,
|
|
9822
9771
|
"imports": [
|
|
9823
9772
|
{
|
|
9824
9773
|
"path": "node:fs",
|
|
@@ -9831,9 +9780,9 @@
|
|
|
9831
9780
|
"external": true
|
|
9832
9781
|
},
|
|
9833
9782
|
{
|
|
9834
|
-
"path": "
|
|
9783
|
+
"path": "esbuild",
|
|
9835
9784
|
"kind": "import-statement",
|
|
9836
|
-
"
|
|
9785
|
+
"external": true
|
|
9837
9786
|
},
|
|
9838
9787
|
{
|
|
9839
9788
|
"path": "src/state/artifact-store.ts",
|
|
@@ -10706,9 +10655,31 @@
|
|
|
10706
10655
|
"imports": [],
|
|
10707
10656
|
"format": "esm"
|
|
10708
10657
|
},
|
|
10658
|
+
"src/ui/key-utils.ts": {
|
|
10659
|
+
"bytes": 1224,
|
|
10660
|
+
"imports": [
|
|
10661
|
+
{
|
|
10662
|
+
"path": "@earendil-works/pi-tui",
|
|
10663
|
+
"kind": "import-statement",
|
|
10664
|
+
"external": true
|
|
10665
|
+
}
|
|
10666
|
+
],
|
|
10667
|
+
"format": "esm"
|
|
10668
|
+
},
|
|
10709
10669
|
"src/ui/keybinding-map.ts": {
|
|
10710
|
-
"bytes":
|
|
10711
|
-
"imports": [
|
|
10670
|
+
"bytes": 9514,
|
|
10671
|
+
"imports": [
|
|
10672
|
+
{
|
|
10673
|
+
"path": "@earendil-works/pi-tui",
|
|
10674
|
+
"kind": "import-statement",
|
|
10675
|
+
"external": true
|
|
10676
|
+
},
|
|
10677
|
+
{
|
|
10678
|
+
"path": "src/ui/key-utils.ts",
|
|
10679
|
+
"kind": "import-statement",
|
|
10680
|
+
"original": "./key-utils.ts"
|
|
10681
|
+
}
|
|
10682
|
+
],
|
|
10712
10683
|
"format": "esm"
|
|
10713
10684
|
},
|
|
10714
10685
|
"src/ui/overlays/help-overlay.ts": {
|
|
@@ -10738,7 +10709,7 @@
|
|
|
10738
10709
|
"format": "esm"
|
|
10739
10710
|
},
|
|
10740
10711
|
"src/ui/run-dashboard.ts": {
|
|
10741
|
-
"bytes":
|
|
10712
|
+
"bytes": 39936,
|
|
10742
10713
|
"imports": [
|
|
10743
10714
|
{
|
|
10744
10715
|
"path": "node:fs",
|
|
@@ -11005,7 +10976,7 @@
|
|
|
11005
10976
|
"format": "esm"
|
|
11006
10977
|
},
|
|
11007
10978
|
"src/ui/settings-overlay.ts": {
|
|
11008
|
-
"bytes":
|
|
10979
|
+
"bytes": 31879,
|
|
11009
10980
|
"imports": [
|
|
11010
10981
|
{
|
|
11011
10982
|
"path": "src/utils/visual.ts",
|
|
@@ -11017,6 +10988,11 @@
|
|
|
11017
10988
|
"kind": "import-statement",
|
|
11018
10989
|
"original": "./dynamic-border.ts"
|
|
11019
10990
|
},
|
|
10991
|
+
{
|
|
10992
|
+
"path": "src/ui/key-utils.ts",
|
|
10993
|
+
"kind": "import-statement",
|
|
10994
|
+
"original": "./key-utils.ts"
|
|
10995
|
+
},
|
|
11020
10996
|
{
|
|
11021
10997
|
"path": "src/ui/theme-discovery.ts",
|
|
11022
10998
|
"kind": "import-statement",
|
|
@@ -11624,7 +11600,7 @@
|
|
|
11624
11600
|
"format": "esm"
|
|
11625
11601
|
},
|
|
11626
11602
|
"src/extension/registration/context-builder.ts": {
|
|
11627
|
-
"bytes":
|
|
11603
|
+
"bytes": 5611,
|
|
11628
11604
|
"imports": [
|
|
11629
11605
|
{
|
|
11630
11606
|
"path": "src/config/config.ts",
|
|
@@ -12313,6 +12289,125 @@
|
|
|
12313
12289
|
],
|
|
12314
12290
|
"format": "esm"
|
|
12315
12291
|
},
|
|
12292
|
+
"src/runtime/crew-broker-tokens.ts": {
|
|
12293
|
+
"bytes": 2967,
|
|
12294
|
+
"imports": [
|
|
12295
|
+
{
|
|
12296
|
+
"path": "node:crypto",
|
|
12297
|
+
"kind": "import-statement",
|
|
12298
|
+
"external": true
|
|
12299
|
+
}
|
|
12300
|
+
],
|
|
12301
|
+
"format": "esm"
|
|
12302
|
+
},
|
|
12303
|
+
"src/utils/ndjson.ts": {
|
|
12304
|
+
"bytes": 4731,
|
|
12305
|
+
"imports": [
|
|
12306
|
+
{
|
|
12307
|
+
"path": "src/runtime/crew-broker-tokens.ts",
|
|
12308
|
+
"kind": "import-statement",
|
|
12309
|
+
"original": "../runtime/crew-broker-tokens.ts"
|
|
12310
|
+
}
|
|
12311
|
+
],
|
|
12312
|
+
"format": "esm"
|
|
12313
|
+
},
|
|
12314
|
+
"src/utils/socket-path.ts": {
|
|
12315
|
+
"bytes": 4876,
|
|
12316
|
+
"imports": [
|
|
12317
|
+
{
|
|
12318
|
+
"path": "node:crypto",
|
|
12319
|
+
"kind": "import-statement",
|
|
12320
|
+
"external": true
|
|
12321
|
+
},
|
|
12322
|
+
{
|
|
12323
|
+
"path": "node:fs/promises",
|
|
12324
|
+
"kind": "import-statement",
|
|
12325
|
+
"external": true
|
|
12326
|
+
},
|
|
12327
|
+
{
|
|
12328
|
+
"path": "node:net",
|
|
12329
|
+
"kind": "import-statement",
|
|
12330
|
+
"external": true
|
|
12331
|
+
},
|
|
12332
|
+
{
|
|
12333
|
+
"path": "node:os",
|
|
12334
|
+
"kind": "import-statement",
|
|
12335
|
+
"external": true
|
|
12336
|
+
},
|
|
12337
|
+
{
|
|
12338
|
+
"path": "node:path",
|
|
12339
|
+
"kind": "import-statement",
|
|
12340
|
+
"external": true
|
|
12341
|
+
}
|
|
12342
|
+
],
|
|
12343
|
+
"format": "esm"
|
|
12344
|
+
},
|
|
12345
|
+
"src/runtime/crew-broker.ts": {
|
|
12346
|
+
"bytes": 46354,
|
|
12347
|
+
"imports": [
|
|
12348
|
+
{
|
|
12349
|
+
"path": "node:fs/promises",
|
|
12350
|
+
"kind": "import-statement",
|
|
12351
|
+
"external": true
|
|
12352
|
+
},
|
|
12353
|
+
{
|
|
12354
|
+
"path": "node:net",
|
|
12355
|
+
"kind": "import-statement",
|
|
12356
|
+
"external": true
|
|
12357
|
+
},
|
|
12358
|
+
{
|
|
12359
|
+
"path": "src/state/event-log.ts",
|
|
12360
|
+
"kind": "import-statement",
|
|
12361
|
+
"original": "../state/event-log.ts"
|
|
12362
|
+
},
|
|
12363
|
+
{
|
|
12364
|
+
"path": "src/state/mailbox.ts",
|
|
12365
|
+
"kind": "import-statement",
|
|
12366
|
+
"original": "../state/mailbox.ts"
|
|
12367
|
+
},
|
|
12368
|
+
{
|
|
12369
|
+
"path": "src/state/state-store.ts",
|
|
12370
|
+
"kind": "import-statement",
|
|
12371
|
+
"original": "../state/state-store.ts"
|
|
12372
|
+
},
|
|
12373
|
+
{
|
|
12374
|
+
"path": "src/ui/run-event-bus.ts",
|
|
12375
|
+
"kind": "import-statement",
|
|
12376
|
+
"original": "../ui/run-event-bus.ts"
|
|
12377
|
+
},
|
|
12378
|
+
{
|
|
12379
|
+
"path": "src/utils/internal-error.ts",
|
|
12380
|
+
"kind": "import-statement",
|
|
12381
|
+
"original": "../utils/internal-error.ts"
|
|
12382
|
+
},
|
|
12383
|
+
{
|
|
12384
|
+
"path": "src/utils/ndjson.ts",
|
|
12385
|
+
"kind": "import-statement",
|
|
12386
|
+
"original": "../utils/ndjson.ts"
|
|
12387
|
+
},
|
|
12388
|
+
{
|
|
12389
|
+
"path": "src/utils/redaction.ts",
|
|
12390
|
+
"kind": "import-statement",
|
|
12391
|
+
"original": "../utils/redaction.ts"
|
|
12392
|
+
},
|
|
12393
|
+
{
|
|
12394
|
+
"path": "src/utils/safe-paths.ts",
|
|
12395
|
+
"kind": "import-statement",
|
|
12396
|
+
"original": "../utils/safe-paths.ts"
|
|
12397
|
+
},
|
|
12398
|
+
{
|
|
12399
|
+
"path": "src/utils/socket-path.ts",
|
|
12400
|
+
"kind": "import-statement",
|
|
12401
|
+
"original": "../utils/socket-path.ts"
|
|
12402
|
+
},
|
|
12403
|
+
{
|
|
12404
|
+
"path": "src/runtime/crew-broker-tokens.ts",
|
|
12405
|
+
"kind": "import-statement",
|
|
12406
|
+
"original": "./crew-broker-tokens.ts"
|
|
12407
|
+
}
|
|
12408
|
+
],
|
|
12409
|
+
"format": "esm"
|
|
12410
|
+
},
|
|
12316
12411
|
"src/runtime/session-resources.ts": {
|
|
12317
12412
|
"bytes": 1018,
|
|
12318
12413
|
"imports": [
|
|
@@ -12415,7 +12510,7 @@
|
|
|
12415
12510
|
"format": "esm"
|
|
12416
12511
|
},
|
|
12417
12512
|
"src/extension/registration/lifecycle-handlers.ts": {
|
|
12418
|
-
"bytes":
|
|
12513
|
+
"bytes": 36458,
|
|
12419
12514
|
"imports": [
|
|
12420
12515
|
{
|
|
12421
12516
|
"path": "node:fs",
|
|
@@ -12442,11 +12537,21 @@
|
|
|
12442
12537
|
"kind": "import-statement",
|
|
12443
12538
|
"original": "../../extension/run-maintenance.ts"
|
|
12444
12539
|
},
|
|
12540
|
+
{
|
|
12541
|
+
"path": "src/runtime/broker-issuer.ts",
|
|
12542
|
+
"kind": "import-statement",
|
|
12543
|
+
"original": "../../runtime/broker-issuer.ts"
|
|
12544
|
+
},
|
|
12445
12545
|
{
|
|
12446
12546
|
"path": "src/runtime/crash-recovery.ts",
|
|
12447
12547
|
"kind": "import-statement",
|
|
12448
12548
|
"original": "../../runtime/crash-recovery.ts"
|
|
12449
12549
|
},
|
|
12550
|
+
{
|
|
12551
|
+
"path": "src/runtime/crew-broker.ts",
|
|
12552
|
+
"kind": "import-statement",
|
|
12553
|
+
"original": "../../runtime/crew-broker.ts"
|
|
12554
|
+
},
|
|
12450
12555
|
{
|
|
12451
12556
|
"path": "src/runtime/live-agent-manager.ts",
|
|
12452
12557
|
"kind": "import-statement",
|
|
@@ -12542,6 +12647,11 @@
|
|
|
12542
12647
|
"kind": "import-statement",
|
|
12543
12648
|
"original": "../../utils/session-utils.ts"
|
|
12544
12649
|
},
|
|
12650
|
+
{
|
|
12651
|
+
"path": "src/utils/socket-path.ts",
|
|
12652
|
+
"kind": "import-statement",
|
|
12653
|
+
"original": "../../utils/socket-path.ts"
|
|
12654
|
+
},
|
|
12545
12655
|
{
|
|
12546
12656
|
"path": "src/extension/async-notifier.ts",
|
|
12547
12657
|
"kind": "import-statement",
|
|
@@ -12834,7 +12944,7 @@
|
|
|
12834
12944
|
"format": "esm"
|
|
12835
12945
|
},
|
|
12836
12946
|
"src/extension/register.ts": {
|
|
12837
|
-
"bytes":
|
|
12947
|
+
"bytes": 5297,
|
|
12838
12948
|
"imports": [
|
|
12839
12949
|
{
|
|
12840
12950
|
"path": "src/config/config.ts",
|
|
@@ -12996,7 +13106,7 @@
|
|
|
12996
13106
|
"imports": [],
|
|
12997
13107
|
"exports": [],
|
|
12998
13108
|
"inputs": {},
|
|
12999
|
-
"bytes":
|
|
13109
|
+
"bytes": 5996671
|
|
13000
13110
|
},
|
|
13001
13111
|
"dist/index.mjs": {
|
|
13002
13112
|
"imports": [
|
|
@@ -14255,61 +14365,6 @@
|
|
|
14255
14365
|
"kind": "import-statement",
|
|
14256
14366
|
"external": true
|
|
14257
14367
|
},
|
|
14258
|
-
{
|
|
14259
|
-
"path": "fs",
|
|
14260
|
-
"kind": "require-call",
|
|
14261
|
-
"external": true
|
|
14262
|
-
},
|
|
14263
|
-
{
|
|
14264
|
-
"path": "os",
|
|
14265
|
-
"kind": "require-call",
|
|
14266
|
-
"external": true
|
|
14267
|
-
},
|
|
14268
|
-
{
|
|
14269
|
-
"path": "path",
|
|
14270
|
-
"kind": "require-call",
|
|
14271
|
-
"external": true
|
|
14272
|
-
},
|
|
14273
|
-
{
|
|
14274
|
-
"path": "pnpapi",
|
|
14275
|
-
"kind": "require-call",
|
|
14276
|
-
"external": true
|
|
14277
|
-
},
|
|
14278
|
-
{
|
|
14279
|
-
"path": "child_process",
|
|
14280
|
-
"kind": "require-call",
|
|
14281
|
-
"external": true
|
|
14282
|
-
},
|
|
14283
|
-
{
|
|
14284
|
-
"path": "crypto",
|
|
14285
|
-
"kind": "require-call",
|
|
14286
|
-
"external": true
|
|
14287
|
-
},
|
|
14288
|
-
{
|
|
14289
|
-
"path": "path",
|
|
14290
|
-
"kind": "require-call",
|
|
14291
|
-
"external": true
|
|
14292
|
-
},
|
|
14293
|
-
{
|
|
14294
|
-
"path": "fs",
|
|
14295
|
-
"kind": "require-call",
|
|
14296
|
-
"external": true
|
|
14297
|
-
},
|
|
14298
|
-
{
|
|
14299
|
-
"path": "os",
|
|
14300
|
-
"kind": "require-call",
|
|
14301
|
-
"external": true
|
|
14302
|
-
},
|
|
14303
|
-
{
|
|
14304
|
-
"path": "tty",
|
|
14305
|
-
"kind": "require-call",
|
|
14306
|
-
"external": true
|
|
14307
|
-
},
|
|
14308
|
-
{
|
|
14309
|
-
"path": "worker_threads",
|
|
14310
|
-
"kind": "require-call",
|
|
14311
|
-
"external": true
|
|
14312
|
-
},
|
|
14313
14368
|
{
|
|
14314
14369
|
"path": "acorn",
|
|
14315
14370
|
"kind": "import-statement",
|
|
@@ -14350,6 +14405,11 @@
|
|
|
14350
14405
|
"kind": "import-statement",
|
|
14351
14406
|
"external": true
|
|
14352
14407
|
},
|
|
14408
|
+
{
|
|
14409
|
+
"path": "esbuild",
|
|
14410
|
+
"kind": "import-statement",
|
|
14411
|
+
"external": true
|
|
14412
|
+
},
|
|
14353
14413
|
{
|
|
14354
14414
|
"path": "node:module",
|
|
14355
14415
|
"kind": "dynamic-import",
|
|
@@ -14390,6 +14450,16 @@
|
|
|
14390
14450
|
"kind": "import-statement",
|
|
14391
14451
|
"external": true
|
|
14392
14452
|
},
|
|
14453
|
+
{
|
|
14454
|
+
"path": "@earendil-works/pi-tui",
|
|
14455
|
+
"kind": "import-statement",
|
|
14456
|
+
"external": true
|
|
14457
|
+
},
|
|
14458
|
+
{
|
|
14459
|
+
"path": "@earendil-works/pi-tui",
|
|
14460
|
+
"kind": "import-statement",
|
|
14461
|
+
"external": true
|
|
14462
|
+
},
|
|
14393
14463
|
{
|
|
14394
14464
|
"path": "node:fs",
|
|
14395
14465
|
"kind": "import-statement",
|
|
@@ -14595,6 +14665,46 @@
|
|
|
14595
14665
|
"kind": "import-statement",
|
|
14596
14666
|
"external": true
|
|
14597
14667
|
},
|
|
14668
|
+
{
|
|
14669
|
+
"path": "node:fs/promises",
|
|
14670
|
+
"kind": "import-statement",
|
|
14671
|
+
"external": true
|
|
14672
|
+
},
|
|
14673
|
+
{
|
|
14674
|
+
"path": "node:net",
|
|
14675
|
+
"kind": "import-statement",
|
|
14676
|
+
"external": true
|
|
14677
|
+
},
|
|
14678
|
+
{
|
|
14679
|
+
"path": "node:crypto",
|
|
14680
|
+
"kind": "import-statement",
|
|
14681
|
+
"external": true
|
|
14682
|
+
},
|
|
14683
|
+
{
|
|
14684
|
+
"path": "node:crypto",
|
|
14685
|
+
"kind": "import-statement",
|
|
14686
|
+
"external": true
|
|
14687
|
+
},
|
|
14688
|
+
{
|
|
14689
|
+
"path": "node:fs/promises",
|
|
14690
|
+
"kind": "import-statement",
|
|
14691
|
+
"external": true
|
|
14692
|
+
},
|
|
14693
|
+
{
|
|
14694
|
+
"path": "node:net",
|
|
14695
|
+
"kind": "import-statement",
|
|
14696
|
+
"external": true
|
|
14697
|
+
},
|
|
14698
|
+
{
|
|
14699
|
+
"path": "node:os",
|
|
14700
|
+
"kind": "import-statement",
|
|
14701
|
+
"external": true
|
|
14702
|
+
},
|
|
14703
|
+
{
|
|
14704
|
+
"path": "node:path",
|
|
14705
|
+
"kind": "import-statement",
|
|
14706
|
+
"external": true
|
|
14707
|
+
},
|
|
14598
14708
|
{
|
|
14599
14709
|
"path": "node:path",
|
|
14600
14710
|
"kind": "import-statement",
|
|
@@ -14627,7 +14737,7 @@
|
|
|
14627
14737
|
"bytesInOutput": 176
|
|
14628
14738
|
},
|
|
14629
14739
|
"src/schema/config-schema.ts": {
|
|
14630
|
-
"bytesInOutput":
|
|
14740
|
+
"bytesInOutput": 13433
|
|
14631
14741
|
},
|
|
14632
14742
|
"src/utils/internal-error.ts": {
|
|
14633
14743
|
"bytesInOutput": 502
|
|
@@ -14639,10 +14749,10 @@
|
|
|
14639
14749
|
"bytesInOutput": 5264
|
|
14640
14750
|
},
|
|
14641
14751
|
"src/state/atomic-write.ts": {
|
|
14642
|
-
"bytesInOutput":
|
|
14752
|
+
"bytesInOutput": 19114
|
|
14643
14753
|
},
|
|
14644
14754
|
"src/config/defaults.ts": {
|
|
14645
|
-
"bytesInOutput":
|
|
14755
|
+
"bytesInOutput": 4815
|
|
14646
14756
|
},
|
|
14647
14757
|
"src/state/locks.ts": {
|
|
14648
14758
|
"bytesInOutput": 9166
|
|
@@ -14654,7 +14764,7 @@
|
|
|
14654
14764
|
"bytesInOutput": 1325
|
|
14655
14765
|
},
|
|
14656
14766
|
"src/config/config.ts": {
|
|
14657
|
-
"bytesInOutput":
|
|
14767
|
+
"bytesInOutput": 41539
|
|
14658
14768
|
},
|
|
14659
14769
|
"src/runtime/pi-spawn.ts": {
|
|
14660
14770
|
"bytesInOutput": 6666
|
|
@@ -14693,7 +14803,7 @@
|
|
|
14693
14803
|
"bytesInOutput": 8917
|
|
14694
14804
|
},
|
|
14695
14805
|
"src/utils/session-utils.ts": {
|
|
14696
|
-
"bytesInOutput":
|
|
14806
|
+
"bytesInOutput": 1018
|
|
14697
14807
|
},
|
|
14698
14808
|
"src/runtime/cancellation.ts": {
|
|
14699
14809
|
"bytesInOutput": 2293
|
|
@@ -14714,11 +14824,14 @@
|
|
|
14714
14824
|
"bytesInOutput": 3490
|
|
14715
14825
|
},
|
|
14716
14826
|
"src/runtime/pi-args.ts": {
|
|
14717
|
-
"bytesInOutput":
|
|
14827
|
+
"bytesInOutput": 15106
|
|
14718
14828
|
},
|
|
14719
14829
|
"src/utils/redaction.ts": {
|
|
14720
14830
|
"bytesInOutput": 7293
|
|
14721
14831
|
},
|
|
14832
|
+
"src/runtime/broker-issuer.ts": {
|
|
14833
|
+
"bytesInOutput": 242
|
|
14834
|
+
},
|
|
14722
14835
|
"src/runtime/child-pi-constants.ts": {
|
|
14723
14836
|
"bytesInOutput": 874
|
|
14724
14837
|
},
|
|
@@ -14735,7 +14848,7 @@
|
|
|
14735
14848
|
"bytesInOutput": 3511
|
|
14736
14849
|
},
|
|
14737
14850
|
"src/runtime/child-pi-spawn.ts": {
|
|
14738
|
-
"bytesInOutput":
|
|
14851
|
+
"bytesInOutput": 4867
|
|
14739
14852
|
},
|
|
14740
14853
|
"src/runtime/child-pi-steering.ts": {
|
|
14741
14854
|
"bytesInOutput": 2917
|
|
@@ -14765,7 +14878,7 @@
|
|
|
14765
14878
|
"bytesInOutput": 1801
|
|
14766
14879
|
},
|
|
14767
14880
|
"src/runtime/child-pi.ts": {
|
|
14768
|
-
"bytesInOutput":
|
|
14881
|
+
"bytesInOutput": 29439
|
|
14769
14882
|
},
|
|
14770
14883
|
"src/extension/crew-cleanup.ts": {
|
|
14771
14884
|
"bytesInOutput": 2872
|
|
@@ -14831,7 +14944,7 @@
|
|
|
14831
14944
|
"bytesInOutput": 4465
|
|
14832
14945
|
},
|
|
14833
14946
|
"src/state/mailbox.ts": {
|
|
14834
|
-
"bytesInOutput":
|
|
14947
|
+
"bytesInOutput": 22424
|
|
14835
14948
|
},
|
|
14836
14949
|
"src/extension/help.ts": {
|
|
14837
14950
|
"bytesInOutput": 2863
|
|
@@ -15188,7 +15301,7 @@
|
|
|
15188
15301
|
"bytesInOutput": 1136
|
|
15189
15302
|
},
|
|
15190
15303
|
"node_modules/ajv/dist/compile/codegen/code.js": {
|
|
15191
|
-
"bytesInOutput":
|
|
15304
|
+
"bytesInOutput": 4834
|
|
15192
15305
|
},
|
|
15193
15306
|
"node_modules/ajv/dist/compile/codegen/scope.js": {
|
|
15194
15307
|
"bytesInOutput": 5314
|
|
@@ -15827,7 +15940,7 @@
|
|
|
15827
15940
|
"bytesInOutput": 2471
|
|
15828
15941
|
},
|
|
15829
15942
|
"src/runtime/plan-templates.ts": {
|
|
15830
|
-
"bytesInOutput":
|
|
15943
|
+
"bytesInOutput": 4199
|
|
15831
15944
|
},
|
|
15832
15945
|
"src/runtime/adaptive-plan.ts": {
|
|
15833
15946
|
"bytesInOutput": 15523
|
|
@@ -15871,9 +15984,6 @@
|
|
|
15871
15984
|
"src/runtime/parallel-research.ts": {
|
|
15872
15985
|
"bytesInOutput": 2683
|
|
15873
15986
|
},
|
|
15874
|
-
"node_modules/esbuild/lib/main.js": {
|
|
15875
|
-
"bytesInOutput": 105459
|
|
15876
|
-
},
|
|
15877
15987
|
"src/runtime/deterministic-ast.ts": {
|
|
15878
15988
|
"bytesInOutput": 3753
|
|
15879
15989
|
},
|
|
@@ -15893,10 +16003,10 @@
|
|
|
15893
16003
|
"bytesInOutput": 4272
|
|
15894
16004
|
},
|
|
15895
16005
|
"src/runtime/dynamic-workflow-context.ts": {
|
|
15896
|
-
"bytesInOutput":
|
|
16006
|
+
"bytesInOutput": 22078
|
|
15897
16007
|
},
|
|
15898
16008
|
"src/runtime/dynamic-workflow-runner.ts": {
|
|
15899
|
-
"bytesInOutput":
|
|
16009
|
+
"bytesInOutput": 6553
|
|
15900
16010
|
},
|
|
15901
16011
|
"src/extension/team-tool/run.ts": {
|
|
15902
16012
|
"bytesInOutput": 31463
|
|
@@ -15958,14 +16068,17 @@
|
|
|
15958
16068
|
"src/ui/dynamic-border.ts": {
|
|
15959
16069
|
"bytesInOutput": 850
|
|
15960
16070
|
},
|
|
16071
|
+
"src/ui/key-utils.ts": {
|
|
16072
|
+
"bytesInOutput": 508
|
|
16073
|
+
},
|
|
15961
16074
|
"src/ui/keybinding-map.ts": {
|
|
15962
|
-
"bytesInOutput":
|
|
16075
|
+
"bytesInOutput": 4285
|
|
15963
16076
|
},
|
|
15964
16077
|
"src/ui/overlays/help-overlay.ts": {
|
|
15965
16078
|
"bytesInOutput": 4154
|
|
15966
16079
|
},
|
|
15967
16080
|
"src/ui/run-dashboard.ts": {
|
|
15968
|
-
"bytesInOutput":
|
|
16081
|
+
"bytesInOutput": 30943
|
|
15969
16082
|
},
|
|
15970
16083
|
"src/ui/overlays/confirm-overlay.ts": {
|
|
15971
16084
|
"bytesInOutput": 2237
|
|
@@ -15986,7 +16099,7 @@
|
|
|
15986
16099
|
"bytesInOutput": 15857
|
|
15987
16100
|
},
|
|
15988
16101
|
"src/ui/settings-overlay.ts": {
|
|
15989
|
-
"bytesInOutput":
|
|
16102
|
+
"bytesInOutput": 30796
|
|
15990
16103
|
},
|
|
15991
16104
|
"src/extension/registration/commands.ts": {
|
|
15992
16105
|
"bytesInOutput": 40620
|
|
@@ -16055,7 +16168,7 @@
|
|
|
16055
16168
|
"bytesInOutput": 3150
|
|
16056
16169
|
},
|
|
16057
16170
|
"src/extension/register.ts": {
|
|
16058
|
-
"bytesInOutput":
|
|
16171
|
+
"bytesInOutput": 1848
|
|
16059
16172
|
},
|
|
16060
16173
|
"src/ui/deploy-bundled-themes.ts": {
|
|
16061
16174
|
"bytesInOutput": 1188
|
|
@@ -16103,7 +16216,7 @@
|
|
|
16103
16216
|
"bytesInOutput": 1111
|
|
16104
16217
|
},
|
|
16105
16218
|
"src/extension/registration/context-builder.ts": {
|
|
16106
|
-
"bytesInOutput":
|
|
16219
|
+
"bytesInOutput": 3792
|
|
16107
16220
|
},
|
|
16108
16221
|
"src/i18n.ts": {
|
|
16109
16222
|
"bytesInOutput": 6837
|
|
@@ -16139,7 +16252,19 @@
|
|
|
16139
16252
|
"bytesInOutput": 2451
|
|
16140
16253
|
},
|
|
16141
16254
|
"src/extension/registration/lifecycle-handlers.ts": {
|
|
16142
|
-
"bytesInOutput":
|
|
16255
|
+
"bytesInOutput": 24143
|
|
16256
|
+
},
|
|
16257
|
+
"src/runtime/crew-broker.ts": {
|
|
16258
|
+
"bytesInOutput": 35322
|
|
16259
|
+
},
|
|
16260
|
+
"src/runtime/crew-broker-tokens.ts": {
|
|
16261
|
+
"bytesInOutput": 1900
|
|
16262
|
+
},
|
|
16263
|
+
"src/utils/ndjson.ts": {
|
|
16264
|
+
"bytesInOutput": 2208
|
|
16265
|
+
},
|
|
16266
|
+
"src/utils/socket-path.ts": {
|
|
16267
|
+
"bytesInOutput": 2509
|
|
16143
16268
|
},
|
|
16144
16269
|
"src/runtime/session-resources.ts": {
|
|
16145
16270
|
"bytesInOutput": 463
|
|
@@ -16187,7 +16312,7 @@
|
|
|
16187
16312
|
"bytesInOutput": 81
|
|
16188
16313
|
}
|
|
16189
16314
|
},
|
|
16190
|
-
"bytes":
|
|
16315
|
+
"bytes": 2748383
|
|
16191
16316
|
}
|
|
16192
16317
|
}
|
|
16193
16318
|
}
|