pi-crew 0.9.26 → 0.9.28
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 +102 -0
- package/NOTICE.md +14 -0
- package/assets/crew-vibes.ttf +0 -0
- package/assets/runner-spritesheet.png +0 -0
- package/dist/build-meta.json +245 -48
- package/dist/index.mjs +1611 -243
- package/dist/index.mjs.map +4 -4
- package/docs/perf/optimization-plan-2026-07-verified.md +396 -0
- package/package.json +9 -2
- package/scripts/bench-check.mjs +96 -0
- package/scripts/bench-cold-start.mjs +216 -0
- package/scripts/build-bundle.mjs +84 -0
- package/scripts/build-crew-vibes-font.py +328 -0
- package/scripts/check-all-skills.ts +294 -0
- package/scripts/check-bundle-staleness.mjs +97 -0
- package/scripts/check-conflict-markers.mjs +91 -0
- package/scripts/check-lazy-imports.mjs +28 -0
- package/scripts/install-crew-vibes-font.mjs +91 -0
- package/scripts/postinstall.mjs +47 -0
- package/scripts/profile-startup.mjs +125 -0
- package/scripts/release-smoke.mjs +74 -0
- package/scripts/run-bench.mjs +47 -0
- package/scripts/run-real-chain.ts +41 -0
- package/scripts/test-issue-29-crash.ts +111 -0
- package/scripts/test-issue-29-e2e.ts +183 -0
- package/scripts/test-issue-29-real-runtime.ts +330 -0
- package/scripts/test-issue-29-real-tasks.ts +387 -0
- package/scripts/test-issue-29-team-tool.ts +105 -0
- package/scripts/test-runner.mjs +74 -0
- package/scripts/verify-flicker-fix.ts +109 -0
- package/scripts/verify-skill.ts +550 -0
- package/scripts/watch-bundle.mjs +259 -0
- package/scripts/watchdog-harness.ts +119 -0
- package/src/agents/agent-config.ts +2 -0
- package/src/agents/discover-agents.ts +10 -1
- package/src/config/defaults.ts +6 -0
- package/src/extension/crew-vibes/cat-frames.ts +18 -0
- package/src/extension/crew-vibes/config.ts +195 -0
- package/src/extension/crew-vibes/figures.ts +94 -0
- package/src/extension/crew-vibes/font-detect.ts +58 -0
- package/src/extension/crew-vibes/index.ts +385 -0
- package/src/extension/crew-vibes/provider-usage.ts +396 -0
- package/src/extension/crew-vibes/render.ts +206 -0
- package/src/extension/crew-vibes/speed.ts +286 -0
- package/src/extension/knowledge-injection.ts +12 -3
- package/src/extension/management.ts +23 -3
- package/src/extension/register.ts +7 -0
- package/src/extension/team-tool.ts +11 -0
- package/src/prompt/prompt-runtime.ts +65 -0
- package/src/runtime/child-pi.ts +123 -10
- package/src/runtime/crew-agent-records.ts +10 -3
- package/src/runtime/pi-args.ts +2 -0
- package/src/runtime/retry-executor.ts +4 -1
- package/src/runtime/task-runner/state-helpers.ts +9 -30
- package/src/runtime/task-runner.ts +1 -0
- package/src/runtime/team-runner.ts +5 -3
- package/src/state/atomic-write.ts +153 -49
- package/src/state/event-log.ts +16 -10
- package/src/state/locks.ts +7 -8
- package/src/state/mailbox.ts +15 -4
- package/src/state/state-store.ts +39 -10
- package/src/teams/discover-teams.ts +56 -1
- package/src/utils/safe-paths.ts +2 -1
- package/src/workflows/discover-workflows.ts +72 -1
package/dist/build-meta.json
CHANGED
|
@@ -6119,7 +6119,7 @@
|
|
|
6119
6119
|
"format": "esm"
|
|
6120
6120
|
},
|
|
6121
6121
|
"src/state/atomic-write.ts": {
|
|
6122
|
-
"bytes":
|
|
6122
|
+
"bytes": 33696,
|
|
6123
6123
|
"imports": [
|
|
6124
6124
|
{
|
|
6125
6125
|
"path": "node:crypto",
|
|
@@ -6160,12 +6160,12 @@
|
|
|
6160
6160
|
"format": "esm"
|
|
6161
6161
|
},
|
|
6162
6162
|
"src/config/defaults.ts": {
|
|
6163
|
-
"bytes":
|
|
6163
|
+
"bytes": 4721,
|
|
6164
6164
|
"imports": [],
|
|
6165
6165
|
"format": "esm"
|
|
6166
6166
|
},
|
|
6167
6167
|
"src/state/locks.ts": {
|
|
6168
|
-
"bytes":
|
|
6168
|
+
"bytes": 15906,
|
|
6169
6169
|
"imports": [
|
|
6170
6170
|
{
|
|
6171
6171
|
"path": "node:crypto",
|
|
@@ -6351,7 +6351,7 @@
|
|
|
6351
6351
|
"format": "esm"
|
|
6352
6352
|
},
|
|
6353
6353
|
"src/state/event-log.ts": {
|
|
6354
|
-
"bytes":
|
|
6354
|
+
"bytes": 46263,
|
|
6355
6355
|
"imports": [
|
|
6356
6356
|
{
|
|
6357
6357
|
"path": "node:crypto",
|
|
@@ -6443,7 +6443,7 @@
|
|
|
6443
6443
|
"format": "esm"
|
|
6444
6444
|
},
|
|
6445
6445
|
"src/utils/safe-paths.ts": {
|
|
6446
|
-
"bytes":
|
|
6446
|
+
"bytes": 17380,
|
|
6447
6447
|
"imports": [
|
|
6448
6448
|
{
|
|
6449
6449
|
"path": "node:fs",
|
|
@@ -6562,7 +6562,7 @@
|
|
|
6562
6562
|
"format": "esm"
|
|
6563
6563
|
},
|
|
6564
6564
|
"src/state/state-store.ts": {
|
|
6565
|
-
"bytes":
|
|
6565
|
+
"bytes": 36081,
|
|
6566
6566
|
"imports": [
|
|
6567
6567
|
{
|
|
6568
6568
|
"path": "node:fs",
|
|
@@ -6659,7 +6659,7 @@
|
|
|
6659
6659
|
"format": "esm"
|
|
6660
6660
|
},
|
|
6661
6661
|
"src/runtime/crew-agent-records.ts": {
|
|
6662
|
-
"bytes":
|
|
6662
|
+
"bytes": 20964,
|
|
6663
6663
|
"imports": [
|
|
6664
6664
|
{
|
|
6665
6665
|
"path": "node:fs",
|
|
@@ -7077,7 +7077,7 @@
|
|
|
7077
7077
|
"format": "esm"
|
|
7078
7078
|
},
|
|
7079
7079
|
"src/agents/agent-config.ts": {
|
|
7080
|
-
"bytes":
|
|
7080
|
+
"bytes": 8365,
|
|
7081
7081
|
"imports": [
|
|
7082
7082
|
{
|
|
7083
7083
|
"path": "src/config/role-tools.ts",
|
|
@@ -7088,7 +7088,7 @@
|
|
|
7088
7088
|
"format": "esm"
|
|
7089
7089
|
},
|
|
7090
7090
|
"src/runtime/pi-args.ts": {
|
|
7091
|
-
"bytes":
|
|
7091
|
+
"bytes": 27494,
|
|
7092
7092
|
"imports": [
|
|
7093
7093
|
{
|
|
7094
7094
|
"path": "node:fs",
|
|
@@ -7341,7 +7341,7 @@
|
|
|
7341
7341
|
"format": "esm"
|
|
7342
7342
|
},
|
|
7343
7343
|
"src/runtime/child-pi.ts": {
|
|
7344
|
-
"bytes":
|
|
7344
|
+
"bytes": 65884,
|
|
7345
7345
|
"imports": [
|
|
7346
7346
|
{
|
|
7347
7347
|
"path": "node:child_process",
|
|
@@ -7567,7 +7567,7 @@
|
|
|
7567
7567
|
"format": "esm"
|
|
7568
7568
|
},
|
|
7569
7569
|
"src/workflows/discover-workflows.ts": {
|
|
7570
|
-
"bytes":
|
|
7570
|
+
"bytes": 11026,
|
|
7571
7571
|
"imports": [
|
|
7572
7572
|
{
|
|
7573
7573
|
"path": "node:fs",
|
|
@@ -8003,7 +8003,7 @@
|
|
|
8003
8003
|
"format": "esm"
|
|
8004
8004
|
},
|
|
8005
8005
|
"src/agents/discover-agents.ts": {
|
|
8006
|
-
"bytes":
|
|
8006
|
+
"bytes": 25646,
|
|
8007
8007
|
"imports": [
|
|
8008
8008
|
{
|
|
8009
8009
|
"path": "node:fs",
|
|
@@ -8055,7 +8055,7 @@
|
|
|
8055
8055
|
"format": "esm"
|
|
8056
8056
|
},
|
|
8057
8057
|
"src/teams/discover-teams.ts": {
|
|
8058
|
-
"bytes":
|
|
8058
|
+
"bytes": 6985,
|
|
8059
8059
|
"imports": [
|
|
8060
8060
|
{
|
|
8061
8061
|
"path": "node:fs",
|
|
@@ -8267,7 +8267,7 @@
|
|
|
8267
8267
|
"format": "esm"
|
|
8268
8268
|
},
|
|
8269
8269
|
"src/state/mailbox.ts": {
|
|
8270
|
-
"bytes":
|
|
8270
|
+
"bytes": 27973,
|
|
8271
8271
|
"imports": [
|
|
8272
8272
|
{
|
|
8273
8273
|
"path": "node:fs",
|
|
@@ -8365,7 +8365,7 @@
|
|
|
8365
8365
|
"format": "esm"
|
|
8366
8366
|
},
|
|
8367
8367
|
"src/extension/management.ts": {
|
|
8368
|
-
"bytes":
|
|
8368
|
+
"bytes": 24299,
|
|
8369
8369
|
"imports": [
|
|
8370
8370
|
{
|
|
8371
8371
|
"path": "node:crypto",
|
|
@@ -14245,7 +14245,7 @@
|
|
|
14245
14245
|
"format": "esm"
|
|
14246
14246
|
},
|
|
14247
14247
|
"src/runtime/retry-executor.ts": {
|
|
14248
|
-
"bytes":
|
|
14248
|
+
"bytes": 3151,
|
|
14249
14249
|
"imports": [
|
|
14250
14250
|
{
|
|
14251
14251
|
"path": "src/utils/sleep.ts",
|
|
@@ -14531,7 +14531,7 @@
|
|
|
14531
14531
|
"format": "esm"
|
|
14532
14532
|
},
|
|
14533
14533
|
"src/extension/knowledge-injection.ts": {
|
|
14534
|
-
"bytes":
|
|
14534
|
+
"bytes": 14866,
|
|
14535
14535
|
"imports": [
|
|
14536
14536
|
{
|
|
14537
14537
|
"path": "node:fs",
|
|
@@ -14543,6 +14543,11 @@
|
|
|
14543
14543
|
"kind": "import-statement",
|
|
14544
14544
|
"external": true
|
|
14545
14545
|
},
|
|
14546
|
+
{
|
|
14547
|
+
"path": "src/utils/internal-error.ts",
|
|
14548
|
+
"kind": "import-statement",
|
|
14549
|
+
"original": "../utils/internal-error.ts"
|
|
14550
|
+
},
|
|
14546
14551
|
{
|
|
14547
14552
|
"path": "src/utils/paths.ts",
|
|
14548
14553
|
"kind": "import-statement",
|
|
@@ -14656,7 +14661,7 @@
|
|
|
14656
14661
|
"format": "esm"
|
|
14657
14662
|
},
|
|
14658
14663
|
"src/runtime/task-runner/state-helpers.ts": {
|
|
14659
|
-
"bytes":
|
|
14664
|
+
"bytes": 5519,
|
|
14660
14665
|
"imports": [
|
|
14661
14666
|
{
|
|
14662
14667
|
"path": "node:fs",
|
|
@@ -14810,7 +14815,7 @@
|
|
|
14810
14815
|
"format": "esm"
|
|
14811
14816
|
},
|
|
14812
14817
|
"src/runtime/task-runner.ts": {
|
|
14813
|
-
"bytes":
|
|
14818
|
+
"bytes": 54809,
|
|
14814
14819
|
"imports": [
|
|
14815
14820
|
{
|
|
14816
14821
|
"path": "node:fs",
|
|
@@ -15119,7 +15124,7 @@
|
|
|
15119
15124
|
"format": "esm"
|
|
15120
15125
|
},
|
|
15121
15126
|
"src/runtime/team-runner.ts": {
|
|
15122
|
-
"bytes":
|
|
15127
|
+
"bytes": 76483,
|
|
15123
15128
|
"imports": [
|
|
15124
15129
|
{
|
|
15125
15130
|
"path": "node:fs",
|
|
@@ -15345,7 +15350,7 @@
|
|
|
15345
15350
|
"format": "esm"
|
|
15346
15351
|
},
|
|
15347
15352
|
"src/runtime/pipeline-runner.ts": {
|
|
15348
|
-
"bytes":
|
|
15353
|
+
"bytes": 14889,
|
|
15349
15354
|
"imports": [
|
|
15350
15355
|
{
|
|
15351
15356
|
"path": "src/errors.ts",
|
|
@@ -15970,7 +15975,7 @@
|
|
|
15970
15975
|
"format": "esm"
|
|
15971
15976
|
},
|
|
15972
15977
|
"src/extension/team-tool.ts": {
|
|
15973
|
-
"bytes":
|
|
15978
|
+
"bytes": 41087,
|
|
15974
15979
|
"imports": [
|
|
15975
15980
|
{
|
|
15976
15981
|
"path": "node:fs",
|
|
@@ -17112,6 +17117,132 @@
|
|
|
17112
17117
|
],
|
|
17113
17118
|
"format": "esm"
|
|
17114
17119
|
},
|
|
17120
|
+
"src/extension/crew-vibes/font-detect.ts": {
|
|
17121
|
+
"bytes": 2265,
|
|
17122
|
+
"imports": [
|
|
17123
|
+
{
|
|
17124
|
+
"path": "node:fs",
|
|
17125
|
+
"kind": "import-statement",
|
|
17126
|
+
"external": true
|
|
17127
|
+
},
|
|
17128
|
+
{
|
|
17129
|
+
"path": "node:os",
|
|
17130
|
+
"kind": "import-statement",
|
|
17131
|
+
"external": true
|
|
17132
|
+
},
|
|
17133
|
+
{
|
|
17134
|
+
"path": "node:path",
|
|
17135
|
+
"kind": "import-statement",
|
|
17136
|
+
"external": true
|
|
17137
|
+
}
|
|
17138
|
+
],
|
|
17139
|
+
"format": "esm"
|
|
17140
|
+
},
|
|
17141
|
+
"src/extension/crew-vibes/config.ts": {
|
|
17142
|
+
"bytes": 7062,
|
|
17143
|
+
"imports": [
|
|
17144
|
+
{
|
|
17145
|
+
"path": "node:fs",
|
|
17146
|
+
"kind": "import-statement",
|
|
17147
|
+
"external": true
|
|
17148
|
+
},
|
|
17149
|
+
{
|
|
17150
|
+
"path": "node:path",
|
|
17151
|
+
"kind": "import-statement",
|
|
17152
|
+
"external": true
|
|
17153
|
+
},
|
|
17154
|
+
{
|
|
17155
|
+
"path": "src/extension/crew-vibes/font-detect.ts",
|
|
17156
|
+
"kind": "import-statement",
|
|
17157
|
+
"original": "./font-detect.ts"
|
|
17158
|
+
}
|
|
17159
|
+
],
|
|
17160
|
+
"format": "esm"
|
|
17161
|
+
},
|
|
17162
|
+
"src/extension/crew-vibes/provider-usage.ts": {
|
|
17163
|
+
"bytes": 13202,
|
|
17164
|
+
"imports": [
|
|
17165
|
+
{
|
|
17166
|
+
"path": "node:fs",
|
|
17167
|
+
"kind": "import-statement",
|
|
17168
|
+
"external": true
|
|
17169
|
+
},
|
|
17170
|
+
{
|
|
17171
|
+
"path": "node:os",
|
|
17172
|
+
"kind": "import-statement",
|
|
17173
|
+
"external": true
|
|
17174
|
+
},
|
|
17175
|
+
{
|
|
17176
|
+
"path": "node:path",
|
|
17177
|
+
"kind": "import-statement",
|
|
17178
|
+
"external": true
|
|
17179
|
+
}
|
|
17180
|
+
],
|
|
17181
|
+
"format": "esm"
|
|
17182
|
+
},
|
|
17183
|
+
"src/extension/crew-vibes/figures.ts": {
|
|
17184
|
+
"bytes": 3603,
|
|
17185
|
+
"imports": [
|
|
17186
|
+
{
|
|
17187
|
+
"path": "src/extension/crew-vibes/font-detect.ts",
|
|
17188
|
+
"kind": "import-statement",
|
|
17189
|
+
"original": "./font-detect.ts"
|
|
17190
|
+
}
|
|
17191
|
+
],
|
|
17192
|
+
"format": "esm"
|
|
17193
|
+
},
|
|
17194
|
+
"src/extension/crew-vibes/render.ts": {
|
|
17195
|
+
"bytes": 8361,
|
|
17196
|
+
"imports": [
|
|
17197
|
+
{
|
|
17198
|
+
"path": "src/extension/crew-vibes/config.ts",
|
|
17199
|
+
"kind": "import-statement",
|
|
17200
|
+
"original": "./config.ts"
|
|
17201
|
+
},
|
|
17202
|
+
{
|
|
17203
|
+
"path": "src/extension/crew-vibes/figures.ts",
|
|
17204
|
+
"kind": "import-statement",
|
|
17205
|
+
"original": "./figures.ts"
|
|
17206
|
+
}
|
|
17207
|
+
],
|
|
17208
|
+
"format": "esm"
|
|
17209
|
+
},
|
|
17210
|
+
"src/extension/crew-vibes/speed.ts": {
|
|
17211
|
+
"bytes": 7688,
|
|
17212
|
+
"imports": [],
|
|
17213
|
+
"format": "esm"
|
|
17214
|
+
},
|
|
17215
|
+
"src/extension/crew-vibes/index.ts": {
|
|
17216
|
+
"bytes": 12760,
|
|
17217
|
+
"imports": [
|
|
17218
|
+
{
|
|
17219
|
+
"path": "src/extension/crew-vibes/config.ts",
|
|
17220
|
+
"kind": "import-statement",
|
|
17221
|
+
"original": "./config.ts"
|
|
17222
|
+
},
|
|
17223
|
+
{
|
|
17224
|
+
"path": "src/extension/crew-vibes/provider-usage.ts",
|
|
17225
|
+
"kind": "import-statement",
|
|
17226
|
+
"original": "./provider-usage.ts"
|
|
17227
|
+
},
|
|
17228
|
+
{
|
|
17229
|
+
"path": "src/extension/crew-vibes/figures.ts",
|
|
17230
|
+
"kind": "import-statement",
|
|
17231
|
+
"original": "./figures.ts"
|
|
17232
|
+
},
|
|
17233
|
+
{
|
|
17234
|
+
"path": "src/extension/crew-vibes/render.ts",
|
|
17235
|
+
"kind": "import-statement",
|
|
17236
|
+
"original": "./render.ts"
|
|
17237
|
+
},
|
|
17238
|
+
{
|
|
17239
|
+
"path": "src/extension/crew-vibes/speed.ts",
|
|
17240
|
+
"kind": "import-statement",
|
|
17241
|
+
"original": "./speed.ts"
|
|
17242
|
+
}
|
|
17243
|
+
],
|
|
17244
|
+
"format": "esm"
|
|
17245
|
+
},
|
|
17115
17246
|
"src/extension/rpc-hmac.ts": {
|
|
17116
17247
|
"bytes": 7500,
|
|
17117
17248
|
"imports": [
|
|
@@ -17781,7 +17912,7 @@
|
|
|
17781
17912
|
"format": "esm"
|
|
17782
17913
|
},
|
|
17783
17914
|
"src/extension/register.ts": {
|
|
17784
|
-
"bytes":
|
|
17915
|
+
"bytes": 67832,
|
|
17785
17916
|
"imports": [
|
|
17786
17917
|
{
|
|
17787
17918
|
"path": "node:fs",
|
|
@@ -18008,6 +18139,11 @@
|
|
|
18008
18139
|
"kind": "import-statement",
|
|
18009
18140
|
"original": "./crew-shortcuts.ts"
|
|
18010
18141
|
},
|
|
18142
|
+
{
|
|
18143
|
+
"path": "src/extension/crew-vibes/index.ts",
|
|
18144
|
+
"kind": "import-statement",
|
|
18145
|
+
"original": "./crew-vibes/index.ts"
|
|
18146
|
+
},
|
|
18011
18147
|
{
|
|
18012
18148
|
"path": "src/extension/cross-extension-rpc.ts",
|
|
18013
18149
|
"kind": "import-statement",
|
|
@@ -18198,7 +18334,7 @@
|
|
|
18198
18334
|
"imports": [],
|
|
18199
18335
|
"exports": [],
|
|
18200
18336
|
"inputs": {},
|
|
18201
|
-
"bytes":
|
|
18337
|
+
"bytes": 6599888
|
|
18202
18338
|
},
|
|
18203
18339
|
"dist/index.mjs": {
|
|
18204
18340
|
"imports": [
|
|
@@ -19582,6 +19718,46 @@
|
|
|
19582
19718
|
"kind": "import-statement",
|
|
19583
19719
|
"external": true
|
|
19584
19720
|
},
|
|
19721
|
+
{
|
|
19722
|
+
"path": "node:fs",
|
|
19723
|
+
"kind": "import-statement",
|
|
19724
|
+
"external": true
|
|
19725
|
+
},
|
|
19726
|
+
{
|
|
19727
|
+
"path": "node:path",
|
|
19728
|
+
"kind": "import-statement",
|
|
19729
|
+
"external": true
|
|
19730
|
+
},
|
|
19731
|
+
{
|
|
19732
|
+
"path": "node:fs",
|
|
19733
|
+
"kind": "import-statement",
|
|
19734
|
+
"external": true
|
|
19735
|
+
},
|
|
19736
|
+
{
|
|
19737
|
+
"path": "node:os",
|
|
19738
|
+
"kind": "import-statement",
|
|
19739
|
+
"external": true
|
|
19740
|
+
},
|
|
19741
|
+
{
|
|
19742
|
+
"path": "node:path",
|
|
19743
|
+
"kind": "import-statement",
|
|
19744
|
+
"external": true
|
|
19745
|
+
},
|
|
19746
|
+
{
|
|
19747
|
+
"path": "node:fs",
|
|
19748
|
+
"kind": "import-statement",
|
|
19749
|
+
"external": true
|
|
19750
|
+
},
|
|
19751
|
+
{
|
|
19752
|
+
"path": "node:os",
|
|
19753
|
+
"kind": "import-statement",
|
|
19754
|
+
"external": true
|
|
19755
|
+
},
|
|
19756
|
+
{
|
|
19757
|
+
"path": "node:path",
|
|
19758
|
+
"kind": "import-statement",
|
|
19759
|
+
"external": true
|
|
19760
|
+
},
|
|
19585
19761
|
{
|
|
19586
19762
|
"path": "node:crypto",
|
|
19587
19763
|
"kind": "import-statement",
|
|
@@ -20358,13 +20534,13 @@
|
|
|
20358
20534
|
"bytesInOutput": 5243
|
|
20359
20535
|
},
|
|
20360
20536
|
"src/state/atomic-write.ts": {
|
|
20361
|
-
"bytesInOutput":
|
|
20537
|
+
"bytesInOutput": 16802
|
|
20362
20538
|
},
|
|
20363
20539
|
"src/config/defaults.ts": {
|
|
20364
|
-
"bytesInOutput":
|
|
20540
|
+
"bytesInOutput": 4426
|
|
20365
20541
|
},
|
|
20366
20542
|
"src/state/locks.ts": {
|
|
20367
|
-
"bytesInOutput":
|
|
20543
|
+
"bytesInOutput": 7427
|
|
20368
20544
|
},
|
|
20369
20545
|
"src/utils/paths.ts": {
|
|
20370
20546
|
"bytesInOutput": 5172
|
|
@@ -20391,13 +20567,13 @@
|
|
|
20391
20567
|
"bytesInOutput": 4478
|
|
20392
20568
|
},
|
|
20393
20569
|
"src/state/event-log.ts": {
|
|
20394
|
-
"bytesInOutput":
|
|
20570
|
+
"bytesInOutput": 26471
|
|
20395
20571
|
},
|
|
20396
20572
|
"src/hooks/registry.ts": {
|
|
20397
20573
|
"bytesInOutput": 4422
|
|
20398
20574
|
},
|
|
20399
20575
|
"src/utils/safe-paths.ts": {
|
|
20400
|
-
"bytesInOutput":
|
|
20576
|
+
"bytesInOutput": 8574
|
|
20401
20577
|
},
|
|
20402
20578
|
"src/utils/scan-cache.ts": {
|
|
20403
20579
|
"bytesInOutput": 3769
|
|
@@ -20418,7 +20594,7 @@
|
|
|
20418
20594
|
"bytesInOutput": 1785
|
|
20419
20595
|
},
|
|
20420
20596
|
"src/state/state-store.ts": {
|
|
20421
|
-
"bytesInOutput":
|
|
20597
|
+
"bytesInOutput": 18950
|
|
20422
20598
|
},
|
|
20423
20599
|
"src/utils/file-coalescer.ts": {
|
|
20424
20600
|
"bytesInOutput": 1204
|
|
@@ -20427,7 +20603,7 @@
|
|
|
20427
20603
|
"bytesInOutput": 492
|
|
20428
20604
|
},
|
|
20429
20605
|
"src/runtime/crew-agent-records.ts": {
|
|
20430
|
-
"bytesInOutput":
|
|
20606
|
+
"bytesInOutput": 16167
|
|
20431
20607
|
},
|
|
20432
20608
|
"src/runtime/live-agent-manager.ts": {
|
|
20433
20609
|
"bytesInOutput": 14931
|
|
@@ -20451,7 +20627,7 @@
|
|
|
20451
20627
|
"bytesInOutput": 592
|
|
20452
20628
|
},
|
|
20453
20629
|
"src/runtime/orphan-worker-registry.ts": {
|
|
20454
|
-
"bytesInOutput":
|
|
20630
|
+
"bytesInOutput": 7463
|
|
20455
20631
|
},
|
|
20456
20632
|
"src/runtime/pi-spawn.ts": {
|
|
20457
20633
|
"bytesInOutput": 6694
|
|
@@ -20466,7 +20642,7 @@
|
|
|
20466
20642
|
"bytesInOutput": 1291
|
|
20467
20643
|
},
|
|
20468
20644
|
"src/runtime/pi-args.ts": {
|
|
20469
|
-
"bytesInOutput":
|
|
20645
|
+
"bytesInOutput": 15095
|
|
20470
20646
|
},
|
|
20471
20647
|
"src/runtime/runtime-warmup.ts": {
|
|
20472
20648
|
"bytesInOutput": 1998
|
|
@@ -20529,7 +20705,7 @@
|
|
|
20529
20705
|
"bytesInOutput": 1642
|
|
20530
20706
|
},
|
|
20531
20707
|
"src/runtime/child-pi.ts": {
|
|
20532
|
-
"bytesInOutput":
|
|
20708
|
+
"bytesInOutput": 45400
|
|
20533
20709
|
},
|
|
20534
20710
|
"src/runtime/heartbeat-gradient.ts": {
|
|
20535
20711
|
"bytesInOutput": 953
|
|
@@ -20556,7 +20732,7 @@
|
|
|
20556
20732
|
"bytesInOutput": 1909
|
|
20557
20733
|
},
|
|
20558
20734
|
"src/workflows/discover-workflows.ts": {
|
|
20559
|
-
"bytesInOutput":
|
|
20735
|
+
"bytesInOutput": 8611
|
|
20560
20736
|
},
|
|
20561
20737
|
"src/ui/render-coalescer.ts": {
|
|
20562
20738
|
"bytesInOutput": 1330
|
|
@@ -20607,13 +20783,13 @@
|
|
|
20607
20783
|
"bytesInOutput": 5482
|
|
20608
20784
|
},
|
|
20609
20785
|
"src/agents/discover-agents.ts": {
|
|
20610
|
-
"bytesInOutput":
|
|
20786
|
+
"bytesInOutput": 15325
|
|
20611
20787
|
},
|
|
20612
20788
|
"src/utils/git.ts": {
|
|
20613
20789
|
"bytesInOutput": 5972
|
|
20614
20790
|
},
|
|
20615
20791
|
"src/teams/discover-teams.ts": {
|
|
20616
|
-
"bytesInOutput":
|
|
20792
|
+
"bytesInOutput": 5720
|
|
20617
20793
|
},
|
|
20618
20794
|
"src/extension/autonomous-policy.ts": {
|
|
20619
20795
|
"bytesInOutput": 8919
|
|
@@ -20634,7 +20810,7 @@
|
|
|
20634
20810
|
"bytesInOutput": 4392
|
|
20635
20811
|
},
|
|
20636
20812
|
"src/state/mailbox.ts": {
|
|
20637
|
-
"bytesInOutput":
|
|
20813
|
+
"bytesInOutput": 18400
|
|
20638
20814
|
},
|
|
20639
20815
|
"src/extension/help.ts": {
|
|
20640
20816
|
"bytesInOutput": 2863
|
|
@@ -20658,7 +20834,7 @@
|
|
|
20658
20834
|
"bytesInOutput": 1245
|
|
20659
20835
|
},
|
|
20660
20836
|
"src/extension/management.ts": {
|
|
20661
|
-
"bytesInOutput":
|
|
20837
|
+
"bytesInOutput": 20991
|
|
20662
20838
|
},
|
|
20663
20839
|
"src/extension/project-init.ts": {
|
|
20664
20840
|
"bytesInOutput": 5557
|
|
@@ -21444,7 +21620,7 @@
|
|
|
21444
21620
|
"bytesInOutput": 3922
|
|
21445
21621
|
},
|
|
21446
21622
|
"src/runtime/retry-executor.ts": {
|
|
21447
|
-
"bytesInOutput":
|
|
21623
|
+
"bytesInOutput": 2426
|
|
21448
21624
|
},
|
|
21449
21625
|
"src/runtime/task-runner/output-splitter.ts": {
|
|
21450
21626
|
"bytesInOutput": 3242
|
|
@@ -21498,7 +21674,7 @@
|
|
|
21498
21674
|
"bytesInOutput": 4999
|
|
21499
21675
|
},
|
|
21500
21676
|
"src/extension/knowledge-injection.ts": {
|
|
21501
|
-
"bytesInOutput":
|
|
21677
|
+
"bytesInOutput": 7863
|
|
21502
21678
|
},
|
|
21503
21679
|
"src/runtime/agent-memory.ts": {
|
|
21504
21680
|
"bytesInOutput": 2842
|
|
@@ -21519,7 +21695,7 @@
|
|
|
21519
21695
|
"bytesInOutput": 767
|
|
21520
21696
|
},
|
|
21521
21697
|
"src/runtime/task-runner/state-helpers.ts": {
|
|
21522
|
-
"bytesInOutput":
|
|
21698
|
+
"bytesInOutput": 2576
|
|
21523
21699
|
},
|
|
21524
21700
|
"src/runtime/task-runner/tail-read.ts": {
|
|
21525
21701
|
"bytesInOutput": 762
|
|
@@ -21534,7 +21710,7 @@
|
|
|
21534
21710
|
"bytesInOutput": 6123
|
|
21535
21711
|
},
|
|
21536
21712
|
"src/runtime/task-runner.ts": {
|
|
21537
|
-
"bytesInOutput":
|
|
21713
|
+
"bytesInOutput": 42554
|
|
21538
21714
|
},
|
|
21539
21715
|
"src/runtime/workflow-state.ts": {
|
|
21540
21716
|
"bytesInOutput": 2471
|
|
@@ -21552,10 +21728,10 @@
|
|
|
21552
21728
|
"bytesInOutput": 3398
|
|
21553
21729
|
},
|
|
21554
21730
|
"src/runtime/team-runner.ts": {
|
|
21555
|
-
"bytesInOutput":
|
|
21731
|
+
"bytesInOutput": 57383
|
|
21556
21732
|
},
|
|
21557
21733
|
"src/runtime/pipeline-runner.ts": {
|
|
21558
|
-
"bytesInOutput":
|
|
21734
|
+
"bytesInOutput": 12070
|
|
21559
21735
|
},
|
|
21560
21736
|
"src/state/run-metrics.ts": {
|
|
21561
21737
|
"bytesInOutput": 1508
|
|
@@ -21612,7 +21788,7 @@
|
|
|
21612
21788
|
"bytesInOutput": 34875
|
|
21613
21789
|
},
|
|
21614
21790
|
"src/extension/team-tool.ts": {
|
|
21615
|
-
"bytesInOutput":
|
|
21791
|
+
"bytesInOutput": 35616
|
|
21616
21792
|
},
|
|
21617
21793
|
"src/ui/run-action-dispatcher.ts": {
|
|
21618
21794
|
"bytesInOutput": 4137
|
|
@@ -21753,7 +21929,7 @@
|
|
|
21753
21929
|
"bytesInOutput": 3150
|
|
21754
21930
|
},
|
|
21755
21931
|
"src/extension/register.ts": {
|
|
21756
|
-
"bytesInOutput":
|
|
21932
|
+
"bytesInOutput": 45364
|
|
21757
21933
|
},
|
|
21758
21934
|
"src/runtime/batch-barrier.ts": {
|
|
21759
21935
|
"bytesInOutput": 3060
|
|
@@ -21797,6 +21973,27 @@
|
|
|
21797
21973
|
"src/extension/crew-shortcuts.ts": {
|
|
21798
21974
|
"bytesInOutput": 1204
|
|
21799
21975
|
},
|
|
21976
|
+
"src/extension/crew-vibes/config.ts": {
|
|
21977
|
+
"bytesInOutput": 5220
|
|
21978
|
+
},
|
|
21979
|
+
"src/extension/crew-vibes/font-detect.ts": {
|
|
21980
|
+
"bytesInOutput": 1467
|
|
21981
|
+
},
|
|
21982
|
+
"src/extension/crew-vibes/provider-usage.ts": {
|
|
21983
|
+
"bytesInOutput": 9012
|
|
21984
|
+
},
|
|
21985
|
+
"src/extension/crew-vibes/figures.ts": {
|
|
21986
|
+
"bytesInOutput": 1218
|
|
21987
|
+
},
|
|
21988
|
+
"src/extension/crew-vibes/render.ts": {
|
|
21989
|
+
"bytesInOutput": 5773
|
|
21990
|
+
},
|
|
21991
|
+
"src/extension/crew-vibes/speed.ts": {
|
|
21992
|
+
"bytesInOutput": 6470
|
|
21993
|
+
},
|
|
21994
|
+
"src/extension/crew-vibes/index.ts": {
|
|
21995
|
+
"bytesInOutput": 10666
|
|
21996
|
+
},
|
|
21800
21997
|
"src/extension/cross-extension-rpc.ts": {
|
|
21801
21998
|
"bytesInOutput": 8532
|
|
21802
21999
|
},
|
|
@@ -21831,7 +22028,7 @@
|
|
|
21831
22028
|
"bytesInOutput": 81
|
|
21832
22029
|
}
|
|
21833
22030
|
},
|
|
21834
|
-
"bytes":
|
|
22031
|
+
"bytes": 3147196
|
|
21835
22032
|
}
|
|
21836
22033
|
}
|
|
21837
22034
|
}
|