@hyperdrive.bot/gut 0.1.3

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.
Files changed (87) hide show
  1. package/README.md +809 -0
  2. package/bin/dev +16 -0
  3. package/bin/run +5 -0
  4. package/dist/base-command.d.ts +21 -0
  5. package/dist/base-command.js +110 -0
  6. package/dist/commands/add.d.ts +13 -0
  7. package/dist/commands/add.js +73 -0
  8. package/dist/commands/affected.d.ts +23 -0
  9. package/dist/commands/affected.js +326 -0
  10. package/dist/commands/audit.d.ts +33 -0
  11. package/dist/commands/audit.js +593 -0
  12. package/dist/commands/back.d.ts +6 -0
  13. package/dist/commands/back.js +29 -0
  14. package/dist/commands/commit.d.ts +11 -0
  15. package/dist/commands/commit.js +113 -0
  16. package/dist/commands/context.d.ts +6 -0
  17. package/dist/commands/context.js +36 -0
  18. package/dist/commands/contexts.d.ts +7 -0
  19. package/dist/commands/contexts.js +92 -0
  20. package/dist/commands/deps.d.ts +10 -0
  21. package/dist/commands/deps.js +104 -0
  22. package/dist/commands/entity/add.d.ts +16 -0
  23. package/dist/commands/entity/add.js +105 -0
  24. package/dist/commands/entity/clone-all.d.ts +17 -0
  25. package/dist/commands/entity/clone-all.js +135 -0
  26. package/dist/commands/entity/clone.d.ts +15 -0
  27. package/dist/commands/entity/clone.js +109 -0
  28. package/dist/commands/entity/list.d.ts +11 -0
  29. package/dist/commands/entity/list.js +82 -0
  30. package/dist/commands/entity/remove.d.ts +12 -0
  31. package/dist/commands/entity/remove.js +58 -0
  32. package/dist/commands/focus.d.ts +19 -0
  33. package/dist/commands/focus.js +139 -0
  34. package/dist/commands/graph.d.ts +18 -0
  35. package/dist/commands/graph.js +238 -0
  36. package/dist/commands/init.d.ts +11 -0
  37. package/dist/commands/init.js +84 -0
  38. package/dist/commands/insights.d.ts +21 -0
  39. package/dist/commands/insights.js +434 -0
  40. package/dist/commands/patterns.d.ts +40 -0
  41. package/dist/commands/patterns.js +412 -0
  42. package/dist/commands/pull.d.ts +11 -0
  43. package/dist/commands/pull.js +121 -0
  44. package/dist/commands/push.d.ts +11 -0
  45. package/dist/commands/push.js +101 -0
  46. package/dist/commands/quick-setup.d.ts +20 -0
  47. package/dist/commands/quick-setup.js +422 -0
  48. package/dist/commands/recent.d.ts +9 -0
  49. package/dist/commands/recent.js +55 -0
  50. package/dist/commands/related.d.ts +23 -0
  51. package/dist/commands/related.js +257 -0
  52. package/dist/commands/repos.d.ts +14 -0
  53. package/dist/commands/repos.js +185 -0
  54. package/dist/commands/stack.d.ts +10 -0
  55. package/dist/commands/stack.js +83 -0
  56. package/dist/commands/status.d.ts +14 -0
  57. package/dist/commands/status.js +246 -0
  58. package/dist/commands/sync.d.ts +11 -0
  59. package/dist/commands/sync.js +142 -0
  60. package/dist/commands/unfocus.d.ts +6 -0
  61. package/dist/commands/unfocus.js +23 -0
  62. package/dist/commands/used-by.d.ts +10 -0
  63. package/dist/commands/used-by.js +111 -0
  64. package/dist/commands/workspace.d.ts +20 -0
  65. package/dist/commands/workspace.js +365 -0
  66. package/dist/index.d.ts +1 -0
  67. package/dist/index.js +5 -0
  68. package/dist/models/entity.model.d.ts +81 -0
  69. package/dist/models/entity.model.js +2 -0
  70. package/dist/services/config.service.d.ts +34 -0
  71. package/dist/services/config.service.js +230 -0
  72. package/dist/services/entity.service.d.ts +19 -0
  73. package/dist/services/entity.service.js +130 -0
  74. package/dist/services/focus.service.d.ts +70 -0
  75. package/dist/services/focus.service.js +587 -0
  76. package/dist/services/git.service.d.ts +37 -0
  77. package/dist/services/git.service.js +180 -0
  78. package/dist/utils/display.d.ts +25 -0
  79. package/dist/utils/display.js +150 -0
  80. package/dist/utils/filesystem.d.ts +32 -0
  81. package/dist/utils/filesystem.js +220 -0
  82. package/dist/utils/index.d.ts +13 -0
  83. package/dist/utils/index.js +18 -0
  84. package/dist/utils/validation.d.ts +22 -0
  85. package/dist/utils/validation.js +196 -0
  86. package/oclif.manifest.json +1463 -0
  87. package/package.json +76 -0
@@ -0,0 +1,1463 @@
1
+ {
2
+ "commands": {
3
+ "add": {
4
+ "aliases": [],
5
+ "args": {
6
+ "path": {
7
+ "default": ".",
8
+ "description": "Path(s) to stage",
9
+ "name": "path",
10
+ "required": false
11
+ }
12
+ },
13
+ "description": "Stage changes in focused entities",
14
+ "examples": [
15
+ "<%= config.bin %> <%= command.id %>",
16
+ "<%= config.bin %> <%= command.id %> .",
17
+ "<%= config.bin %> <%= command.id %> src/",
18
+ "<%= config.bin %> <%= command.id %> --all"
19
+ ],
20
+ "flags": {
21
+ "all": {
22
+ "char": "A",
23
+ "description": "Stage all changes (equivalent to git add -A)",
24
+ "name": "all",
25
+ "allowNo": false,
26
+ "type": "boolean"
27
+ },
28
+ "patch": {
29
+ "char": "p",
30
+ "description": "Interactive staging",
31
+ "name": "patch",
32
+ "allowNo": false,
33
+ "type": "boolean"
34
+ }
35
+ },
36
+ "hasDynamicHelp": false,
37
+ "hiddenAliases": [],
38
+ "id": "add",
39
+ "pluginAlias": "@hyperdrive.bot/gut",
40
+ "pluginName": "@hyperdrive.bot/gut",
41
+ "pluginType": "core",
42
+ "strict": true,
43
+ "isESM": false,
44
+ "relativePath": [
45
+ "dist",
46
+ "commands",
47
+ "add.js"
48
+ ]
49
+ },
50
+ "affected": {
51
+ "aliases": [],
52
+ "args": {
53
+ "entity": {
54
+ "description": "Entity to analyze (uses current focus if not provided)",
55
+ "name": "entity",
56
+ "required": false
57
+ }
58
+ },
59
+ "description": "Detect entities potentially affected by changes in current focus",
60
+ "examples": [
61
+ "<%= config.bin %> <%= command.id %>",
62
+ "<%= config.bin %> <%= command.id %> my-app",
63
+ "<%= config.bin %> <%= command.id %> --since HEAD~5",
64
+ "<%= config.bin %> <%= command.id %> --include-tests"
65
+ ],
66
+ "flags": {
67
+ "since": {
68
+ "char": "s",
69
+ "description": "Git reference to compare against",
70
+ "name": "since",
71
+ "default": "HEAD~1",
72
+ "hasDynamicHelp": false,
73
+ "multiple": false,
74
+ "type": "option"
75
+ },
76
+ "include-tests": {
77
+ "description": "Include test file changes in analysis",
78
+ "name": "include-tests",
79
+ "allowNo": false,
80
+ "type": "boolean"
81
+ },
82
+ "include-docs": {
83
+ "description": "Include documentation changes in analysis",
84
+ "name": "include-docs",
85
+ "allowNo": false,
86
+ "type": "boolean"
87
+ },
88
+ "verbose": {
89
+ "char": "v",
90
+ "description": "Show detailed analysis",
91
+ "name": "verbose",
92
+ "allowNo": false,
93
+ "type": "boolean"
94
+ }
95
+ },
96
+ "hasDynamicHelp": false,
97
+ "hiddenAliases": [],
98
+ "id": "affected",
99
+ "pluginAlias": "@hyperdrive.bot/gut",
100
+ "pluginName": "@hyperdrive.bot/gut",
101
+ "pluginType": "core",
102
+ "strict": true,
103
+ "isESM": false,
104
+ "relativePath": [
105
+ "dist",
106
+ "commands",
107
+ "affected.js"
108
+ ]
109
+ },
110
+ "audit": {
111
+ "aliases": [],
112
+ "args": {},
113
+ "description": "Access and change audit across workspace",
114
+ "examples": [
115
+ "<%= config.bin %> <%= command.id %>",
116
+ "<%= config.bin %> <%= command.id %> --entity mindtools",
117
+ "<%= config.bin %> <%= command.id %> --security",
118
+ "<%= config.bin %> <%= command.id %> --compliance"
119
+ ],
120
+ "flags": {
121
+ "entity": {
122
+ "char": "e",
123
+ "description": "audit specific entity",
124
+ "name": "entity",
125
+ "hasDynamicHelp": false,
126
+ "multiple": false,
127
+ "type": "option"
128
+ },
129
+ "security": {
130
+ "char": "s",
131
+ "description": "focus on security audit",
132
+ "name": "security",
133
+ "allowNo": false,
134
+ "type": "boolean"
135
+ },
136
+ "compliance": {
137
+ "char": "c",
138
+ "description": "focus on compliance audit",
139
+ "name": "compliance",
140
+ "allowNo": false,
141
+ "type": "boolean"
142
+ },
143
+ "access": {
144
+ "char": "a",
145
+ "description": "audit access patterns and permissions",
146
+ "name": "access",
147
+ "allowNo": false,
148
+ "type": "boolean"
149
+ },
150
+ "changes": {
151
+ "description": "audit recent changes and activity",
152
+ "name": "changes",
153
+ "allowNo": false,
154
+ "type": "boolean"
155
+ },
156
+ "json": {
157
+ "description": "output as JSON",
158
+ "name": "json",
159
+ "allowNo": false,
160
+ "type": "boolean"
161
+ }
162
+ },
163
+ "hasDynamicHelp": false,
164
+ "hiddenAliases": [],
165
+ "id": "audit",
166
+ "pluginAlias": "@hyperdrive.bot/gut",
167
+ "pluginName": "@hyperdrive.bot/gut",
168
+ "pluginType": "core",
169
+ "strict": true,
170
+ "isESM": false,
171
+ "relativePath": [
172
+ "dist",
173
+ "commands",
174
+ "audit.js"
175
+ ]
176
+ },
177
+ "back": {
178
+ "aliases": [],
179
+ "args": {},
180
+ "description": "Navigate back to the previous focus",
181
+ "examples": [
182
+ "<%= config.bin %> <%= command.id %>"
183
+ ],
184
+ "flags": {},
185
+ "hasDynamicHelp": false,
186
+ "hiddenAliases": [],
187
+ "id": "back",
188
+ "pluginAlias": "@hyperdrive.bot/gut",
189
+ "pluginName": "@hyperdrive.bot/gut",
190
+ "pluginType": "core",
191
+ "strict": true,
192
+ "isESM": false,
193
+ "relativePath": [
194
+ "dist",
195
+ "commands",
196
+ "back.js"
197
+ ]
198
+ },
199
+ "commit": {
200
+ "aliases": [],
201
+ "args": {},
202
+ "description": "Commit changes in focused repositories",
203
+ "examples": [
204
+ "<%= config.bin %> <%= command.id %> -m \"Fix bug\"",
205
+ "<%= config.bin %> <%= command.id %> --message \"Add feature\"",
206
+ "<%= config.bin %> <%= command.id %>"
207
+ ],
208
+ "flags": {
209
+ "message": {
210
+ "char": "m",
211
+ "description": "Commit message",
212
+ "name": "message",
213
+ "required": false,
214
+ "hasDynamicHelp": false,
215
+ "multiple": false,
216
+ "type": "option"
217
+ },
218
+ "all": {
219
+ "char": "a",
220
+ "description": "Stage all changes before committing",
221
+ "name": "all",
222
+ "allowNo": false,
223
+ "type": "boolean"
224
+ },
225
+ "amend": {
226
+ "description": "Amend the previous commit",
227
+ "name": "amend",
228
+ "allowNo": false,
229
+ "type": "boolean"
230
+ }
231
+ },
232
+ "hasDynamicHelp": false,
233
+ "hiddenAliases": [],
234
+ "id": "commit",
235
+ "pluginAlias": "@hyperdrive.bot/gut",
236
+ "pluginName": "@hyperdrive.bot/gut",
237
+ "pluginType": "core",
238
+ "strict": true,
239
+ "isESM": false,
240
+ "relativePath": [
241
+ "dist",
242
+ "commands",
243
+ "commit.js"
244
+ ]
245
+ },
246
+ "context": {
247
+ "aliases": [],
248
+ "args": {},
249
+ "description": "Show current focus context with entity details",
250
+ "examples": [
251
+ "<%= config.bin %> <%= command.id %>"
252
+ ],
253
+ "flags": {},
254
+ "hasDynamicHelp": false,
255
+ "hiddenAliases": [],
256
+ "id": "context",
257
+ "pluginAlias": "@hyperdrive.bot/gut",
258
+ "pluginName": "@hyperdrive.bot/gut",
259
+ "pluginType": "core",
260
+ "strict": true,
261
+ "isESM": false,
262
+ "relativePath": [
263
+ "dist",
264
+ "commands",
265
+ "context.js"
266
+ ]
267
+ },
268
+ "contexts": {
269
+ "aliases": [],
270
+ "args": {},
271
+ "description": "List all available contexts and focus history",
272
+ "examples": [
273
+ "<%= config.bin %> <%= command.id %>"
274
+ ],
275
+ "flags": {},
276
+ "hasDynamicHelp": false,
277
+ "hiddenAliases": [],
278
+ "id": "contexts",
279
+ "pluginAlias": "@hyperdrive.bot/gut",
280
+ "pluginName": "@hyperdrive.bot/gut",
281
+ "pluginType": "core",
282
+ "strict": true,
283
+ "isESM": false,
284
+ "relativePath": [
285
+ "dist",
286
+ "commands",
287
+ "contexts.js"
288
+ ]
289
+ },
290
+ "deps": {
291
+ "aliases": [],
292
+ "args": {
293
+ "entity": {
294
+ "description": "Entity name to analyze dependencies for",
295
+ "name": "entity",
296
+ "required": false
297
+ }
298
+ },
299
+ "description": "Show dependencies of current focus or specified entity",
300
+ "examples": [
301
+ "<%= config.bin %> <%= command.id %>",
302
+ "<%= config.bin %> <%= command.id %> mindtools"
303
+ ],
304
+ "flags": {},
305
+ "hasDynamicHelp": false,
306
+ "hiddenAliases": [],
307
+ "id": "deps",
308
+ "pluginAlias": "@hyperdrive.bot/gut",
309
+ "pluginName": "@hyperdrive.bot/gut",
310
+ "pluginType": "core",
311
+ "strict": true,
312
+ "isESM": false,
313
+ "relativePath": [
314
+ "dist",
315
+ "commands",
316
+ "deps.js"
317
+ ]
318
+ },
319
+ "focus": {
320
+ "aliases": [],
321
+ "args": {
322
+ "entityTypeOrName": {
323
+ "description": "Entity type (client/prospect/company/initiative) or entity name",
324
+ "name": "entityTypeOrName",
325
+ "required": false
326
+ },
327
+ "entityName": {
328
+ "description": "Entity name (when first arg is entity type)",
329
+ "name": "entityName",
330
+ "required": false
331
+ }
332
+ },
333
+ "description": "Set focus on one or more entities with optional type and mode",
334
+ "examples": [
335
+ "<%= config.bin %> <%= command.id %> my-app",
336
+ "<%= config.bin %> <%= command.id %> client mindtools",
337
+ "<%= config.bin %> <%= command.id %> client mindtools --mode delivery",
338
+ "<%= config.bin %> <%= command.id %> prospect jazida --mode research",
339
+ "<%= config.bin %> <%= command.id %> my-app auth-service",
340
+ "<%= config.bin %> <%= command.id %> --clear"
341
+ ],
342
+ "flags": {
343
+ "clear": {
344
+ "char": "c",
345
+ "description": "clear current focus",
346
+ "exclusive": [
347
+ "add",
348
+ "mode"
349
+ ],
350
+ "name": "clear",
351
+ "allowNo": false,
352
+ "type": "boolean"
353
+ },
354
+ "add": {
355
+ "char": "a",
356
+ "description": "add to current focus instead of replacing",
357
+ "name": "add",
358
+ "allowNo": false,
359
+ "type": "boolean"
360
+ },
361
+ "mode": {
362
+ "char": "m",
363
+ "description": "focus mode (delivery, strategy, audit, debug, research, proposal)",
364
+ "name": "mode",
365
+ "hasDynamicHelp": false,
366
+ "multiple": false,
367
+ "options": [
368
+ "delivery",
369
+ "strategy",
370
+ "audit",
371
+ "debug",
372
+ "research",
373
+ "proposal"
374
+ ],
375
+ "type": "option"
376
+ },
377
+ "duration": {
378
+ "char": "d",
379
+ "description": "focus duration (e.g., 2h, 90m)",
380
+ "name": "duration",
381
+ "hasDynamicHelp": false,
382
+ "multiple": false,
383
+ "type": "option"
384
+ },
385
+ "remember": {
386
+ "char": "r",
387
+ "description": "remember current focus before switching",
388
+ "name": "remember",
389
+ "allowNo": false,
390
+ "type": "boolean"
391
+ }
392
+ },
393
+ "hasDynamicHelp": false,
394
+ "hiddenAliases": [],
395
+ "id": "focus",
396
+ "pluginAlias": "@hyperdrive.bot/gut",
397
+ "pluginName": "@hyperdrive.bot/gut",
398
+ "pluginType": "core",
399
+ "strict": false,
400
+ "isESM": false,
401
+ "relativePath": [
402
+ "dist",
403
+ "commands",
404
+ "focus.js"
405
+ ]
406
+ },
407
+ "graph": {
408
+ "aliases": [],
409
+ "args": {},
410
+ "description": "Visualize repository relationships and dependencies",
411
+ "examples": [
412
+ "<%= config.bin %> <%= command.id %>",
413
+ "<%= config.bin %> <%= command.id %> --format ascii",
414
+ "<%= config.bin %> <%= command.id %> --focus-only"
415
+ ],
416
+ "flags": {
417
+ "format": {
418
+ "char": "f",
419
+ "description": "output format",
420
+ "name": "format",
421
+ "default": "ascii",
422
+ "hasDynamicHelp": false,
423
+ "multiple": false,
424
+ "options": [
425
+ "ascii",
426
+ "dot",
427
+ "json"
428
+ ],
429
+ "type": "option"
430
+ },
431
+ "focus-only": {
432
+ "description": "show only focused entities and their relationships",
433
+ "name": "focus-only",
434
+ "allowNo": false,
435
+ "type": "boolean"
436
+ },
437
+ "depth": {
438
+ "char": "d",
439
+ "description": "maximum depth of relationships to show",
440
+ "name": "depth",
441
+ "default": 2,
442
+ "hasDynamicHelp": false,
443
+ "multiple": false,
444
+ "type": "option"
445
+ }
446
+ },
447
+ "hasDynamicHelp": false,
448
+ "hiddenAliases": [],
449
+ "id": "graph",
450
+ "pluginAlias": "@hyperdrive.bot/gut",
451
+ "pluginName": "@hyperdrive.bot/gut",
452
+ "pluginType": "core",
453
+ "strict": true,
454
+ "isESM": false,
455
+ "relativePath": [
456
+ "dist",
457
+ "commands",
458
+ "graph.js"
459
+ ]
460
+ },
461
+ "init": {
462
+ "aliases": [],
463
+ "args": {},
464
+ "description": "Initialize a gut workspace",
465
+ "examples": [
466
+ "<%= config.bin %> <%= command.id %>",
467
+ "<%= config.bin %> <%= command.id %> --force"
468
+ ],
469
+ "flags": {
470
+ "force": {
471
+ "char": "f",
472
+ "description": "force initialization even if already initialized",
473
+ "name": "force",
474
+ "allowNo": false,
475
+ "type": "boolean"
476
+ },
477
+ "workspace": {
478
+ "char": "w",
479
+ "description": "workspace root directory",
480
+ "name": "workspace",
481
+ "default": "/builds/JOkrpDV8M/0/dev_squad/repo/cli/gut",
482
+ "hasDynamicHelp": false,
483
+ "multiple": false,
484
+ "type": "option"
485
+ }
486
+ },
487
+ "hasDynamicHelp": false,
488
+ "hiddenAliases": [],
489
+ "id": "init",
490
+ "pluginAlias": "@hyperdrive.bot/gut",
491
+ "pluginName": "@hyperdrive.bot/gut",
492
+ "pluginType": "core",
493
+ "strict": true,
494
+ "isESM": false,
495
+ "relativePath": [
496
+ "dist",
497
+ "commands",
498
+ "init.js"
499
+ ]
500
+ },
501
+ "insights": {
502
+ "aliases": [],
503
+ "args": {},
504
+ "description": "Display analytics and insights about the workspace",
505
+ "examples": [
506
+ "<%= config.bin %> <%= command.id %>",
507
+ "<%= config.bin %> <%= command.id %> --detailed",
508
+ "<%= config.bin %> <%= command.id %> --format json"
509
+ ],
510
+ "flags": {
511
+ "detailed": {
512
+ "char": "d",
513
+ "description": "Show detailed statistics for each entity",
514
+ "name": "detailed",
515
+ "allowNo": false,
516
+ "type": "boolean"
517
+ },
518
+ "format": {
519
+ "char": "f",
520
+ "description": "Output format",
521
+ "name": "format",
522
+ "default": "table",
523
+ "hasDynamicHelp": false,
524
+ "multiple": false,
525
+ "options": [
526
+ "table",
527
+ "json",
528
+ "summary"
529
+ ],
530
+ "type": "option"
531
+ },
532
+ "include-ignored": {
533
+ "description": "Include gitignored files in statistics",
534
+ "name": "include-ignored",
535
+ "allowNo": false,
536
+ "type": "boolean"
537
+ }
538
+ },
539
+ "hasDynamicHelp": false,
540
+ "hiddenAliases": [],
541
+ "id": "insights",
542
+ "pluginAlias": "@hyperdrive.bot/gut",
543
+ "pluginName": "@hyperdrive.bot/gut",
544
+ "pluginType": "core",
545
+ "strict": true,
546
+ "isESM": false,
547
+ "relativePath": [
548
+ "dist",
549
+ "commands",
550
+ "insights.js"
551
+ ]
552
+ },
553
+ "patterns": {
554
+ "aliases": [],
555
+ "args": {},
556
+ "description": "Show learned patterns for current context or entities",
557
+ "examples": [
558
+ "<%= config.bin %> <%= command.id %>",
559
+ "<%= config.bin %> <%= command.id %> --entity mindtools",
560
+ "<%= config.bin %> <%= command.id %> --type client",
561
+ "<%= config.bin %> <%= command.id %> --mode strategy"
562
+ ],
563
+ "flags": {
564
+ "entity": {
565
+ "char": "e",
566
+ "description": "show patterns for specific entity",
567
+ "name": "entity",
568
+ "hasDynamicHelp": false,
569
+ "multiple": false,
570
+ "type": "option"
571
+ },
572
+ "type": {
573
+ "char": "t",
574
+ "description": "show patterns for entity type",
575
+ "name": "type",
576
+ "hasDynamicHelp": false,
577
+ "multiple": false,
578
+ "options": [
579
+ "client",
580
+ "prospect",
581
+ "company",
582
+ "initiative",
583
+ "system"
584
+ ],
585
+ "type": "option"
586
+ },
587
+ "mode": {
588
+ "char": "m",
589
+ "description": "show patterns for focus mode",
590
+ "name": "mode",
591
+ "hasDynamicHelp": false,
592
+ "multiple": false,
593
+ "options": [
594
+ "delivery",
595
+ "strategy",
596
+ "audit",
597
+ "debug",
598
+ "research",
599
+ "proposal"
600
+ ],
601
+ "type": "option"
602
+ },
603
+ "json": {
604
+ "description": "output as JSON",
605
+ "name": "json",
606
+ "allowNo": false,
607
+ "type": "boolean"
608
+ }
609
+ },
610
+ "hasDynamicHelp": false,
611
+ "hiddenAliases": [],
612
+ "id": "patterns",
613
+ "pluginAlias": "@hyperdrive.bot/gut",
614
+ "pluginName": "@hyperdrive.bot/gut",
615
+ "pluginType": "core",
616
+ "strict": true,
617
+ "isESM": false,
618
+ "relativePath": [
619
+ "dist",
620
+ "commands",
621
+ "patterns.js"
622
+ ]
623
+ },
624
+ "pull": {
625
+ "aliases": [],
626
+ "args": {},
627
+ "description": "Pull changes from remote repositories",
628
+ "examples": [
629
+ "<%= config.bin %> <%= command.id %>",
630
+ "<%= config.bin %> <%= command.id %> --rebase",
631
+ "<%= config.bin %> <%= command.id %> --all"
632
+ ],
633
+ "flags": {
634
+ "rebase": {
635
+ "char": "r",
636
+ "description": "Rebase instead of merge",
637
+ "name": "rebase",
638
+ "allowNo": false,
639
+ "type": "boolean"
640
+ },
641
+ "all": {
642
+ "description": "Fetch all remotes",
643
+ "name": "all",
644
+ "allowNo": false,
645
+ "type": "boolean"
646
+ },
647
+ "no-commit": {
648
+ "description": "Perform merge but do not commit",
649
+ "name": "no-commit",
650
+ "allowNo": false,
651
+ "type": "boolean"
652
+ }
653
+ },
654
+ "hasDynamicHelp": false,
655
+ "hiddenAliases": [],
656
+ "id": "pull",
657
+ "pluginAlias": "@hyperdrive.bot/gut",
658
+ "pluginName": "@hyperdrive.bot/gut",
659
+ "pluginType": "core",
660
+ "strict": true,
661
+ "isESM": false,
662
+ "relativePath": [
663
+ "dist",
664
+ "commands",
665
+ "pull.js"
666
+ ]
667
+ },
668
+ "push": {
669
+ "aliases": [],
670
+ "args": {},
671
+ "description": "Push commits to remote repositories",
672
+ "examples": [
673
+ "<%= config.bin %> <%= command.id %>",
674
+ "<%= config.bin %> <%= command.id %> --force",
675
+ "<%= config.bin %> <%= command.id %> --set-upstream"
676
+ ],
677
+ "flags": {
678
+ "force": {
679
+ "char": "f",
680
+ "description": "Force push (use with caution)",
681
+ "name": "force",
682
+ "allowNo": false,
683
+ "type": "boolean"
684
+ },
685
+ "set-upstream": {
686
+ "char": "u",
687
+ "description": "Set upstream branch",
688
+ "name": "set-upstream",
689
+ "allowNo": false,
690
+ "type": "boolean"
691
+ },
692
+ "tags": {
693
+ "description": "Push tags",
694
+ "name": "tags",
695
+ "allowNo": false,
696
+ "type": "boolean"
697
+ }
698
+ },
699
+ "hasDynamicHelp": false,
700
+ "hiddenAliases": [],
701
+ "id": "push",
702
+ "pluginAlias": "@hyperdrive.bot/gut",
703
+ "pluginName": "@hyperdrive.bot/gut",
704
+ "pluginType": "core",
705
+ "strict": true,
706
+ "isESM": false,
707
+ "relativePath": [
708
+ "dist",
709
+ "commands",
710
+ "push.js"
711
+ ]
712
+ },
713
+ "quick-setup": {
714
+ "aliases": [],
715
+ "args": {},
716
+ "description": "Automated workspace setup based on common patterns",
717
+ "examples": [
718
+ "<%= config.bin %> <%= command.id %>",
719
+ "<%= config.bin %> <%= command.id %> --auto",
720
+ "<%= config.bin %> <%= command.id %> --profile monorepo",
721
+ "<%= config.bin %> <%= command.id %> --scan-depth 3"
722
+ ],
723
+ "flags": {
724
+ "auto": {
725
+ "char": "a",
726
+ "description": "Auto-detect and configure without prompts",
727
+ "name": "auto",
728
+ "allowNo": false,
729
+ "type": "boolean"
730
+ },
731
+ "profile": {
732
+ "char": "p",
733
+ "description": "Use specific setup profile",
734
+ "name": "profile",
735
+ "hasDynamicHelp": false,
736
+ "multiple": false,
737
+ "options": [
738
+ "monorepo",
739
+ "microservices",
740
+ "fullstack",
741
+ "library"
742
+ ],
743
+ "type": "option"
744
+ },
745
+ "scan-depth": {
746
+ "description": "Directory depth to scan for entities",
747
+ "name": "scan-depth",
748
+ "default": 2,
749
+ "hasDynamicHelp": false,
750
+ "multiple": false,
751
+ "type": "option"
752
+ },
753
+ "clone-missing": {
754
+ "description": "Clone missing repositories if found",
755
+ "name": "clone-missing",
756
+ "allowNo": false,
757
+ "type": "boolean"
758
+ }
759
+ },
760
+ "hasDynamicHelp": false,
761
+ "hiddenAliases": [],
762
+ "id": "quick-setup",
763
+ "pluginAlias": "@hyperdrive.bot/gut",
764
+ "pluginName": "@hyperdrive.bot/gut",
765
+ "pluginType": "core",
766
+ "strict": true,
767
+ "isESM": false,
768
+ "relativePath": [
769
+ "dist",
770
+ "commands",
771
+ "quick-setup.js"
772
+ ]
773
+ },
774
+ "recent": {
775
+ "aliases": [],
776
+ "args": {},
777
+ "description": "Show recent focus history",
778
+ "examples": [
779
+ "<%= config.bin %> <%= command.id %>",
780
+ "<%= config.bin %> <%= command.id %> --limit 10"
781
+ ],
782
+ "flags": {
783
+ "limit": {
784
+ "char": "l",
785
+ "description": "Number of recent items to show",
786
+ "name": "limit",
787
+ "default": 5,
788
+ "hasDynamicHelp": false,
789
+ "multiple": false,
790
+ "type": "option"
791
+ }
792
+ },
793
+ "hasDynamicHelp": false,
794
+ "hiddenAliases": [],
795
+ "id": "recent",
796
+ "pluginAlias": "@hyperdrive.bot/gut",
797
+ "pluginName": "@hyperdrive.bot/gut",
798
+ "pluginType": "core",
799
+ "strict": true,
800
+ "isESM": false,
801
+ "relativePath": [
802
+ "dist",
803
+ "commands",
804
+ "recent.js"
805
+ ]
806
+ },
807
+ "related": {
808
+ "aliases": [],
809
+ "args": {
810
+ "entity": {
811
+ "description": "Entity name (uses current focus if not provided)",
812
+ "name": "entity",
813
+ "required": false
814
+ }
815
+ },
816
+ "description": "Find entities related to a specific entity or current focus",
817
+ "examples": [
818
+ "<%= config.bin %> <%= command.id %> my-app",
819
+ "<%= config.bin %> <%= command.id %> --threshold 0.3",
820
+ "<%= config.bin %> <%= command.id %> --type dependencies"
821
+ ],
822
+ "flags": {
823
+ "threshold": {
824
+ "char": "t",
825
+ "description": "Minimum relation score (0-1)",
826
+ "name": "threshold",
827
+ "default": "0.2",
828
+ "hasDynamicHelp": false,
829
+ "multiple": false,
830
+ "type": "option"
831
+ },
832
+ "type": {
833
+ "description": "Type of relation to check",
834
+ "name": "type",
835
+ "default": "all",
836
+ "hasDynamicHelp": false,
837
+ "multiple": false,
838
+ "options": [
839
+ "all",
840
+ "dependencies",
841
+ "git",
842
+ "files"
843
+ ],
844
+ "type": "option"
845
+ },
846
+ "detailed": {
847
+ "char": "d",
848
+ "description": "Show detailed relation information",
849
+ "name": "detailed",
850
+ "allowNo": false,
851
+ "type": "boolean"
852
+ }
853
+ },
854
+ "hasDynamicHelp": false,
855
+ "hiddenAliases": [],
856
+ "id": "related",
857
+ "pluginAlias": "@hyperdrive.bot/gut",
858
+ "pluginName": "@hyperdrive.bot/gut",
859
+ "pluginType": "core",
860
+ "strict": true,
861
+ "isESM": false,
862
+ "relativePath": [
863
+ "dist",
864
+ "commands",
865
+ "related.js"
866
+ ]
867
+ },
868
+ "repos": {
869
+ "aliases": [],
870
+ "args": {},
871
+ "description": "List accessible repositories in the workspace",
872
+ "examples": [
873
+ "<%= config.bin %> <%= command.id %>",
874
+ "<%= config.bin %> <%= command.id %> --type client",
875
+ "<%= config.bin %> <%= command.id %> --status",
876
+ "<%= config.bin %> <%= command.id %> --json"
877
+ ],
878
+ "flags": {
879
+ "type": {
880
+ "char": "t",
881
+ "description": "filter by entity type",
882
+ "name": "type",
883
+ "hasDynamicHelp": false,
884
+ "multiple": false,
885
+ "options": [
886
+ "client",
887
+ "prospect",
888
+ "company",
889
+ "initiative",
890
+ "system",
891
+ "delivery",
892
+ "module",
893
+ "service",
894
+ "tool"
895
+ ],
896
+ "type": "option"
897
+ },
898
+ "status": {
899
+ "char": "s",
900
+ "description": "show git status for each repository",
901
+ "name": "status",
902
+ "allowNo": false,
903
+ "type": "boolean"
904
+ },
905
+ "json": {
906
+ "description": "output as JSON",
907
+ "name": "json",
908
+ "allowNo": false,
909
+ "type": "boolean"
910
+ },
911
+ "accessible": {
912
+ "char": "a",
913
+ "description": "show only accessible repositories (with valid paths)",
914
+ "name": "accessible",
915
+ "allowNo": false,
916
+ "type": "boolean"
917
+ }
918
+ },
919
+ "hasDynamicHelp": false,
920
+ "hiddenAliases": [],
921
+ "id": "repos",
922
+ "pluginAlias": "@hyperdrive.bot/gut",
923
+ "pluginName": "@hyperdrive.bot/gut",
924
+ "pluginType": "core",
925
+ "strict": true,
926
+ "isESM": false,
927
+ "relativePath": [
928
+ "dist",
929
+ "commands",
930
+ "repos.js"
931
+ ]
932
+ },
933
+ "stack": {
934
+ "aliases": [],
935
+ "args": {},
936
+ "description": "Show and manage the focus stack",
937
+ "examples": [
938
+ "<%= config.bin %> <%= command.id %>",
939
+ "<%= config.bin %> <%= command.id %> --clear"
940
+ ],
941
+ "flags": {
942
+ "clear": {
943
+ "char": "c",
944
+ "description": "clear the focus stack",
945
+ "name": "clear",
946
+ "allowNo": false,
947
+ "type": "boolean"
948
+ }
949
+ },
950
+ "hasDynamicHelp": false,
951
+ "hiddenAliases": [],
952
+ "id": "stack",
953
+ "pluginAlias": "@hyperdrive.bot/gut",
954
+ "pluginName": "@hyperdrive.bot/gut",
955
+ "pluginType": "core",
956
+ "strict": true,
957
+ "isESM": false,
958
+ "relativePath": [
959
+ "dist",
960
+ "commands",
961
+ "stack.js"
962
+ ]
963
+ },
964
+ "status": {
965
+ "aliases": [],
966
+ "args": {},
967
+ "description": "Show git status for focused entities",
968
+ "examples": [
969
+ "<%= config.bin %> <%= command.id %>",
970
+ "<%= config.bin %> <%= command.id %> --all",
971
+ "<%= config.bin %> <%= command.id %> --verbose"
972
+ ],
973
+ "flags": {
974
+ "all": {
975
+ "char": "a",
976
+ "description": "show status for all entities",
977
+ "name": "all",
978
+ "allowNo": false,
979
+ "type": "boolean"
980
+ },
981
+ "verbose": {
982
+ "char": "v",
983
+ "description": "show detailed status",
984
+ "name": "verbose",
985
+ "allowNo": false,
986
+ "type": "boolean"
987
+ },
988
+ "json": {
989
+ "description": "output as JSON",
990
+ "name": "json",
991
+ "allowNo": false,
992
+ "type": "boolean"
993
+ }
994
+ },
995
+ "hasDynamicHelp": false,
996
+ "hiddenAliases": [],
997
+ "id": "status",
998
+ "pluginAlias": "@hyperdrive.bot/gut",
999
+ "pluginName": "@hyperdrive.bot/gut",
1000
+ "pluginType": "core",
1001
+ "strict": true,
1002
+ "isESM": false,
1003
+ "relativePath": [
1004
+ "dist",
1005
+ "commands",
1006
+ "status.js"
1007
+ ]
1008
+ },
1009
+ "sync": {
1010
+ "aliases": [],
1011
+ "args": {},
1012
+ "description": "Synchronize repositories with remote (fetch, merge/rebase, push)",
1013
+ "examples": [
1014
+ "<%= config.bin %> <%= command.id %>",
1015
+ "<%= config.bin %> <%= command.id %> --rebase",
1016
+ "<%= config.bin %> <%= command.id %> --force"
1017
+ ],
1018
+ "flags": {
1019
+ "rebase": {
1020
+ "char": "r",
1021
+ "description": "Use rebase instead of merge",
1022
+ "name": "rebase",
1023
+ "allowNo": false,
1024
+ "type": "boolean"
1025
+ },
1026
+ "force": {
1027
+ "char": "f",
1028
+ "description": "Force push after sync",
1029
+ "name": "force",
1030
+ "allowNo": false,
1031
+ "type": "boolean"
1032
+ },
1033
+ "no-push": {
1034
+ "description": "Skip the push step",
1035
+ "name": "no-push",
1036
+ "allowNo": false,
1037
+ "type": "boolean"
1038
+ }
1039
+ },
1040
+ "hasDynamicHelp": false,
1041
+ "hiddenAliases": [],
1042
+ "id": "sync",
1043
+ "pluginAlias": "@hyperdrive.bot/gut",
1044
+ "pluginName": "@hyperdrive.bot/gut",
1045
+ "pluginType": "core",
1046
+ "strict": true,
1047
+ "isESM": false,
1048
+ "relativePath": [
1049
+ "dist",
1050
+ "commands",
1051
+ "sync.js"
1052
+ ]
1053
+ },
1054
+ "unfocus": {
1055
+ "aliases": [],
1056
+ "args": {},
1057
+ "description": "Clear the current focus",
1058
+ "examples": [
1059
+ "<%= config.bin %> <%= command.id %>"
1060
+ ],
1061
+ "flags": {},
1062
+ "hasDynamicHelp": false,
1063
+ "hiddenAliases": [],
1064
+ "id": "unfocus",
1065
+ "pluginAlias": "@hyperdrive.bot/gut",
1066
+ "pluginName": "@hyperdrive.bot/gut",
1067
+ "pluginType": "core",
1068
+ "strict": true,
1069
+ "isESM": false,
1070
+ "relativePath": [
1071
+ "dist",
1072
+ "commands",
1073
+ "unfocus.js"
1074
+ ]
1075
+ },
1076
+ "used-by": {
1077
+ "aliases": [],
1078
+ "args": {
1079
+ "entity": {
1080
+ "description": "Entity name to analyze usage for",
1081
+ "name": "entity",
1082
+ "required": false
1083
+ }
1084
+ },
1085
+ "description": "Show what entities depend on current focus or specified entity",
1086
+ "examples": [
1087
+ "<%= config.bin %> <%= command.id %>",
1088
+ "<%= config.bin %> <%= command.id %> api"
1089
+ ],
1090
+ "flags": {},
1091
+ "hasDynamicHelp": false,
1092
+ "hiddenAliases": [],
1093
+ "id": "used-by",
1094
+ "pluginAlias": "@hyperdrive.bot/gut",
1095
+ "pluginName": "@hyperdrive.bot/gut",
1096
+ "pluginType": "core",
1097
+ "strict": true,
1098
+ "isESM": false,
1099
+ "relativePath": [
1100
+ "dist",
1101
+ "commands",
1102
+ "used-by.js"
1103
+ ]
1104
+ },
1105
+ "workspace": {
1106
+ "aliases": [],
1107
+ "args": {
1108
+ "action": {
1109
+ "description": "Action to perform (init, structure, generate-metadata)",
1110
+ "name": "action",
1111
+ "options": [
1112
+ "init",
1113
+ "structure",
1114
+ "generate-metadata"
1115
+ ],
1116
+ "required": true
1117
+ }
1118
+ },
1119
+ "description": "Manage workspace structure and entity metadata",
1120
+ "examples": [
1121
+ "<%= config.bin %> <%= command.id %> init",
1122
+ "<%= config.bin %> <%= command.id %> structure",
1123
+ "<%= config.bin %> <%= command.id %> generate-metadata"
1124
+ ],
1125
+ "flags": {
1126
+ "force": {
1127
+ "char": "f",
1128
+ "description": "force overwrite existing files",
1129
+ "name": "force",
1130
+ "allowNo": false,
1131
+ "type": "boolean"
1132
+ },
1133
+ "entity-type": {
1134
+ "char": "t",
1135
+ "description": "entity type for metadata generation",
1136
+ "name": "entity-type",
1137
+ "hasDynamicHelp": false,
1138
+ "multiple": false,
1139
+ "options": [
1140
+ "client",
1141
+ "prospect",
1142
+ "company",
1143
+ "initiative",
1144
+ "system"
1145
+ ],
1146
+ "type": "option"
1147
+ }
1148
+ },
1149
+ "hasDynamicHelp": false,
1150
+ "hiddenAliases": [],
1151
+ "id": "workspace",
1152
+ "pluginAlias": "@hyperdrive.bot/gut",
1153
+ "pluginName": "@hyperdrive.bot/gut",
1154
+ "pluginType": "core",
1155
+ "strict": true,
1156
+ "isESM": false,
1157
+ "relativePath": [
1158
+ "dist",
1159
+ "commands",
1160
+ "workspace.js"
1161
+ ]
1162
+ },
1163
+ "entity:add": {
1164
+ "aliases": [],
1165
+ "args": {
1166
+ "type": {
1167
+ "description": "Entity type",
1168
+ "name": "type",
1169
+ "options": [
1170
+ "client",
1171
+ "prospect",
1172
+ "company",
1173
+ "initiative",
1174
+ "system",
1175
+ "delivery",
1176
+ "module",
1177
+ "service",
1178
+ "tool"
1179
+ ],
1180
+ "required": true
1181
+ },
1182
+ "name": {
1183
+ "description": "Entity name",
1184
+ "name": "name",
1185
+ "required": true
1186
+ }
1187
+ },
1188
+ "description": "Add a new entity to the workspace",
1189
+ "examples": [
1190
+ "<%= config.bin %> <%= command.id %> delivery my-app --path ./apps/my-app",
1191
+ "<%= config.bin %> <%= command.id %> module my-lib --path ./libs/my-lib --remote git@github.com:org/my-lib.git"
1192
+ ],
1193
+ "flags": {
1194
+ "path": {
1195
+ "char": "p",
1196
+ "description": "path to entity",
1197
+ "name": "path",
1198
+ "required": true,
1199
+ "hasDynamicHelp": false,
1200
+ "multiple": false,
1201
+ "type": "option"
1202
+ },
1203
+ "remote": {
1204
+ "char": "r",
1205
+ "description": "git remote URL",
1206
+ "name": "remote",
1207
+ "hasDynamicHelp": false,
1208
+ "multiple": false,
1209
+ "type": "option"
1210
+ },
1211
+ "description": {
1212
+ "char": "d",
1213
+ "description": "entity description",
1214
+ "name": "description",
1215
+ "hasDynamicHelp": false,
1216
+ "multiple": false,
1217
+ "type": "option"
1218
+ },
1219
+ "repo": {
1220
+ "description": "repository name (for GitLab/GitHub)",
1221
+ "name": "repo",
1222
+ "hasDynamicHelp": false,
1223
+ "multiple": false,
1224
+ "type": "option"
1225
+ }
1226
+ },
1227
+ "hasDynamicHelp": false,
1228
+ "hiddenAliases": [],
1229
+ "id": "entity:add",
1230
+ "pluginAlias": "@hyperdrive.bot/gut",
1231
+ "pluginName": "@hyperdrive.bot/gut",
1232
+ "pluginType": "core",
1233
+ "strict": true,
1234
+ "isESM": false,
1235
+ "relativePath": [
1236
+ "dist",
1237
+ "commands",
1238
+ "entity",
1239
+ "add.js"
1240
+ ]
1241
+ },
1242
+ "entity:clone-all": {
1243
+ "aliases": [],
1244
+ "args": {},
1245
+ "description": "Clone all configured entities from their repositories",
1246
+ "examples": [
1247
+ "<%= config.bin %> <%= command.id %>",
1248
+ "<%= config.bin %> <%= command.id %> --parallel",
1249
+ "<%= config.bin %> <%= command.id %> --branch develop",
1250
+ "<%= config.bin %> <%= command.id %> --skip-existing"
1251
+ ],
1252
+ "flags": {
1253
+ "branch": {
1254
+ "char": "b",
1255
+ "description": "Branch to clone for all entities",
1256
+ "name": "branch",
1257
+ "default": "main",
1258
+ "hasDynamicHelp": false,
1259
+ "multiple": false,
1260
+ "type": "option"
1261
+ },
1262
+ "depth": {
1263
+ "char": "d",
1264
+ "description": "Create shallow clones with specified depth",
1265
+ "name": "depth",
1266
+ "hasDynamicHelp": false,
1267
+ "multiple": false,
1268
+ "type": "option"
1269
+ },
1270
+ "parallel": {
1271
+ "char": "p",
1272
+ "description": "Clone entities in parallel",
1273
+ "name": "parallel",
1274
+ "allowNo": false,
1275
+ "type": "boolean"
1276
+ },
1277
+ "skip-existing": {
1278
+ "description": "Skip entities that already exist",
1279
+ "name": "skip-existing",
1280
+ "allowNo": false,
1281
+ "type": "boolean"
1282
+ },
1283
+ "force": {
1284
+ "char": "f",
1285
+ "description": "Force clone even if directories exist",
1286
+ "name": "force",
1287
+ "allowNo": false,
1288
+ "type": "boolean"
1289
+ }
1290
+ },
1291
+ "hasDynamicHelp": false,
1292
+ "hiddenAliases": [],
1293
+ "id": "entity:clone-all",
1294
+ "pluginAlias": "@hyperdrive.bot/gut",
1295
+ "pluginName": "@hyperdrive.bot/gut",
1296
+ "pluginType": "core",
1297
+ "strict": true,
1298
+ "isESM": false,
1299
+ "relativePath": [
1300
+ "dist",
1301
+ "commands",
1302
+ "entity",
1303
+ "clone-all.js"
1304
+ ]
1305
+ },
1306
+ "entity:clone": {
1307
+ "aliases": [],
1308
+ "args": {
1309
+ "name": {
1310
+ "description": "Name of the entity to clone",
1311
+ "name": "name",
1312
+ "required": true
1313
+ }
1314
+ },
1315
+ "description": "Clone a specific entity from its repository",
1316
+ "examples": [
1317
+ "<%= config.bin %> <%= command.id %> my-app",
1318
+ "<%= config.bin %> <%= command.id %> my-app --branch develop",
1319
+ "<%= config.bin %> <%= command.id %> my-app --depth 1"
1320
+ ],
1321
+ "flags": {
1322
+ "branch": {
1323
+ "char": "b",
1324
+ "description": "Branch to clone",
1325
+ "name": "branch",
1326
+ "default": "main",
1327
+ "hasDynamicHelp": false,
1328
+ "multiple": false,
1329
+ "type": "option"
1330
+ },
1331
+ "depth": {
1332
+ "char": "d",
1333
+ "description": "Create a shallow clone with specified depth",
1334
+ "name": "depth",
1335
+ "hasDynamicHelp": false,
1336
+ "multiple": false,
1337
+ "type": "option"
1338
+ },
1339
+ "path": {
1340
+ "char": "p",
1341
+ "description": "Custom path to clone to (relative to workspace)",
1342
+ "name": "path",
1343
+ "hasDynamicHelp": false,
1344
+ "multiple": false,
1345
+ "type": "option"
1346
+ },
1347
+ "force": {
1348
+ "char": "f",
1349
+ "description": "Force clone even if directory exists",
1350
+ "name": "force",
1351
+ "allowNo": false,
1352
+ "type": "boolean"
1353
+ }
1354
+ },
1355
+ "hasDynamicHelp": false,
1356
+ "hiddenAliases": [],
1357
+ "id": "entity:clone",
1358
+ "pluginAlias": "@hyperdrive.bot/gut",
1359
+ "pluginName": "@hyperdrive.bot/gut",
1360
+ "pluginType": "core",
1361
+ "strict": true,
1362
+ "isESM": false,
1363
+ "relativePath": [
1364
+ "dist",
1365
+ "commands",
1366
+ "entity",
1367
+ "clone.js"
1368
+ ]
1369
+ },
1370
+ "entity:list": {
1371
+ "aliases": [],
1372
+ "args": {},
1373
+ "description": "List all configured entities",
1374
+ "examples": [
1375
+ "<%= config.bin %> <%= command.id %>",
1376
+ "<%= config.bin %> <%= command.id %> --type delivery",
1377
+ "<%= config.bin %> <%= command.id %> --json"
1378
+ ],
1379
+ "flags": {
1380
+ "type": {
1381
+ "char": "t",
1382
+ "description": "filter by entity type",
1383
+ "name": "type",
1384
+ "hasDynamicHelp": false,
1385
+ "multiple": false,
1386
+ "options": [
1387
+ "delivery",
1388
+ "module",
1389
+ "service",
1390
+ "tool"
1391
+ ],
1392
+ "type": "option"
1393
+ },
1394
+ "json": {
1395
+ "description": "output as JSON",
1396
+ "name": "json",
1397
+ "allowNo": false,
1398
+ "type": "boolean"
1399
+ },
1400
+ "verbose": {
1401
+ "char": "v",
1402
+ "description": "show detailed information",
1403
+ "name": "verbose",
1404
+ "allowNo": false,
1405
+ "type": "boolean"
1406
+ }
1407
+ },
1408
+ "hasDynamicHelp": false,
1409
+ "hiddenAliases": [],
1410
+ "id": "entity:list",
1411
+ "pluginAlias": "@hyperdrive.bot/gut",
1412
+ "pluginName": "@hyperdrive.bot/gut",
1413
+ "pluginType": "core",
1414
+ "strict": true,
1415
+ "isESM": false,
1416
+ "relativePath": [
1417
+ "dist",
1418
+ "commands",
1419
+ "entity",
1420
+ "list.js"
1421
+ ]
1422
+ },
1423
+ "entity:remove": {
1424
+ "aliases": [],
1425
+ "args": {
1426
+ "name": {
1427
+ "description": "Entity name to remove",
1428
+ "name": "name",
1429
+ "required": true
1430
+ }
1431
+ },
1432
+ "description": "Remove an entity from the workspace configuration",
1433
+ "examples": [
1434
+ "<%= config.bin %> <%= command.id %> my-app",
1435
+ "<%= config.bin %> <%= command.id %> my-app --force"
1436
+ ],
1437
+ "flags": {
1438
+ "force": {
1439
+ "char": "f",
1440
+ "description": "skip confirmation prompt",
1441
+ "name": "force",
1442
+ "allowNo": false,
1443
+ "type": "boolean"
1444
+ }
1445
+ },
1446
+ "hasDynamicHelp": false,
1447
+ "hiddenAliases": [],
1448
+ "id": "entity:remove",
1449
+ "pluginAlias": "@hyperdrive.bot/gut",
1450
+ "pluginName": "@hyperdrive.bot/gut",
1451
+ "pluginType": "core",
1452
+ "strict": true,
1453
+ "isESM": false,
1454
+ "relativePath": [
1455
+ "dist",
1456
+ "commands",
1457
+ "entity",
1458
+ "remove.js"
1459
+ ]
1460
+ }
1461
+ },
1462
+ "version": "0.1.3"
1463
+ }