@proletariat/cli 0.3.69 → 0.3.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/session/health.d.ts +11 -0
- package/dist/commands/session/health.js +1 -1
- package/dist/commands/session/health.js.map +1 -1
- package/dist/lib/execution/runners/cloud.d.ts +16 -0
- package/dist/lib/execution/runners/cloud.js +88 -0
- package/dist/lib/execution/runners/cloud.js.map +1 -0
- package/dist/lib/execution/runners/devcontainer-terminal.d.ts +13 -0
- package/dist/lib/execution/runners/devcontainer-terminal.js +184 -0
- package/dist/lib/execution/runners/devcontainer-terminal.js.map +1 -0
- package/dist/lib/execution/runners/devcontainer-tmux.d.ts +16 -0
- package/dist/lib/execution/runners/devcontainer-tmux.js +270 -0
- package/dist/lib/execution/runners/devcontainer-tmux.js.map +1 -0
- package/dist/lib/execution/runners/devcontainer.d.ts +19 -0
- package/dist/lib/execution/runners/devcontainer.js +261 -0
- package/dist/lib/execution/runners/devcontainer.js.map +1 -0
- package/dist/lib/execution/runners/docker-credentials.d.ts +51 -0
- package/dist/lib/execution/runners/docker-credentials.js +175 -0
- package/dist/lib/execution/runners/docker-credentials.js.map +1 -0
- package/dist/lib/execution/runners/docker-management.d.ts +49 -0
- package/dist/lib/execution/runners/docker-management.js +300 -0
- package/dist/lib/execution/runners/docker-management.js.map +1 -0
- package/dist/lib/execution/runners/docker.d.ts +13 -0
- package/dist/lib/execution/runners/docker.js +75 -0
- package/dist/lib/execution/runners/docker.js.map +1 -0
- package/dist/lib/execution/runners/executor.d.ts +41 -0
- package/dist/lib/execution/runners/executor.js +108 -0
- package/dist/lib/execution/runners/executor.js.map +1 -0
- package/dist/lib/execution/runners/host.d.ts +14 -0
- package/dist/lib/execution/runners/host.js +437 -0
- package/dist/lib/execution/runners/host.js.map +1 -0
- package/dist/lib/execution/runners/index.d.ts +29 -0
- package/dist/lib/execution/runners/index.js +79 -0
- package/dist/lib/execution/runners/index.js.map +1 -0
- package/dist/lib/execution/runners/orchestrator.d.ts +30 -0
- package/dist/lib/execution/runners/orchestrator.js +332 -0
- package/dist/lib/execution/runners/orchestrator.js.map +1 -0
- package/dist/lib/execution/runners/prompt-builder.d.ts +12 -0
- package/dist/lib/execution/runners/prompt-builder.js +337 -0
- package/dist/lib/execution/runners/prompt-builder.js.map +1 -0
- package/dist/lib/execution/runners/sandbox.d.ts +34 -0
- package/dist/lib/execution/runners/sandbox.js +108 -0
- package/dist/lib/execution/runners/sandbox.js.map +1 -0
- package/dist/lib/execution/runners/shared.d.ts +62 -0
- package/dist/lib/execution/runners/shared.js +141 -0
- package/dist/lib/execution/runners/shared.js.map +1 -0
- package/dist/lib/execution/runners.d.ts +12 -272
- package/dist/lib/execution/runners.js +12 -3200
- package/dist/lib/execution/runners.js.map +1 -1
- package/dist/lib/external-issues/outbound-sync.d.ts +15 -0
- package/dist/lib/external-issues/outbound-sync.js +11 -1
- package/dist/lib/external-issues/outbound-sync.js.map +1 -1
- package/oclif.manifest.json +1426 -1426
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -8461,20 +8461,20 @@
|
|
|
8461
8461
|
"init.js"
|
|
8462
8462
|
]
|
|
8463
8463
|
},
|
|
8464
|
-
"
|
|
8464
|
+
"priority:add": {
|
|
8465
8465
|
"aliases": [],
|
|
8466
8466
|
"args": {
|
|
8467
|
-
"
|
|
8468
|
-
"description": "
|
|
8469
|
-
"name": "
|
|
8470
|
-
"required":
|
|
8467
|
+
"value": {
|
|
8468
|
+
"description": "Priority value to add",
|
|
8469
|
+
"name": "value",
|
|
8470
|
+
"required": true
|
|
8471
8471
|
}
|
|
8472
8472
|
},
|
|
8473
|
-
"description": "
|
|
8473
|
+
"description": "Add a priority value to the workspace scale",
|
|
8474
8474
|
"examples": [
|
|
8475
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8476
|
-
"<%= config.bin %> <%= command.id %>
|
|
8477
|
-
"<%= config.bin %> <%= command.id %> --
|
|
8475
|
+
"<%= config.bin %> <%= command.id %> Critical",
|
|
8476
|
+
"<%= config.bin %> <%= command.id %> \"Must Have\" --position 0",
|
|
8477
|
+
"<%= config.bin %> <%= command.id %> P4 --after P3"
|
|
8478
8478
|
],
|
|
8479
8479
|
"flags": {
|
|
8480
8480
|
"project": {
|
|
@@ -8497,11 +8497,28 @@
|
|
|
8497
8497
|
"name": "machine",
|
|
8498
8498
|
"allowNo": false,
|
|
8499
8499
|
"type": "boolean"
|
|
8500
|
+
},
|
|
8501
|
+
"position": {
|
|
8502
|
+
"description": "Position in the priority scale (0 = highest)",
|
|
8503
|
+
"name": "position",
|
|
8504
|
+
"hasDynamicHelp": false,
|
|
8505
|
+
"multiple": false,
|
|
8506
|
+
"type": "option"
|
|
8507
|
+
},
|
|
8508
|
+
"after": {
|
|
8509
|
+
"description": "Insert after this priority value",
|
|
8510
|
+
"exclusive": [
|
|
8511
|
+
"position"
|
|
8512
|
+
],
|
|
8513
|
+
"name": "after",
|
|
8514
|
+
"hasDynamicHelp": false,
|
|
8515
|
+
"multiple": false,
|
|
8516
|
+
"type": "option"
|
|
8500
8517
|
}
|
|
8501
8518
|
},
|
|
8502
8519
|
"hasDynamicHelp": false,
|
|
8503
8520
|
"hiddenAliases": [],
|
|
8504
|
-
"id": "
|
|
8521
|
+
"id": "priority:add",
|
|
8505
8522
|
"pluginAlias": "@proletariat/cli",
|
|
8506
8523
|
"pluginName": "@proletariat/cli",
|
|
8507
8524
|
"pluginType": "core",
|
|
@@ -8510,25 +8527,17 @@
|
|
|
8510
8527
|
"relativePath": [
|
|
8511
8528
|
"dist",
|
|
8512
8529
|
"commands",
|
|
8513
|
-
"
|
|
8514
|
-
"
|
|
8530
|
+
"priority",
|
|
8531
|
+
"add.js"
|
|
8515
8532
|
]
|
|
8516
8533
|
},
|
|
8517
|
-
"
|
|
8534
|
+
"priority:list": {
|
|
8518
8535
|
"aliases": [],
|
|
8519
|
-
"args": {
|
|
8520
|
-
|
|
8521
|
-
"description": "Ticket ID to link to PR - auto-detects from branch if not provided",
|
|
8522
|
-
"name": "ticketId",
|
|
8523
|
-
"required": false
|
|
8524
|
-
}
|
|
8525
|
-
},
|
|
8526
|
-
"description": "Create a GitHub pull request from the current branch",
|
|
8536
|
+
"args": {},
|
|
8537
|
+
"description": "List the workspace priority scale",
|
|
8527
8538
|
"examples": [
|
|
8528
8539
|
"<%= config.bin %> <%= command.id %>",
|
|
8529
|
-
"<%= config.bin %> <%= command.id %>
|
|
8530
|
-
"<%= config.bin %> <%= command.id %> --draft",
|
|
8531
|
-
"<%= config.bin %> <%= command.id %> --base develop"
|
|
8540
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
8532
8541
|
],
|
|
8533
8542
|
"flags": {
|
|
8534
8543
|
"project": {
|
|
@@ -8551,54 +8560,63 @@
|
|
|
8551
8560
|
"name": "machine",
|
|
8552
8561
|
"allowNo": false,
|
|
8553
8562
|
"type": "boolean"
|
|
8554
|
-
}
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8563
|
+
}
|
|
8564
|
+
},
|
|
8565
|
+
"hasDynamicHelp": false,
|
|
8566
|
+
"hiddenAliases": [],
|
|
8567
|
+
"id": "priority:list",
|
|
8568
|
+
"pluginAlias": "@proletariat/cli",
|
|
8569
|
+
"pluginName": "@proletariat/cli",
|
|
8570
|
+
"pluginType": "core",
|
|
8571
|
+
"strict": true,
|
|
8572
|
+
"isESM": true,
|
|
8573
|
+
"relativePath": [
|
|
8574
|
+
"dist",
|
|
8575
|
+
"commands",
|
|
8576
|
+
"priority",
|
|
8577
|
+
"list.js"
|
|
8578
|
+
]
|
|
8579
|
+
},
|
|
8580
|
+
"priority:remove": {
|
|
8581
|
+
"aliases": [],
|
|
8582
|
+
"args": {
|
|
8583
|
+
"value": {
|
|
8584
|
+
"description": "Priority value to remove",
|
|
8585
|
+
"name": "value",
|
|
8586
|
+
"required": true
|
|
8587
|
+
}
|
|
8588
|
+
},
|
|
8589
|
+
"description": "Remove a priority value from the workspace scale",
|
|
8590
|
+
"examples": [
|
|
8591
|
+
"<%= config.bin %> <%= command.id %> P3",
|
|
8592
|
+
"<%= config.bin %> <%= command.id %> Low"
|
|
8593
|
+
],
|
|
8594
|
+
"flags": {
|
|
8595
|
+
"project": {
|
|
8596
|
+
"char": "P",
|
|
8597
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
8598
|
+
"name": "project",
|
|
8559
8599
|
"hasDynamicHelp": false,
|
|
8560
8600
|
"multiple": false,
|
|
8561
8601
|
"type": "option"
|
|
8562
8602
|
},
|
|
8563
|
-
"
|
|
8564
|
-
"
|
|
8565
|
-
"
|
|
8566
|
-
"name": "draft",
|
|
8603
|
+
"json": {
|
|
8604
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8605
|
+
"name": "json",
|
|
8567
8606
|
"allowNo": false,
|
|
8568
8607
|
"type": "boolean"
|
|
8569
8608
|
},
|
|
8570
|
-
"
|
|
8571
|
-
"
|
|
8572
|
-
"
|
|
8609
|
+
"machine": {
|
|
8610
|
+
"char": "m",
|
|
8611
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
8612
|
+
"name": "machine",
|
|
8573
8613
|
"allowNo": false,
|
|
8574
8614
|
"type": "boolean"
|
|
8575
|
-
},
|
|
8576
|
-
"title": {
|
|
8577
|
-
"char": "t",
|
|
8578
|
-
"description": "PR title (auto-generated from ticket if not provided)",
|
|
8579
|
-
"name": "title",
|
|
8580
|
-
"hasDynamicHelp": false,
|
|
8581
|
-
"multiple": false,
|
|
8582
|
-
"type": "option"
|
|
8583
|
-
},
|
|
8584
|
-
"body": {
|
|
8585
|
-
"description": "PR body/description",
|
|
8586
|
-
"name": "body",
|
|
8587
|
-
"hasDynamicHelp": false,
|
|
8588
|
-
"multiple": false,
|
|
8589
|
-
"type": "option"
|
|
8590
|
-
},
|
|
8591
|
-
"ticket": {
|
|
8592
|
-
"description": "Ticket ID to link (alternative to positional arg)",
|
|
8593
|
-
"name": "ticket",
|
|
8594
|
-
"hasDynamicHelp": false,
|
|
8595
|
-
"multiple": false,
|
|
8596
|
-
"type": "option"
|
|
8597
8615
|
}
|
|
8598
8616
|
},
|
|
8599
8617
|
"hasDynamicHelp": false,
|
|
8600
8618
|
"hiddenAliases": [],
|
|
8601
|
-
"id": "
|
|
8619
|
+
"id": "priority:remove",
|
|
8602
8620
|
"pluginAlias": "@proletariat/cli",
|
|
8603
8621
|
"pluginName": "@proletariat/cli",
|
|
8604
8622
|
"pluginType": "core",
|
|
@@ -8607,16 +8625,25 @@
|
|
|
8607
8625
|
"relativePath": [
|
|
8608
8626
|
"dist",
|
|
8609
8627
|
"commands",
|
|
8610
|
-
"
|
|
8611
|
-
"
|
|
8628
|
+
"priority",
|
|
8629
|
+
"remove.js"
|
|
8612
8630
|
]
|
|
8613
8631
|
},
|
|
8614
|
-
"
|
|
8632
|
+
"priority:set": {
|
|
8615
8633
|
"aliases": [],
|
|
8616
|
-
"args": {
|
|
8617
|
-
|
|
8634
|
+
"args": {
|
|
8635
|
+
"priorities": {
|
|
8636
|
+
"description": "Priority values from highest to lowest (space-separated)",
|
|
8637
|
+
"name": "priorities",
|
|
8638
|
+
"required": false
|
|
8639
|
+
}
|
|
8640
|
+
},
|
|
8641
|
+
"description": "Set the workspace priority scale (replaces all existing priorities)",
|
|
8618
8642
|
"examples": [
|
|
8619
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8643
|
+
"<%= config.bin %> <%= command.id %> P0 P1 P2 P3",
|
|
8644
|
+
"<%= config.bin %> <%= command.id %> Critical High Medium Low",
|
|
8645
|
+
"<%= config.bin %> <%= command.id %> Now Next Later",
|
|
8646
|
+
"<%= config.bin %> <%= command.id %> \"Must Have\" \"Should Have\" \"Nice to Have\""
|
|
8620
8647
|
],
|
|
8621
8648
|
"flags": {
|
|
8622
8649
|
"project": {
|
|
@@ -8639,54 +8666,36 @@
|
|
|
8639
8666
|
"name": "machine",
|
|
8640
8667
|
"allowNo": false,
|
|
8641
8668
|
"type": "boolean"
|
|
8642
|
-
},
|
|
8643
|
-
"action": {
|
|
8644
|
-
"char": "a",
|
|
8645
|
-
"description": "Action to perform (list, create, merge, checks, link, status)",
|
|
8646
|
-
"name": "action",
|
|
8647
|
-
"hasDynamicHelp": false,
|
|
8648
|
-
"multiple": false,
|
|
8649
|
-
"options": [
|
|
8650
|
-
"list",
|
|
8651
|
-
"create",
|
|
8652
|
-
"merge",
|
|
8653
|
-
"checks",
|
|
8654
|
-
"link",
|
|
8655
|
-
"status"
|
|
8656
|
-
],
|
|
8657
|
-
"type": "option"
|
|
8658
8669
|
}
|
|
8659
8670
|
},
|
|
8660
8671
|
"hasDynamicHelp": false,
|
|
8661
8672
|
"hiddenAliases": [],
|
|
8662
|
-
"id": "
|
|
8673
|
+
"id": "priority:set",
|
|
8663
8674
|
"pluginAlias": "@proletariat/cli",
|
|
8664
8675
|
"pluginName": "@proletariat/cli",
|
|
8665
8676
|
"pluginType": "core",
|
|
8666
|
-
"strict":
|
|
8677
|
+
"strict": false,
|
|
8667
8678
|
"isESM": true,
|
|
8668
8679
|
"relativePath": [
|
|
8669
8680
|
"dist",
|
|
8670
8681
|
"commands",
|
|
8671
|
-
"
|
|
8672
|
-
"
|
|
8682
|
+
"priority",
|
|
8683
|
+
"set.js"
|
|
8673
8684
|
]
|
|
8674
8685
|
},
|
|
8675
|
-
"
|
|
8686
|
+
"project:archive": {
|
|
8676
8687
|
"aliases": [],
|
|
8677
8688
|
"args": {
|
|
8678
|
-
"
|
|
8679
|
-
"description": "
|
|
8680
|
-
"name": "
|
|
8681
|
-
"required":
|
|
8689
|
+
"id": {
|
|
8690
|
+
"description": "Project ID",
|
|
8691
|
+
"name": "id",
|
|
8692
|
+
"required": true
|
|
8682
8693
|
}
|
|
8683
8694
|
},
|
|
8684
|
-
"description": "
|
|
8695
|
+
"description": "Archive a project (hide from default views)",
|
|
8685
8696
|
"examples": [
|
|
8686
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8687
|
-
"<%= config.bin %> <%= command.id %>
|
|
8688
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
|
|
8689
|
-
"<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
|
|
8697
|
+
"<%= config.bin %> <%= command.id %> old-project",
|
|
8698
|
+
"<%= config.bin %> <%= command.id %> old-project --force"
|
|
8690
8699
|
],
|
|
8691
8700
|
"flags": {
|
|
8692
8701
|
"project": {
|
|
@@ -8710,39 +8719,17 @@
|
|
|
8710
8719
|
"allowNo": false,
|
|
8711
8720
|
"type": "boolean"
|
|
8712
8721
|
},
|
|
8713
|
-
"
|
|
8714
|
-
"char": "
|
|
8715
|
-
"description": "
|
|
8716
|
-
"name": "
|
|
8717
|
-
"hasDynamicHelp": false,
|
|
8718
|
-
"multiple": false,
|
|
8719
|
-
"type": "option"
|
|
8720
|
-
},
|
|
8721
|
-
"url": {
|
|
8722
|
-
"char": "u",
|
|
8723
|
-
"description": "PR URL to link",
|
|
8724
|
-
"name": "url",
|
|
8725
|
-
"hasDynamicHelp": false,
|
|
8726
|
-
"multiple": false,
|
|
8727
|
-
"type": "option"
|
|
8728
|
-
},
|
|
8729
|
-
"ticket": {
|
|
8730
|
-
"description": "Ticket ID to link (alternative to positional arg)",
|
|
8731
|
-
"name": "ticket",
|
|
8732
|
-
"hasDynamicHelp": false,
|
|
8733
|
-
"multiple": false,
|
|
8734
|
-
"type": "option"
|
|
8735
|
-
},
|
|
8736
|
-
"confirm": {
|
|
8737
|
-
"description": "Confirm overwriting existing PR link",
|
|
8738
|
-
"name": "confirm",
|
|
8722
|
+
"force": {
|
|
8723
|
+
"char": "f",
|
|
8724
|
+
"description": "Skip confirmation",
|
|
8725
|
+
"name": "force",
|
|
8739
8726
|
"allowNo": false,
|
|
8740
8727
|
"type": "boolean"
|
|
8741
8728
|
}
|
|
8742
8729
|
},
|
|
8743
8730
|
"hasDynamicHelp": false,
|
|
8744
8731
|
"hiddenAliases": [],
|
|
8745
|
-
"id": "
|
|
8732
|
+
"id": "project:archive",
|
|
8746
8733
|
"pluginAlias": "@proletariat/cli",
|
|
8747
8734
|
"pluginName": "@proletariat/cli",
|
|
8748
8735
|
"pluginType": "core",
|
|
@@ -8751,20 +8738,25 @@
|
|
|
8751
8738
|
"relativePath": [
|
|
8752
8739
|
"dist",
|
|
8753
8740
|
"commands",
|
|
8754
|
-
"
|
|
8755
|
-
"
|
|
8741
|
+
"project",
|
|
8742
|
+
"archive.js"
|
|
8756
8743
|
]
|
|
8757
8744
|
},
|
|
8758
|
-
"
|
|
8745
|
+
"project:create": {
|
|
8759
8746
|
"aliases": [],
|
|
8760
|
-
"args": {
|
|
8761
|
-
|
|
8747
|
+
"args": {
|
|
8748
|
+
"name": {
|
|
8749
|
+
"description": "Project name",
|
|
8750
|
+
"name": "name",
|
|
8751
|
+
"required": false
|
|
8752
|
+
}
|
|
8753
|
+
},
|
|
8754
|
+
"description": "Create a new project in the PMO",
|
|
8762
8755
|
"examples": [
|
|
8763
|
-
"<%= config.bin %> <%= command.id %>",
|
|
8764
|
-
"<%= config.bin %> <%= command.id %> --
|
|
8765
|
-
"<%= config.bin %> <%= command.id %>
|
|
8766
|
-
"<%= config.bin %> <%= command.id %> --
|
|
8767
|
-
"<%= config.bin %> <%= command.id %> --machine"
|
|
8756
|
+
"<%= config.bin %> <%= command.id %> \"My New Project\"",
|
|
8757
|
+
"<%= config.bin %> <%= command.id %> --name \"Mobile App\" --description \"iOS and Android app\"",
|
|
8758
|
+
"<%= config.bin %> <%= command.id %> -i # Interactive mode",
|
|
8759
|
+
"<%= config.bin %> <%= command.id %> --name \"Test\" --dry-run --json # Validate without creating"
|
|
8768
8760
|
],
|
|
8769
8761
|
"flags": {
|
|
8770
8762
|
"project": {
|
|
@@ -8788,47 +8780,63 @@
|
|
|
8788
8780
|
"allowNo": false,
|
|
8789
8781
|
"type": "boolean"
|
|
8790
8782
|
},
|
|
8791
|
-
"
|
|
8792
|
-
"char": "
|
|
8793
|
-
"description": "
|
|
8794
|
-
"name": "
|
|
8795
|
-
"default": "open",
|
|
8783
|
+
"name": {
|
|
8784
|
+
"char": "n",
|
|
8785
|
+
"description": "Project name [required for non-interactive]",
|
|
8786
|
+
"name": "name",
|
|
8796
8787
|
"hasDynamicHelp": false,
|
|
8797
8788
|
"multiple": false,
|
|
8798
|
-
"options": [
|
|
8799
|
-
"open",
|
|
8800
|
-
"draft",
|
|
8801
|
-
"all"
|
|
8802
|
-
],
|
|
8803
8789
|
"type": "option"
|
|
8804
8790
|
},
|
|
8805
|
-
"
|
|
8806
|
-
"
|
|
8807
|
-
"
|
|
8808
|
-
"name": "format",
|
|
8809
|
-
"default": "table",
|
|
8791
|
+
"id": {
|
|
8792
|
+
"description": "Custom project ID (auto-generated from name if not provided)",
|
|
8793
|
+
"name": "id",
|
|
8810
8794
|
"hasDynamicHelp": false,
|
|
8811
8795
|
"multiple": false,
|
|
8812
|
-
"options": [
|
|
8813
|
-
"table",
|
|
8814
|
-
"compact",
|
|
8815
|
-
"json"
|
|
8816
|
-
],
|
|
8817
8796
|
"type": "option"
|
|
8818
8797
|
},
|
|
8819
|
-
"
|
|
8820
|
-
"char": "
|
|
8821
|
-
"description": "
|
|
8822
|
-
"name": "
|
|
8823
|
-
"
|
|
8798
|
+
"description": {
|
|
8799
|
+
"char": "d",
|
|
8800
|
+
"description": "Project description",
|
|
8801
|
+
"name": "description",
|
|
8802
|
+
"hasDynamicHelp": false,
|
|
8803
|
+
"multiple": false,
|
|
8804
|
+
"type": "option"
|
|
8805
|
+
},
|
|
8806
|
+
"template": {
|
|
8807
|
+
"char": "t",
|
|
8808
|
+
"description": "Workflow template",
|
|
8809
|
+
"name": "template",
|
|
8810
|
+
"default": "kanban",
|
|
8824
8811
|
"hasDynamicHelp": false,
|
|
8825
8812
|
"multiple": false,
|
|
8813
|
+
"options": [
|
|
8814
|
+
"default",
|
|
8815
|
+
"kanban",
|
|
8816
|
+
"linear",
|
|
8817
|
+
"5-tool-founder",
|
|
8818
|
+
"bug-smash",
|
|
8819
|
+
"gtm"
|
|
8820
|
+
],
|
|
8826
8821
|
"type": "option"
|
|
8822
|
+
},
|
|
8823
|
+
"interactive": {
|
|
8824
|
+
"char": "i",
|
|
8825
|
+
"description": "Interactive mode",
|
|
8826
|
+
"name": "interactive",
|
|
8827
|
+
"allowNo": false,
|
|
8828
|
+
"type": "boolean"
|
|
8829
|
+
},
|
|
8830
|
+
"dry-run": {
|
|
8831
|
+
"description": "Validate inputs without creating project (use with --json for structured output)",
|
|
8832
|
+
"name": "dry-run",
|
|
8833
|
+
"allowNo": false,
|
|
8834
|
+
"type": "boolean"
|
|
8827
8835
|
}
|
|
8828
8836
|
},
|
|
8829
8837
|
"hasDynamicHelp": false,
|
|
8830
8838
|
"hiddenAliases": [],
|
|
8831
|
-
"id": "
|
|
8839
|
+
"id": "project:create",
|
|
8832
8840
|
"pluginAlias": "@proletariat/cli",
|
|
8833
8841
|
"pluginName": "@proletariat/cli",
|
|
8834
8842
|
"pluginType": "core",
|
|
@@ -8837,25 +8845,23 @@
|
|
|
8837
8845
|
"relativePath": [
|
|
8838
8846
|
"dist",
|
|
8839
8847
|
"commands",
|
|
8840
|
-
"
|
|
8841
|
-
"
|
|
8848
|
+
"project",
|
|
8849
|
+
"create.js"
|
|
8842
8850
|
]
|
|
8843
8851
|
},
|
|
8844
|
-
"
|
|
8852
|
+
"project:delete": {
|
|
8845
8853
|
"aliases": [],
|
|
8846
8854
|
"args": {
|
|
8847
|
-
"
|
|
8848
|
-
"description": "
|
|
8849
|
-
"name": "
|
|
8855
|
+
"id": {
|
|
8856
|
+
"description": "Project ID to delete - prompts with dropdown if not provided",
|
|
8857
|
+
"name": "id",
|
|
8850
8858
|
"required": false
|
|
8851
8859
|
}
|
|
8852
8860
|
},
|
|
8853
|
-
"description": "
|
|
8861
|
+
"description": "Delete a project from the PMO",
|
|
8854
8862
|
"examples": [
|
|
8855
|
-
"<%= config.bin %> <%= command.id %>
|
|
8856
|
-
"<%= config.bin %> <%= command.id %>
|
|
8857
|
-
"<%= config.bin %> <%= command.id %> 123 --no-delete-branch",
|
|
8858
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
8863
|
+
"<%= config.bin %> <%= command.id %> my-project",
|
|
8864
|
+
"<%= config.bin %> <%= command.id %> my-project --force"
|
|
8859
8865
|
],
|
|
8860
8866
|
"flags": {
|
|
8861
8867
|
"project": {
|
|
@@ -8879,35 +8885,17 @@
|
|
|
8879
8885
|
"allowNo": false,
|
|
8880
8886
|
"type": "boolean"
|
|
8881
8887
|
},
|
|
8882
|
-
"
|
|
8883
|
-
"
|
|
8884
|
-
"
|
|
8885
|
-
"
|
|
8886
|
-
"hasDynamicHelp": false,
|
|
8887
|
-
"multiple": false,
|
|
8888
|
-
"options": [
|
|
8889
|
-
"merge",
|
|
8890
|
-
"squash",
|
|
8891
|
-
"rebase"
|
|
8892
|
-
],
|
|
8893
|
-
"type": "option"
|
|
8894
|
-
},
|
|
8895
|
-
"delete-branch": {
|
|
8896
|
-
"description": "Delete branch after merging",
|
|
8897
|
-
"name": "delete-branch",
|
|
8898
|
-
"allowNo": true,
|
|
8899
|
-
"type": "boolean"
|
|
8900
|
-
},
|
|
8901
|
-
"admin": {
|
|
8902
|
-
"description": "Use admin privileges to bypass branch protections",
|
|
8903
|
-
"name": "admin",
|
|
8888
|
+
"force": {
|
|
8889
|
+
"char": "f",
|
|
8890
|
+
"description": "Skip confirmation prompt",
|
|
8891
|
+
"name": "force",
|
|
8904
8892
|
"allowNo": false,
|
|
8905
8893
|
"type": "boolean"
|
|
8906
8894
|
}
|
|
8907
8895
|
},
|
|
8908
8896
|
"hasDynamicHelp": false,
|
|
8909
8897
|
"hiddenAliases": [],
|
|
8910
|
-
"id": "
|
|
8898
|
+
"id": "project:delete",
|
|
8911
8899
|
"pluginAlias": "@proletariat/cli",
|
|
8912
8900
|
"pluginName": "@proletariat/cli",
|
|
8913
8901
|
"pluginType": "core",
|
|
@@ -8916,23 +8904,16 @@
|
|
|
8916
8904
|
"relativePath": [
|
|
8917
8905
|
"dist",
|
|
8918
8906
|
"commands",
|
|
8919
|
-
"
|
|
8920
|
-
"
|
|
8907
|
+
"project",
|
|
8908
|
+
"delete.js"
|
|
8921
8909
|
]
|
|
8922
8910
|
},
|
|
8923
|
-
"
|
|
8911
|
+
"project": {
|
|
8924
8912
|
"aliases": [],
|
|
8925
|
-
"args": {
|
|
8926
|
-
|
|
8927
|
-
"description": "Ticket ID to check PR status for",
|
|
8928
|
-
"name": "ticketId",
|
|
8929
|
-
"required": false
|
|
8930
|
-
}
|
|
8931
|
-
},
|
|
8932
|
-
"description": "View PR status for a ticket",
|
|
8913
|
+
"args": {},
|
|
8914
|
+
"description": "Interactive menu for project operations",
|
|
8933
8915
|
"examples": [
|
|
8934
|
-
"<%= config.bin %> <%= command.id %>"
|
|
8935
|
-
"<%= config.bin %> <%= command.id %> TKT-001"
|
|
8916
|
+
"<%= config.bin %> <%= command.id %>"
|
|
8936
8917
|
],
|
|
8937
8918
|
"flags": {
|
|
8938
8919
|
"project": {
|
|
@@ -8955,18 +8936,11 @@
|
|
|
8955
8936
|
"name": "machine",
|
|
8956
8937
|
"allowNo": false,
|
|
8957
8938
|
"type": "boolean"
|
|
8958
|
-
},
|
|
8959
|
-
"ticket": {
|
|
8960
|
-
"description": "Ticket ID to check (alternative to positional arg)",
|
|
8961
|
-
"name": "ticket",
|
|
8962
|
-
"hasDynamicHelp": false,
|
|
8963
|
-
"multiple": false,
|
|
8964
|
-
"type": "option"
|
|
8965
8939
|
}
|
|
8966
8940
|
},
|
|
8967
8941
|
"hasDynamicHelp": false,
|
|
8968
8942
|
"hiddenAliases": [],
|
|
8969
|
-
"id": "
|
|
8943
|
+
"id": "project",
|
|
8970
8944
|
"pluginAlias": "@proletariat/cli",
|
|
8971
8945
|
"pluginName": "@proletariat/cli",
|
|
8972
8946
|
"pluginType": "core",
|
|
@@ -8975,24 +8949,18 @@
|
|
|
8975
8949
|
"relativePath": [
|
|
8976
8950
|
"dist",
|
|
8977
8951
|
"commands",
|
|
8978
|
-
"
|
|
8979
|
-
"
|
|
8952
|
+
"project",
|
|
8953
|
+
"index.js"
|
|
8980
8954
|
]
|
|
8981
8955
|
},
|
|
8982
|
-
"
|
|
8956
|
+
"project:list": {
|
|
8983
8957
|
"aliases": [],
|
|
8984
|
-
"args": {
|
|
8985
|
-
|
|
8986
|
-
"description": "Priority value to add",
|
|
8987
|
-
"name": "value",
|
|
8988
|
-
"required": true
|
|
8989
|
-
}
|
|
8990
|
-
},
|
|
8991
|
-
"description": "Add a priority value to the workspace scale",
|
|
8958
|
+
"args": {},
|
|
8959
|
+
"description": "List all projects in the PMO",
|
|
8992
8960
|
"examples": [
|
|
8993
|
-
"<%= config.bin %> <%= command.id %>
|
|
8994
|
-
"<%= config.bin %> <%= command.id %>
|
|
8995
|
-
"<%= config.bin %> <%= command.id %>
|
|
8961
|
+
"<%= config.bin %> <%= command.id %>",
|
|
8962
|
+
"<%= config.bin %> <%= command.id %> --archived",
|
|
8963
|
+
"<%= config.bin %> <%= command.id %> --all"
|
|
8996
8964
|
],
|
|
8997
8965
|
"flags": {
|
|
8998
8966
|
"project": {
|
|
@@ -9016,27 +8984,23 @@
|
|
|
9016
8984
|
"allowNo": false,
|
|
9017
8985
|
"type": "boolean"
|
|
9018
8986
|
},
|
|
9019
|
-
"
|
|
9020
|
-
"
|
|
9021
|
-
"
|
|
9022
|
-
"
|
|
9023
|
-
"
|
|
9024
|
-
"type": "
|
|
8987
|
+
"archived": {
|
|
8988
|
+
"char": "a",
|
|
8989
|
+
"description": "Show only archived projects",
|
|
8990
|
+
"name": "archived",
|
|
8991
|
+
"allowNo": false,
|
|
8992
|
+
"type": "boolean"
|
|
9025
8993
|
},
|
|
9026
|
-
"
|
|
9027
|
-
"description": "
|
|
9028
|
-
"
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
"name": "after",
|
|
9032
|
-
"hasDynamicHelp": false,
|
|
9033
|
-
"multiple": false,
|
|
9034
|
-
"type": "option"
|
|
8994
|
+
"all": {
|
|
8995
|
+
"description": "Show all projects (including archived)",
|
|
8996
|
+
"name": "all",
|
|
8997
|
+
"allowNo": false,
|
|
8998
|
+
"type": "boolean"
|
|
9035
8999
|
}
|
|
9036
9000
|
},
|
|
9037
9001
|
"hasDynamicHelp": false,
|
|
9038
9002
|
"hiddenAliases": [],
|
|
9039
|
-
"id": "
|
|
9003
|
+
"id": "project:list",
|
|
9040
9004
|
"pluginAlias": "@proletariat/cli",
|
|
9041
9005
|
"pluginName": "@proletariat/cli",
|
|
9042
9006
|
"pluginType": "core",
|
|
@@ -9045,17 +9009,25 @@
|
|
|
9045
9009
|
"relativePath": [
|
|
9046
9010
|
"dist",
|
|
9047
9011
|
"commands",
|
|
9048
|
-
"
|
|
9049
|
-
"
|
|
9012
|
+
"project",
|
|
9013
|
+
"list.js"
|
|
9050
9014
|
]
|
|
9051
9015
|
},
|
|
9052
|
-
"
|
|
9016
|
+
"project:spec": {
|
|
9053
9017
|
"aliases": [],
|
|
9054
|
-
"args": {
|
|
9055
|
-
|
|
9018
|
+
"args": {
|
|
9019
|
+
"projectId": {
|
|
9020
|
+
"description": "Project ID",
|
|
9021
|
+
"name": "projectId",
|
|
9022
|
+
"required": false
|
|
9023
|
+
}
|
|
9024
|
+
},
|
|
9025
|
+
"description": "Manage specs associated with a project (many-to-many)",
|
|
9056
9026
|
"examples": [
|
|
9057
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9058
|
-
"<%= config.bin %> <%= command.id %> --
|
|
9027
|
+
"<%= config.bin %> <%= command.id %> my-project",
|
|
9028
|
+
"<%= config.bin %> <%= command.id %> my-project --add SPEC-001",
|
|
9029
|
+
"<%= config.bin %> <%= command.id %> my-project --remove SPEC-001",
|
|
9030
|
+
"<%= config.bin %> <%= command.id %>"
|
|
9059
9031
|
],
|
|
9060
9032
|
"flags": {
|
|
9061
9033
|
"project": {
|
|
@@ -9078,11 +9050,27 @@
|
|
|
9078
9050
|
"name": "machine",
|
|
9079
9051
|
"allowNo": false,
|
|
9080
9052
|
"type": "boolean"
|
|
9053
|
+
},
|
|
9054
|
+
"add": {
|
|
9055
|
+
"char": "a",
|
|
9056
|
+
"description": "Add a spec to this project",
|
|
9057
|
+
"name": "add",
|
|
9058
|
+
"hasDynamicHelp": false,
|
|
9059
|
+
"multiple": false,
|
|
9060
|
+
"type": "option"
|
|
9061
|
+
},
|
|
9062
|
+
"remove": {
|
|
9063
|
+
"char": "r",
|
|
9064
|
+
"description": "Remove a spec from this project",
|
|
9065
|
+
"name": "remove",
|
|
9066
|
+
"hasDynamicHelp": false,
|
|
9067
|
+
"multiple": false,
|
|
9068
|
+
"type": "option"
|
|
9081
9069
|
}
|
|
9082
9070
|
},
|
|
9083
9071
|
"hasDynamicHelp": false,
|
|
9084
9072
|
"hiddenAliases": [],
|
|
9085
|
-
"id": "
|
|
9073
|
+
"id": "project:spec",
|
|
9086
9074
|
"pluginAlias": "@proletariat/cli",
|
|
9087
9075
|
"pluginName": "@proletariat/cli",
|
|
9088
9076
|
"pluginType": "core",
|
|
@@ -9091,23 +9079,22 @@
|
|
|
9091
9079
|
"relativePath": [
|
|
9092
9080
|
"dist",
|
|
9093
9081
|
"commands",
|
|
9094
|
-
"
|
|
9095
|
-
"
|
|
9082
|
+
"project",
|
|
9083
|
+
"spec.js"
|
|
9096
9084
|
]
|
|
9097
9085
|
},
|
|
9098
|
-
"
|
|
9086
|
+
"project:unarchive": {
|
|
9099
9087
|
"aliases": [],
|
|
9100
9088
|
"args": {
|
|
9101
|
-
"
|
|
9102
|
-
"description": "
|
|
9103
|
-
"name": "
|
|
9089
|
+
"id": {
|
|
9090
|
+
"description": "Project ID",
|
|
9091
|
+
"name": "id",
|
|
9104
9092
|
"required": true
|
|
9105
9093
|
}
|
|
9106
9094
|
},
|
|
9107
|
-
"description": "
|
|
9095
|
+
"description": "Unarchive a project (restore to default views)",
|
|
9108
9096
|
"examples": [
|
|
9109
|
-
"<%= config.bin %> <%= command.id %>
|
|
9110
|
-
"<%= config.bin %> <%= command.id %> Low"
|
|
9097
|
+
"<%= config.bin %> <%= command.id %> old-project"
|
|
9111
9098
|
],
|
|
9112
9099
|
"flags": {
|
|
9113
9100
|
"project": {
|
|
@@ -9134,7 +9121,7 @@
|
|
|
9134
9121
|
},
|
|
9135
9122
|
"hasDynamicHelp": false,
|
|
9136
9123
|
"hiddenAliases": [],
|
|
9137
|
-
"id": "
|
|
9124
|
+
"id": "project:unarchive",
|
|
9138
9125
|
"pluginAlias": "@proletariat/cli",
|
|
9139
9126
|
"pluginName": "@proletariat/cli",
|
|
9140
9127
|
"pluginType": "core",
|
|
@@ -9143,25 +9130,25 @@
|
|
|
9143
9130
|
"relativePath": [
|
|
9144
9131
|
"dist",
|
|
9145
9132
|
"commands",
|
|
9146
|
-
"
|
|
9147
|
-
"
|
|
9148
|
-
]
|
|
9133
|
+
"project",
|
|
9134
|
+
"unarchive.js"
|
|
9135
|
+
]
|
|
9149
9136
|
},
|
|
9150
|
-
"
|
|
9137
|
+
"project:update": {
|
|
9151
9138
|
"aliases": [],
|
|
9152
9139
|
"args": {
|
|
9153
|
-
"
|
|
9154
|
-
"description": "
|
|
9155
|
-
"name": "
|
|
9140
|
+
"id": {
|
|
9141
|
+
"description": "Project ID or name",
|
|
9142
|
+
"name": "id",
|
|
9156
9143
|
"required": false
|
|
9157
9144
|
}
|
|
9158
9145
|
},
|
|
9159
|
-
"description": "
|
|
9146
|
+
"description": "Update project metadata (name, description)",
|
|
9160
9147
|
"examples": [
|
|
9161
|
-
"<%= config.bin %> <%= command.id %>
|
|
9162
|
-
"<%= config.bin %> <%= command.id %>
|
|
9163
|
-
"<%= config.bin %> <%= command.id %>
|
|
9164
|
-
"<%= config.bin %> <%= command.id %>
|
|
9148
|
+
"<%= config.bin %> <%= command.id %> my-project --name \"New Project Name\"",
|
|
9149
|
+
"<%= config.bin %> <%= command.id %> my-project --description \"Updated description\"",
|
|
9150
|
+
"<%= config.bin %> <%= command.id %> my-project --name \"New Name\" --description \"New description\"",
|
|
9151
|
+
"<%= config.bin %> <%= command.id %> my-project # Interactive mode"
|
|
9165
9152
|
],
|
|
9166
9153
|
"flags": {
|
|
9167
9154
|
"project": {
|
|
@@ -9184,36 +9171,52 @@
|
|
|
9184
9171
|
"name": "machine",
|
|
9185
9172
|
"allowNo": false,
|
|
9186
9173
|
"type": "boolean"
|
|
9174
|
+
},
|
|
9175
|
+
"name": {
|
|
9176
|
+
"char": "n",
|
|
9177
|
+
"description": "New project name",
|
|
9178
|
+
"name": "name",
|
|
9179
|
+
"hasDynamicHelp": false,
|
|
9180
|
+
"multiple": false,
|
|
9181
|
+
"type": "option"
|
|
9182
|
+
},
|
|
9183
|
+
"description": {
|
|
9184
|
+
"char": "d",
|
|
9185
|
+
"description": "New project description",
|
|
9186
|
+
"name": "description",
|
|
9187
|
+
"hasDynamicHelp": false,
|
|
9188
|
+
"multiple": false,
|
|
9189
|
+
"type": "option"
|
|
9187
9190
|
}
|
|
9188
9191
|
},
|
|
9189
9192
|
"hasDynamicHelp": false,
|
|
9190
9193
|
"hiddenAliases": [],
|
|
9191
|
-
"id": "
|
|
9194
|
+
"id": "project:update",
|
|
9192
9195
|
"pluginAlias": "@proletariat/cli",
|
|
9193
9196
|
"pluginName": "@proletariat/cli",
|
|
9194
9197
|
"pluginType": "core",
|
|
9195
|
-
"strict":
|
|
9198
|
+
"strict": true,
|
|
9196
9199
|
"isESM": true,
|
|
9197
9200
|
"relativePath": [
|
|
9198
9201
|
"dist",
|
|
9199
9202
|
"commands",
|
|
9200
|
-
"
|
|
9201
|
-
"
|
|
9203
|
+
"project",
|
|
9204
|
+
"update.js"
|
|
9202
9205
|
]
|
|
9203
9206
|
},
|
|
9204
|
-
"project:
|
|
9207
|
+
"project:view": {
|
|
9205
9208
|
"aliases": [],
|
|
9206
9209
|
"args": {
|
|
9207
9210
|
"id": {
|
|
9208
|
-
"description": "Project ID",
|
|
9211
|
+
"description": "Project ID to view - prompts with dropdown if not provided",
|
|
9209
9212
|
"name": "id",
|
|
9210
|
-
"required":
|
|
9213
|
+
"required": false
|
|
9211
9214
|
}
|
|
9212
9215
|
},
|
|
9213
|
-
"description": "
|
|
9216
|
+
"description": "View a project's board",
|
|
9214
9217
|
"examples": [
|
|
9215
|
-
"<%= config.bin %> <%= command.id %>
|
|
9216
|
-
"<%= config.bin %> <%= command.id %>
|
|
9218
|
+
"<%= config.bin %> <%= command.id %> my-project",
|
|
9219
|
+
"<%= config.bin %> <%= command.id %> # Views default project"
|
|
9217
9220
|
],
|
|
9218
9221
|
"flags": {
|
|
9219
9222
|
"project": {
|
|
@@ -9236,18 +9239,11 @@
|
|
|
9236
9239
|
"name": "machine",
|
|
9237
9240
|
"allowNo": false,
|
|
9238
9241
|
"type": "boolean"
|
|
9239
|
-
},
|
|
9240
|
-
"force": {
|
|
9241
|
-
"char": "f",
|
|
9242
|
-
"description": "Skip confirmation",
|
|
9243
|
-
"name": "force",
|
|
9244
|
-
"allowNo": false,
|
|
9245
|
-
"type": "boolean"
|
|
9246
9242
|
}
|
|
9247
9243
|
},
|
|
9248
9244
|
"hasDynamicHelp": false,
|
|
9249
9245
|
"hiddenAliases": [],
|
|
9250
|
-
"id": "project:
|
|
9246
|
+
"id": "project:view",
|
|
9251
9247
|
"pluginAlias": "@proletariat/cli",
|
|
9252
9248
|
"pluginName": "@proletariat/cli",
|
|
9253
9249
|
"pluginType": "core",
|
|
@@ -9257,24 +9253,23 @@
|
|
|
9257
9253
|
"dist",
|
|
9258
9254
|
"commands",
|
|
9259
9255
|
"project",
|
|
9260
|
-
"
|
|
9256
|
+
"view.js"
|
|
9261
9257
|
]
|
|
9262
9258
|
},
|
|
9263
|
-
"
|
|
9259
|
+
"pr:checks": {
|
|
9264
9260
|
"aliases": [],
|
|
9265
9261
|
"args": {
|
|
9266
|
-
"
|
|
9267
|
-
"description": "
|
|
9268
|
-
"name": "
|
|
9262
|
+
"prNumber": {
|
|
9263
|
+
"description": "PR number (defaults to PR for current branch)",
|
|
9264
|
+
"name": "prNumber",
|
|
9269
9265
|
"required": false
|
|
9270
9266
|
}
|
|
9271
9267
|
},
|
|
9272
|
-
"description": "
|
|
9268
|
+
"description": "Show CI check status for a pull request",
|
|
9273
9269
|
"examples": [
|
|
9274
|
-
"<%= config.bin %> <%= command.id %>
|
|
9275
|
-
"<%= config.bin %> <%= command.id %>
|
|
9276
|
-
"<%= config.bin %> <%= command.id %>
|
|
9277
|
-
"<%= config.bin %> <%= command.id %> --name \"Test\" --dry-run --json # Validate without creating"
|
|
9270
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9271
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
9272
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9278
9273
|
],
|
|
9279
9274
|
"flags": {
|
|
9280
9275
|
"project": {
|
|
@@ -9297,64 +9292,11 @@
|
|
|
9297
9292
|
"name": "machine",
|
|
9298
9293
|
"allowNo": false,
|
|
9299
9294
|
"type": "boolean"
|
|
9300
|
-
},
|
|
9301
|
-
"name": {
|
|
9302
|
-
"char": "n",
|
|
9303
|
-
"description": "Project name [required for non-interactive]",
|
|
9304
|
-
"name": "name",
|
|
9305
|
-
"hasDynamicHelp": false,
|
|
9306
|
-
"multiple": false,
|
|
9307
|
-
"type": "option"
|
|
9308
|
-
},
|
|
9309
|
-
"id": {
|
|
9310
|
-
"description": "Custom project ID (auto-generated from name if not provided)",
|
|
9311
|
-
"name": "id",
|
|
9312
|
-
"hasDynamicHelp": false,
|
|
9313
|
-
"multiple": false,
|
|
9314
|
-
"type": "option"
|
|
9315
|
-
},
|
|
9316
|
-
"description": {
|
|
9317
|
-
"char": "d",
|
|
9318
|
-
"description": "Project description",
|
|
9319
|
-
"name": "description",
|
|
9320
|
-
"hasDynamicHelp": false,
|
|
9321
|
-
"multiple": false,
|
|
9322
|
-
"type": "option"
|
|
9323
|
-
},
|
|
9324
|
-
"template": {
|
|
9325
|
-
"char": "t",
|
|
9326
|
-
"description": "Workflow template",
|
|
9327
|
-
"name": "template",
|
|
9328
|
-
"default": "kanban",
|
|
9329
|
-
"hasDynamicHelp": false,
|
|
9330
|
-
"multiple": false,
|
|
9331
|
-
"options": [
|
|
9332
|
-
"default",
|
|
9333
|
-
"kanban",
|
|
9334
|
-
"linear",
|
|
9335
|
-
"5-tool-founder",
|
|
9336
|
-
"bug-smash",
|
|
9337
|
-
"gtm"
|
|
9338
|
-
],
|
|
9339
|
-
"type": "option"
|
|
9340
|
-
},
|
|
9341
|
-
"interactive": {
|
|
9342
|
-
"char": "i",
|
|
9343
|
-
"description": "Interactive mode",
|
|
9344
|
-
"name": "interactive",
|
|
9345
|
-
"allowNo": false,
|
|
9346
|
-
"type": "boolean"
|
|
9347
|
-
},
|
|
9348
|
-
"dry-run": {
|
|
9349
|
-
"description": "Validate inputs without creating project (use with --json for structured output)",
|
|
9350
|
-
"name": "dry-run",
|
|
9351
|
-
"allowNo": false,
|
|
9352
|
-
"type": "boolean"
|
|
9353
9295
|
}
|
|
9354
9296
|
},
|
|
9355
9297
|
"hasDynamicHelp": false,
|
|
9356
9298
|
"hiddenAliases": [],
|
|
9357
|
-
"id": "
|
|
9299
|
+
"id": "pr:checks",
|
|
9358
9300
|
"pluginAlias": "@proletariat/cli",
|
|
9359
9301
|
"pluginName": "@proletariat/cli",
|
|
9360
9302
|
"pluginType": "core",
|
|
@@ -9363,23 +9305,25 @@
|
|
|
9363
9305
|
"relativePath": [
|
|
9364
9306
|
"dist",
|
|
9365
9307
|
"commands",
|
|
9366
|
-
"
|
|
9367
|
-
"
|
|
9308
|
+
"pr",
|
|
9309
|
+
"checks.js"
|
|
9368
9310
|
]
|
|
9369
9311
|
},
|
|
9370
|
-
"
|
|
9312
|
+
"pr:create": {
|
|
9371
9313
|
"aliases": [],
|
|
9372
9314
|
"args": {
|
|
9373
|
-
"
|
|
9374
|
-
"description": "
|
|
9375
|
-
"name": "
|
|
9315
|
+
"ticketId": {
|
|
9316
|
+
"description": "Ticket ID to link to PR - auto-detects from branch if not provided",
|
|
9317
|
+
"name": "ticketId",
|
|
9376
9318
|
"required": false
|
|
9377
9319
|
}
|
|
9378
9320
|
},
|
|
9379
|
-
"description": "
|
|
9321
|
+
"description": "Create a GitHub pull request from the current branch",
|
|
9380
9322
|
"examples": [
|
|
9381
|
-
"<%= config.bin %> <%= command.id %>
|
|
9382
|
-
"<%= config.bin %> <%= command.id %>
|
|
9323
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9324
|
+
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
9325
|
+
"<%= config.bin %> <%= command.id %> --draft",
|
|
9326
|
+
"<%= config.bin %> <%= command.id %> --base develop"
|
|
9383
9327
|
],
|
|
9384
9328
|
"flags": {
|
|
9385
9329
|
"project": {
|
|
@@ -9403,17 +9347,53 @@
|
|
|
9403
9347
|
"allowNo": false,
|
|
9404
9348
|
"type": "boolean"
|
|
9405
9349
|
},
|
|
9406
|
-
"
|
|
9407
|
-
"char": "
|
|
9408
|
-
"description": "
|
|
9409
|
-
"name": "
|
|
9350
|
+
"base": {
|
|
9351
|
+
"char": "b",
|
|
9352
|
+
"description": "Base branch for the PR (defaults to main/master)",
|
|
9353
|
+
"name": "base",
|
|
9354
|
+
"hasDynamicHelp": false,
|
|
9355
|
+
"multiple": false,
|
|
9356
|
+
"type": "option"
|
|
9357
|
+
},
|
|
9358
|
+
"draft": {
|
|
9359
|
+
"char": "d",
|
|
9360
|
+
"description": "Create as draft PR",
|
|
9361
|
+
"name": "draft",
|
|
9410
9362
|
"allowNo": false,
|
|
9411
9363
|
"type": "boolean"
|
|
9364
|
+
},
|
|
9365
|
+
"no-link": {
|
|
9366
|
+
"description": "Skip linking PR to ticket",
|
|
9367
|
+
"name": "no-link",
|
|
9368
|
+
"allowNo": false,
|
|
9369
|
+
"type": "boolean"
|
|
9370
|
+
},
|
|
9371
|
+
"title": {
|
|
9372
|
+
"char": "t",
|
|
9373
|
+
"description": "PR title (auto-generated from ticket if not provided)",
|
|
9374
|
+
"name": "title",
|
|
9375
|
+
"hasDynamicHelp": false,
|
|
9376
|
+
"multiple": false,
|
|
9377
|
+
"type": "option"
|
|
9378
|
+
},
|
|
9379
|
+
"body": {
|
|
9380
|
+
"description": "PR body/description",
|
|
9381
|
+
"name": "body",
|
|
9382
|
+
"hasDynamicHelp": false,
|
|
9383
|
+
"multiple": false,
|
|
9384
|
+
"type": "option"
|
|
9385
|
+
},
|
|
9386
|
+
"ticket": {
|
|
9387
|
+
"description": "Ticket ID to link (alternative to positional arg)",
|
|
9388
|
+
"name": "ticket",
|
|
9389
|
+
"hasDynamicHelp": false,
|
|
9390
|
+
"multiple": false,
|
|
9391
|
+
"type": "option"
|
|
9412
9392
|
}
|
|
9413
9393
|
},
|
|
9414
9394
|
"hasDynamicHelp": false,
|
|
9415
9395
|
"hiddenAliases": [],
|
|
9416
|
-
"id": "
|
|
9396
|
+
"id": "pr:create",
|
|
9417
9397
|
"pluginAlias": "@proletariat/cli",
|
|
9418
9398
|
"pluginName": "@proletariat/cli",
|
|
9419
9399
|
"pluginType": "core",
|
|
@@ -9422,14 +9402,14 @@
|
|
|
9422
9402
|
"relativePath": [
|
|
9423
9403
|
"dist",
|
|
9424
9404
|
"commands",
|
|
9425
|
-
"
|
|
9426
|
-
"
|
|
9405
|
+
"pr",
|
|
9406
|
+
"create.js"
|
|
9427
9407
|
]
|
|
9428
9408
|
},
|
|
9429
|
-
"
|
|
9409
|
+
"pr": {
|
|
9430
9410
|
"aliases": [],
|
|
9431
9411
|
"args": {},
|
|
9432
|
-
"description": "Interactive menu for
|
|
9412
|
+
"description": "Interactive menu for pull request operations",
|
|
9433
9413
|
"examples": [
|
|
9434
9414
|
"<%= config.bin %> <%= command.id %>"
|
|
9435
9415
|
],
|
|
@@ -9454,11 +9434,27 @@
|
|
|
9454
9434
|
"name": "machine",
|
|
9455
9435
|
"allowNo": false,
|
|
9456
9436
|
"type": "boolean"
|
|
9437
|
+
},
|
|
9438
|
+
"action": {
|
|
9439
|
+
"char": "a",
|
|
9440
|
+
"description": "Action to perform (list, create, merge, checks, link, status)",
|
|
9441
|
+
"name": "action",
|
|
9442
|
+
"hasDynamicHelp": false,
|
|
9443
|
+
"multiple": false,
|
|
9444
|
+
"options": [
|
|
9445
|
+
"list",
|
|
9446
|
+
"create",
|
|
9447
|
+
"merge",
|
|
9448
|
+
"checks",
|
|
9449
|
+
"link",
|
|
9450
|
+
"status"
|
|
9451
|
+
],
|
|
9452
|
+
"type": "option"
|
|
9457
9453
|
}
|
|
9458
9454
|
},
|
|
9459
9455
|
"hasDynamicHelp": false,
|
|
9460
9456
|
"hiddenAliases": [],
|
|
9461
|
-
"id": "
|
|
9457
|
+
"id": "pr",
|
|
9462
9458
|
"pluginAlias": "@proletariat/cli",
|
|
9463
9459
|
"pluginName": "@proletariat/cli",
|
|
9464
9460
|
"pluginType": "core",
|
|
@@ -9467,18 +9463,25 @@
|
|
|
9467
9463
|
"relativePath": [
|
|
9468
9464
|
"dist",
|
|
9469
9465
|
"commands",
|
|
9470
|
-
"
|
|
9466
|
+
"pr",
|
|
9471
9467
|
"index.js"
|
|
9472
9468
|
]
|
|
9473
9469
|
},
|
|
9474
|
-
"
|
|
9470
|
+
"pr:link": {
|
|
9475
9471
|
"aliases": [],
|
|
9476
|
-
"args": {
|
|
9477
|
-
|
|
9472
|
+
"args": {
|
|
9473
|
+
"ticketId": {
|
|
9474
|
+
"description": "Ticket ID to link PR to",
|
|
9475
|
+
"name": "ticketId",
|
|
9476
|
+
"required": false
|
|
9477
|
+
}
|
|
9478
|
+
},
|
|
9479
|
+
"description": "Link an existing GitHub pull request to a ticket",
|
|
9478
9480
|
"examples": [
|
|
9479
9481
|
"<%= config.bin %> <%= command.id %>",
|
|
9480
|
-
"<%= config.bin %> <%= command.id %>
|
|
9481
|
-
"<%= config.bin %> <%= command.id %> --
|
|
9482
|
+
"<%= config.bin %> <%= command.id %> TKT-001",
|
|
9483
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --pr 123",
|
|
9484
|
+
"<%= config.bin %> <%= command.id %> TKT-001 --url https://github.com/owner/repo/pull/123"
|
|
9482
9485
|
],
|
|
9483
9486
|
"flags": {
|
|
9484
9487
|
"project": {
|
|
@@ -9502,23 +9505,39 @@
|
|
|
9502
9505
|
"allowNo": false,
|
|
9503
9506
|
"type": "boolean"
|
|
9504
9507
|
},
|
|
9505
|
-
"
|
|
9506
|
-
"char": "
|
|
9507
|
-
"description": "
|
|
9508
|
-
"name": "
|
|
9509
|
-
"
|
|
9510
|
-
"
|
|
9508
|
+
"pr": {
|
|
9509
|
+
"char": "p",
|
|
9510
|
+
"description": "PR number to link",
|
|
9511
|
+
"name": "pr",
|
|
9512
|
+
"hasDynamicHelp": false,
|
|
9513
|
+
"multiple": false,
|
|
9514
|
+
"type": "option"
|
|
9511
9515
|
},
|
|
9512
|
-
"
|
|
9513
|
-
"
|
|
9514
|
-
"
|
|
9516
|
+
"url": {
|
|
9517
|
+
"char": "u",
|
|
9518
|
+
"description": "PR URL to link",
|
|
9519
|
+
"name": "url",
|
|
9520
|
+
"hasDynamicHelp": false,
|
|
9521
|
+
"multiple": false,
|
|
9522
|
+
"type": "option"
|
|
9523
|
+
},
|
|
9524
|
+
"ticket": {
|
|
9525
|
+
"description": "Ticket ID to link (alternative to positional arg)",
|
|
9526
|
+
"name": "ticket",
|
|
9527
|
+
"hasDynamicHelp": false,
|
|
9528
|
+
"multiple": false,
|
|
9529
|
+
"type": "option"
|
|
9530
|
+
},
|
|
9531
|
+
"confirm": {
|
|
9532
|
+
"description": "Confirm overwriting existing PR link",
|
|
9533
|
+
"name": "confirm",
|
|
9515
9534
|
"allowNo": false,
|
|
9516
9535
|
"type": "boolean"
|
|
9517
9536
|
}
|
|
9518
9537
|
},
|
|
9519
9538
|
"hasDynamicHelp": false,
|
|
9520
9539
|
"hiddenAliases": [],
|
|
9521
|
-
"id": "
|
|
9540
|
+
"id": "pr:link",
|
|
9522
9541
|
"pluginAlias": "@proletariat/cli",
|
|
9523
9542
|
"pluginName": "@proletariat/cli",
|
|
9524
9543
|
"pluginType": "core",
|
|
@@ -9527,25 +9546,20 @@
|
|
|
9527
9546
|
"relativePath": [
|
|
9528
9547
|
"dist",
|
|
9529
9548
|
"commands",
|
|
9530
|
-
"
|
|
9531
|
-
"
|
|
9549
|
+
"pr",
|
|
9550
|
+
"link.js"
|
|
9532
9551
|
]
|
|
9533
9552
|
},
|
|
9534
|
-
"
|
|
9553
|
+
"pr:list": {
|
|
9535
9554
|
"aliases": [],
|
|
9536
|
-
"args": {
|
|
9537
|
-
|
|
9538
|
-
"description": "Project ID",
|
|
9539
|
-
"name": "projectId",
|
|
9540
|
-
"required": false
|
|
9541
|
-
}
|
|
9542
|
-
},
|
|
9543
|
-
"description": "Manage specs associated with a project (many-to-many)",
|
|
9555
|
+
"args": {},
|
|
9556
|
+
"description": "List pull requests linked to tickets in the workspace",
|
|
9544
9557
|
"examples": [
|
|
9545
|
-
"<%= config.bin %> <%= command.id %>
|
|
9546
|
-
"<%= config.bin %> <%= command.id %>
|
|
9547
|
-
"<%= config.bin %> <%= command.id %>
|
|
9548
|
-
"<%= config.bin %> <%= command.id %>"
|
|
9558
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9559
|
+
"<%= config.bin %> <%= command.id %> --state open",
|
|
9560
|
+
"<%= config.bin %> <%= command.id %> --state draft",
|
|
9561
|
+
"<%= config.bin %> <%= command.id %> --format json",
|
|
9562
|
+
"<%= config.bin %> <%= command.id %> --machine"
|
|
9549
9563
|
],
|
|
9550
9564
|
"flags": {
|
|
9551
9565
|
"project": {
|
|
@@ -9569,77 +9583,47 @@
|
|
|
9569
9583
|
"allowNo": false,
|
|
9570
9584
|
"type": "boolean"
|
|
9571
9585
|
},
|
|
9572
|
-
"
|
|
9573
|
-
"char": "
|
|
9574
|
-
"description": "
|
|
9575
|
-
"name": "
|
|
9586
|
+
"state": {
|
|
9587
|
+
"char": "s",
|
|
9588
|
+
"description": "Filter by PR state",
|
|
9589
|
+
"name": "state",
|
|
9590
|
+
"default": "open",
|
|
9576
9591
|
"hasDynamicHelp": false,
|
|
9577
9592
|
"multiple": false,
|
|
9593
|
+
"options": [
|
|
9594
|
+
"open",
|
|
9595
|
+
"draft",
|
|
9596
|
+
"all"
|
|
9597
|
+
],
|
|
9578
9598
|
"type": "option"
|
|
9579
9599
|
},
|
|
9580
|
-
"
|
|
9581
|
-
"char": "
|
|
9582
|
-
"description": "
|
|
9583
|
-
"name": "
|
|
9600
|
+
"format": {
|
|
9601
|
+
"char": "f",
|
|
9602
|
+
"description": "Output format",
|
|
9603
|
+
"name": "format",
|
|
9604
|
+
"default": "table",
|
|
9584
9605
|
"hasDynamicHelp": false,
|
|
9585
9606
|
"multiple": false,
|
|
9607
|
+
"options": [
|
|
9608
|
+
"table",
|
|
9609
|
+
"compact",
|
|
9610
|
+
"json"
|
|
9611
|
+
],
|
|
9586
9612
|
"type": "option"
|
|
9587
|
-
}
|
|
9588
|
-
|
|
9589
|
-
|
|
9590
|
-
|
|
9591
|
-
|
|
9592
|
-
|
|
9593
|
-
"pluginName": "@proletariat/cli",
|
|
9594
|
-
"pluginType": "core",
|
|
9595
|
-
"strict": true,
|
|
9596
|
-
"isESM": true,
|
|
9597
|
-
"relativePath": [
|
|
9598
|
-
"dist",
|
|
9599
|
-
"commands",
|
|
9600
|
-
"project",
|
|
9601
|
-
"spec.js"
|
|
9602
|
-
]
|
|
9603
|
-
},
|
|
9604
|
-
"project:unarchive": {
|
|
9605
|
-
"aliases": [],
|
|
9606
|
-
"args": {
|
|
9607
|
-
"id": {
|
|
9608
|
-
"description": "Project ID",
|
|
9609
|
-
"name": "id",
|
|
9610
|
-
"required": true
|
|
9611
|
-
}
|
|
9612
|
-
},
|
|
9613
|
-
"description": "Unarchive a project (restore to default views)",
|
|
9614
|
-
"examples": [
|
|
9615
|
-
"<%= config.bin %> <%= command.id %> old-project"
|
|
9616
|
-
],
|
|
9617
|
-
"flags": {
|
|
9618
|
-
"project": {
|
|
9619
|
-
"char": "P",
|
|
9620
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
9621
|
-
"name": "project",
|
|
9613
|
+
},
|
|
9614
|
+
"limit": {
|
|
9615
|
+
"char": "l",
|
|
9616
|
+
"description": "Maximum number of PRs to show",
|
|
9617
|
+
"name": "limit",
|
|
9618
|
+
"default": 50,
|
|
9622
9619
|
"hasDynamicHelp": false,
|
|
9623
9620
|
"multiple": false,
|
|
9624
9621
|
"type": "option"
|
|
9625
|
-
},
|
|
9626
|
-
"json": {
|
|
9627
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9628
|
-
"name": "json",
|
|
9629
|
-
"allowNo": false,
|
|
9630
|
-
"type": "boolean"
|
|
9631
|
-
},
|
|
9632
|
-
"machine": {
|
|
9633
|
-
"char": "m",
|
|
9634
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
9635
|
-
"name": "machine",
|
|
9636
|
-
"allowNo": false,
|
|
9637
|
-
"type": "boolean"
|
|
9638
9622
|
}
|
|
9639
9623
|
},
|
|
9640
9624
|
"hasDynamicHelp": false,
|
|
9641
9625
|
"hiddenAliases": [],
|
|
9642
|
-
"id": "
|
|
9626
|
+
"id": "pr:list",
|
|
9643
9627
|
"pluginAlias": "@proletariat/cli",
|
|
9644
9628
|
"pluginName": "@proletariat/cli",
|
|
9645
9629
|
"pluginType": "core",
|
|
@@ -9648,25 +9632,25 @@
|
|
|
9648
9632
|
"relativePath": [
|
|
9649
9633
|
"dist",
|
|
9650
9634
|
"commands",
|
|
9651
|
-
"
|
|
9652
|
-
"
|
|
9635
|
+
"pr",
|
|
9636
|
+
"list.js"
|
|
9653
9637
|
]
|
|
9654
9638
|
},
|
|
9655
|
-
"
|
|
9639
|
+
"pr:merge": {
|
|
9656
9640
|
"aliases": [],
|
|
9657
9641
|
"args": {
|
|
9658
|
-
"
|
|
9659
|
-
"description": "
|
|
9660
|
-
"name": "
|
|
9642
|
+
"prNumber": {
|
|
9643
|
+
"description": "PR number to merge",
|
|
9644
|
+
"name": "prNumber",
|
|
9661
9645
|
"required": false
|
|
9662
9646
|
}
|
|
9663
9647
|
},
|
|
9664
|
-
"description": "
|
|
9648
|
+
"description": "Merge a GitHub pull request by number",
|
|
9665
9649
|
"examples": [
|
|
9666
|
-
"<%= config.bin %> <%= command.id %>
|
|
9667
|
-
"<%= config.bin %> <%= command.id %>
|
|
9668
|
-
"<%= config.bin %> <%= command.id %>
|
|
9669
|
-
"<%= config.bin %> <%= command.id %>
|
|
9650
|
+
"<%= config.bin %> <%= command.id %> 123",
|
|
9651
|
+
"<%= config.bin %> <%= command.id %> 123 --method squash",
|
|
9652
|
+
"<%= config.bin %> <%= command.id %> 123 --no-delete-branch",
|
|
9653
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9670
9654
|
],
|
|
9671
9655
|
"flags": {
|
|
9672
9656
|
"project": {
|
|
@@ -9690,26 +9674,35 @@
|
|
|
9690
9674
|
"allowNo": false,
|
|
9691
9675
|
"type": "boolean"
|
|
9692
9676
|
},
|
|
9693
|
-
"
|
|
9694
|
-
"
|
|
9695
|
-
"
|
|
9696
|
-
"
|
|
9677
|
+
"method": {
|
|
9678
|
+
"description": "Merge method",
|
|
9679
|
+
"name": "method",
|
|
9680
|
+
"default": "merge",
|
|
9697
9681
|
"hasDynamicHelp": false,
|
|
9698
9682
|
"multiple": false,
|
|
9683
|
+
"options": [
|
|
9684
|
+
"merge",
|
|
9685
|
+
"squash",
|
|
9686
|
+
"rebase"
|
|
9687
|
+
],
|
|
9699
9688
|
"type": "option"
|
|
9700
9689
|
},
|
|
9701
|
-
"
|
|
9702
|
-
"
|
|
9703
|
-
"
|
|
9704
|
-
"
|
|
9705
|
-
"
|
|
9706
|
-
|
|
9707
|
-
|
|
9690
|
+
"delete-branch": {
|
|
9691
|
+
"description": "Delete branch after merging",
|
|
9692
|
+
"name": "delete-branch",
|
|
9693
|
+
"allowNo": true,
|
|
9694
|
+
"type": "boolean"
|
|
9695
|
+
},
|
|
9696
|
+
"admin": {
|
|
9697
|
+
"description": "Use admin privileges to bypass branch protections",
|
|
9698
|
+
"name": "admin",
|
|
9699
|
+
"allowNo": false,
|
|
9700
|
+
"type": "boolean"
|
|
9708
9701
|
}
|
|
9709
9702
|
},
|
|
9710
9703
|
"hasDynamicHelp": false,
|
|
9711
9704
|
"hiddenAliases": [],
|
|
9712
|
-
"id": "
|
|
9705
|
+
"id": "pr:merge",
|
|
9713
9706
|
"pluginAlias": "@proletariat/cli",
|
|
9714
9707
|
"pluginName": "@proletariat/cli",
|
|
9715
9708
|
"pluginType": "core",
|
|
@@ -9718,23 +9711,23 @@
|
|
|
9718
9711
|
"relativePath": [
|
|
9719
9712
|
"dist",
|
|
9720
9713
|
"commands",
|
|
9721
|
-
"
|
|
9722
|
-
"
|
|
9714
|
+
"pr",
|
|
9715
|
+
"merge.js"
|
|
9723
9716
|
]
|
|
9724
9717
|
},
|
|
9725
|
-
"
|
|
9718
|
+
"pr:status": {
|
|
9726
9719
|
"aliases": [],
|
|
9727
9720
|
"args": {
|
|
9728
|
-
"
|
|
9729
|
-
"description": "
|
|
9730
|
-
"name": "
|
|
9721
|
+
"ticketId": {
|
|
9722
|
+
"description": "Ticket ID to check PR status for",
|
|
9723
|
+
"name": "ticketId",
|
|
9731
9724
|
"required": false
|
|
9732
9725
|
}
|
|
9733
9726
|
},
|
|
9734
|
-
"description": "View a
|
|
9727
|
+
"description": "View PR status for a ticket",
|
|
9735
9728
|
"examples": [
|
|
9736
|
-
"<%= config.bin %> <%= command.id %>
|
|
9737
|
-
"<%= config.bin %> <%= command.id %>
|
|
9729
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9730
|
+
"<%= config.bin %> <%= command.id %> TKT-001"
|
|
9738
9731
|
],
|
|
9739
9732
|
"flags": {
|
|
9740
9733
|
"project": {
|
|
@@ -9757,11 +9750,18 @@
|
|
|
9757
9750
|
"name": "machine",
|
|
9758
9751
|
"allowNo": false,
|
|
9759
9752
|
"type": "boolean"
|
|
9753
|
+
},
|
|
9754
|
+
"ticket": {
|
|
9755
|
+
"description": "Ticket ID to check (alternative to positional arg)",
|
|
9756
|
+
"name": "ticket",
|
|
9757
|
+
"hasDynamicHelp": false,
|
|
9758
|
+
"multiple": false,
|
|
9759
|
+
"type": "option"
|
|
9760
9760
|
}
|
|
9761
9761
|
},
|
|
9762
9762
|
"hasDynamicHelp": false,
|
|
9763
9763
|
"hiddenAliases": [],
|
|
9764
|
-
"id": "
|
|
9764
|
+
"id": "pr:status",
|
|
9765
9765
|
"pluginAlias": "@proletariat/cli",
|
|
9766
9766
|
"pluginName": "@proletariat/cli",
|
|
9767
9767
|
"pluginType": "core",
|
|
@@ -9770,8 +9770,8 @@
|
|
|
9770
9770
|
"relativePath": [
|
|
9771
9771
|
"dist",
|
|
9772
9772
|
"commands",
|
|
9773
|
-
"
|
|
9774
|
-
"
|
|
9773
|
+
"pr",
|
|
9774
|
+
"status.js"
|
|
9775
9775
|
]
|
|
9776
9776
|
},
|
|
9777
9777
|
"qa": {
|
|
@@ -10313,33 +10313,194 @@
|
|
|
10313
10313
|
"view.js"
|
|
10314
10314
|
]
|
|
10315
10315
|
},
|
|
10316
|
-
"
|
|
10316
|
+
"run": {
|
|
10317
10317
|
"aliases": [],
|
|
10318
10318
|
"args": {
|
|
10319
|
-
"
|
|
10320
|
-
"description": "
|
|
10321
|
-
"name": "
|
|
10322
|
-
"required":
|
|
10323
|
-
},
|
|
10324
|
-
"project": {
|
|
10325
|
-
"description": "Project ID to add",
|
|
10326
|
-
"name": "project",
|
|
10327
|
-
"required": false
|
|
10319
|
+
"task": {
|
|
10320
|
+
"description": "Task description for the agent",
|
|
10321
|
+
"name": "task",
|
|
10322
|
+
"required": true
|
|
10328
10323
|
}
|
|
10329
10324
|
},
|
|
10330
|
-
"description": "
|
|
10325
|
+
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
10331
10326
|
"examples": [
|
|
10332
|
-
"<%= config.bin %>
|
|
10333
|
-
"<%= config.bin %>
|
|
10334
|
-
"<%= config.bin %>
|
|
10327
|
+
"<%= config.bin %> run \"fix the login bug\"",
|
|
10328
|
+
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
10329
|
+
"<%= config.bin %> run -d \"fix the bug\"",
|
|
10330
|
+
"<%= config.bin %> run --runner codex \"add tests\""
|
|
10335
10331
|
],
|
|
10336
10332
|
"flags": {
|
|
10337
|
-
"
|
|
10338
|
-
"
|
|
10339
|
-
"
|
|
10340
|
-
"
|
|
10341
|
-
"
|
|
10342
|
-
|
|
10333
|
+
"json": {
|
|
10334
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10335
|
+
"name": "json",
|
|
10336
|
+
"allowNo": false,
|
|
10337
|
+
"type": "boolean"
|
|
10338
|
+
},
|
|
10339
|
+
"machine": {
|
|
10340
|
+
"char": "m",
|
|
10341
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10342
|
+
"name": "machine",
|
|
10343
|
+
"allowNo": false,
|
|
10344
|
+
"type": "boolean"
|
|
10345
|
+
},
|
|
10346
|
+
"runner": {
|
|
10347
|
+
"char": "r",
|
|
10348
|
+
"description": "Runner to use (claude-code, codex, pi)",
|
|
10349
|
+
"name": "runner",
|
|
10350
|
+
"hasDynamicHelp": false,
|
|
10351
|
+
"multiple": false,
|
|
10352
|
+
"type": "option"
|
|
10353
|
+
},
|
|
10354
|
+
"detached": {
|
|
10355
|
+
"char": "d",
|
|
10356
|
+
"description": "Run in background (detached)",
|
|
10357
|
+
"name": "detached",
|
|
10358
|
+
"allowNo": false,
|
|
10359
|
+
"type": "boolean"
|
|
10360
|
+
},
|
|
10361
|
+
"directory": {
|
|
10362
|
+
"description": "Working directory (default: cwd)",
|
|
10363
|
+
"name": "directory",
|
|
10364
|
+
"hasDynamicHelp": false,
|
|
10365
|
+
"multiple": false,
|
|
10366
|
+
"type": "option"
|
|
10367
|
+
},
|
|
10368
|
+
"permission-mode": {
|
|
10369
|
+
"char": "p",
|
|
10370
|
+
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
10371
|
+
"name": "permission-mode",
|
|
10372
|
+
"hasDynamicHelp": false,
|
|
10373
|
+
"multiple": false,
|
|
10374
|
+
"options": [
|
|
10375
|
+
"danger",
|
|
10376
|
+
"safe"
|
|
10377
|
+
],
|
|
10378
|
+
"type": "option"
|
|
10379
|
+
},
|
|
10380
|
+
"environment": {
|
|
10381
|
+
"char": "e",
|
|
10382
|
+
"description": "Environment to run in",
|
|
10383
|
+
"name": "environment",
|
|
10384
|
+
"hasDynamicHelp": false,
|
|
10385
|
+
"multiple": false,
|
|
10386
|
+
"options": [
|
|
10387
|
+
"host",
|
|
10388
|
+
"docker",
|
|
10389
|
+
"podman"
|
|
10390
|
+
],
|
|
10391
|
+
"type": "option"
|
|
10392
|
+
}
|
|
10393
|
+
},
|
|
10394
|
+
"hasDynamicHelp": false,
|
|
10395
|
+
"hiddenAliases": [],
|
|
10396
|
+
"id": "run",
|
|
10397
|
+
"pluginAlias": "@proletariat/cli",
|
|
10398
|
+
"pluginName": "@proletariat/cli",
|
|
10399
|
+
"pluginType": "core",
|
|
10400
|
+
"strict": true,
|
|
10401
|
+
"isESM": true,
|
|
10402
|
+
"relativePath": [
|
|
10403
|
+
"dist",
|
|
10404
|
+
"commands",
|
|
10405
|
+
"run",
|
|
10406
|
+
"index.js"
|
|
10407
|
+
]
|
|
10408
|
+
},
|
|
10409
|
+
"shortcut:connect": {
|
|
10410
|
+
"aliases": [],
|
|
10411
|
+
"args": {},
|
|
10412
|
+
"description": "Connect to Shortcut workspace and configure authentication",
|
|
10413
|
+
"examples": [
|
|
10414
|
+
"<%= config.bin %> <%= command.id %>",
|
|
10415
|
+
"<%= config.bin %> <%= command.id %> --check",
|
|
10416
|
+
"<%= config.bin %> <%= command.id %> --force",
|
|
10417
|
+
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
10418
|
+
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
10419
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
10420
|
+
],
|
|
10421
|
+
"flags": {
|
|
10422
|
+
"project": {
|
|
10423
|
+
"char": "P",
|
|
10424
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10425
|
+
"name": "project",
|
|
10426
|
+
"hasDynamicHelp": false,
|
|
10427
|
+
"multiple": false,
|
|
10428
|
+
"type": "option"
|
|
10429
|
+
},
|
|
10430
|
+
"json": {
|
|
10431
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10432
|
+
"name": "json",
|
|
10433
|
+
"allowNo": false,
|
|
10434
|
+
"type": "boolean"
|
|
10435
|
+
},
|
|
10436
|
+
"machine": {
|
|
10437
|
+
"char": "m",
|
|
10438
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
10439
|
+
"name": "machine",
|
|
10440
|
+
"allowNo": false,
|
|
10441
|
+
"type": "boolean"
|
|
10442
|
+
},
|
|
10443
|
+
"check": {
|
|
10444
|
+
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
10445
|
+
"name": "check",
|
|
10446
|
+
"allowNo": false,
|
|
10447
|
+
"type": "boolean"
|
|
10448
|
+
},
|
|
10449
|
+
"force": {
|
|
10450
|
+
"description": "Force re-authentication even if credentials exist",
|
|
10451
|
+
"name": "force",
|
|
10452
|
+
"allowNo": false,
|
|
10453
|
+
"type": "boolean"
|
|
10454
|
+
},
|
|
10455
|
+
"disconnect": {
|
|
10456
|
+
"description": "Remove stored Shortcut credentials and configuration",
|
|
10457
|
+
"name": "disconnect",
|
|
10458
|
+
"allowNo": false,
|
|
10459
|
+
"type": "boolean"
|
|
10460
|
+
}
|
|
10461
|
+
},
|
|
10462
|
+
"hasDynamicHelp": false,
|
|
10463
|
+
"hiddenAliases": [],
|
|
10464
|
+
"id": "shortcut:connect",
|
|
10465
|
+
"pluginAlias": "@proletariat/cli",
|
|
10466
|
+
"pluginName": "@proletariat/cli",
|
|
10467
|
+
"pluginType": "core",
|
|
10468
|
+
"strict": true,
|
|
10469
|
+
"isESM": true,
|
|
10470
|
+
"relativePath": [
|
|
10471
|
+
"dist",
|
|
10472
|
+
"commands",
|
|
10473
|
+
"shortcut",
|
|
10474
|
+
"connect.js"
|
|
10475
|
+
]
|
|
10476
|
+
},
|
|
10477
|
+
"roadmap:add-project": {
|
|
10478
|
+
"aliases": [],
|
|
10479
|
+
"args": {
|
|
10480
|
+
"roadmap": {
|
|
10481
|
+
"description": "Roadmap ID",
|
|
10482
|
+
"name": "roadmap",
|
|
10483
|
+
"required": false
|
|
10484
|
+
},
|
|
10485
|
+
"project": {
|
|
10486
|
+
"description": "Project ID to add",
|
|
10487
|
+
"name": "project",
|
|
10488
|
+
"required": false
|
|
10489
|
+
}
|
|
10490
|
+
},
|
|
10491
|
+
"description": "Add a project to a roadmap",
|
|
10492
|
+
"examples": [
|
|
10493
|
+
"<%= config.bin %> <%= command.id %> my-roadmap my-project",
|
|
10494
|
+
"<%= config.bin %> <%= command.id %> my-roadmap # Interactive project selection",
|
|
10495
|
+
"<%= config.bin %> <%= command.id %> # Interactive selection for both"
|
|
10496
|
+
],
|
|
10497
|
+
"flags": {
|
|
10498
|
+
"project": {
|
|
10499
|
+
"char": "P",
|
|
10500
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
10501
|
+
"name": "project",
|
|
10502
|
+
"hasDynamicHelp": false,
|
|
10503
|
+
"multiple": false,
|
|
10343
10504
|
"type": "option"
|
|
10344
10505
|
},
|
|
10345
10506
|
"json": {
|
|
@@ -10869,413 +11030,42 @@
|
|
|
10869
11030
|
"hasDynamicHelp": false,
|
|
10870
11031
|
"multiple": false,
|
|
10871
11032
|
"type": "option"
|
|
10872
|
-
},
|
|
10873
|
-
"default": {
|
|
10874
|
-
"description": "Set as the default roadmap",
|
|
10875
|
-
"name": "default",
|
|
10876
|
-
"allowNo": true,
|
|
10877
|
-
"type": "boolean"
|
|
10878
|
-
}
|
|
10879
|
-
},
|
|
10880
|
-
"hasDynamicHelp": false,
|
|
10881
|
-
"hiddenAliases": [],
|
|
10882
|
-
"id": "roadmap:update",
|
|
10883
|
-
"pluginAlias": "@proletariat/cli",
|
|
10884
|
-
"pluginName": "@proletariat/cli",
|
|
10885
|
-
"pluginType": "core",
|
|
10886
|
-
"strict": true,
|
|
10887
|
-
"isESM": true,
|
|
10888
|
-
"relativePath": [
|
|
10889
|
-
"dist",
|
|
10890
|
-
"commands",
|
|
10891
|
-
"roadmap",
|
|
10892
|
-
"update.js"
|
|
10893
|
-
]
|
|
10894
|
-
},
|
|
10895
|
-
"roadmap:view": {
|
|
10896
|
-
"aliases": [],
|
|
10897
|
-
"args": {
|
|
10898
|
-
"id": {
|
|
10899
|
-
"description": "Roadmap ID to view",
|
|
10900
|
-
"name": "id",
|
|
10901
|
-
"required": false
|
|
10902
|
-
}
|
|
10903
|
-
},
|
|
10904
|
-
"description": "View roadmap details and its projects",
|
|
10905
|
-
"examples": [
|
|
10906
|
-
"<%= config.bin %> <%= command.id %> my-roadmap",
|
|
10907
|
-
"<%= config.bin %> <%= command.id %> # Interactive selection"
|
|
10908
|
-
],
|
|
10909
|
-
"flags": {
|
|
10910
|
-
"project": {
|
|
10911
|
-
"char": "P",
|
|
10912
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
10913
|
-
"name": "project",
|
|
10914
|
-
"hasDynamicHelp": false,
|
|
10915
|
-
"multiple": false,
|
|
10916
|
-
"type": "option"
|
|
10917
|
-
},
|
|
10918
|
-
"json": {
|
|
10919
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10920
|
-
"name": "json",
|
|
10921
|
-
"allowNo": false,
|
|
10922
|
-
"type": "boolean"
|
|
10923
|
-
},
|
|
10924
|
-
"machine": {
|
|
10925
|
-
"char": "m",
|
|
10926
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10927
|
-
"name": "machine",
|
|
10928
|
-
"allowNo": false,
|
|
10929
|
-
"type": "boolean"
|
|
10930
|
-
}
|
|
10931
|
-
},
|
|
10932
|
-
"hasDynamicHelp": false,
|
|
10933
|
-
"hiddenAliases": [],
|
|
10934
|
-
"id": "roadmap:view",
|
|
10935
|
-
"pluginAlias": "@proletariat/cli",
|
|
10936
|
-
"pluginName": "@proletariat/cli",
|
|
10937
|
-
"pluginType": "core",
|
|
10938
|
-
"strict": true,
|
|
10939
|
-
"isESM": true,
|
|
10940
|
-
"relativePath": [
|
|
10941
|
-
"dist",
|
|
10942
|
-
"commands",
|
|
10943
|
-
"roadmap",
|
|
10944
|
-
"view.js"
|
|
10945
|
-
]
|
|
10946
|
-
},
|
|
10947
|
-
"run": {
|
|
10948
|
-
"aliases": [],
|
|
10949
|
-
"args": {
|
|
10950
|
-
"task": {
|
|
10951
|
-
"description": "Task description for the agent",
|
|
10952
|
-
"name": "task",
|
|
10953
|
-
"required": true
|
|
10954
|
-
}
|
|
10955
|
-
},
|
|
10956
|
-
"description": "Spawn an agent to work on a task (works anywhere, no HQ required)",
|
|
10957
|
-
"examples": [
|
|
10958
|
-
"<%= config.bin %> run \"fix the login bug\"",
|
|
10959
|
-
"<%= config.bin %> run --runner claude-code \"add dark mode\"",
|
|
10960
|
-
"<%= config.bin %> run -d \"fix the bug\"",
|
|
10961
|
-
"<%= config.bin %> run --runner codex \"add tests\""
|
|
10962
|
-
],
|
|
10963
|
-
"flags": {
|
|
10964
|
-
"json": {
|
|
10965
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10966
|
-
"name": "json",
|
|
10967
|
-
"allowNo": false,
|
|
10968
|
-
"type": "boolean"
|
|
10969
|
-
},
|
|
10970
|
-
"machine": {
|
|
10971
|
-
"char": "m",
|
|
10972
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
10973
|
-
"name": "machine",
|
|
10974
|
-
"allowNo": false,
|
|
10975
|
-
"type": "boolean"
|
|
10976
|
-
},
|
|
10977
|
-
"runner": {
|
|
10978
|
-
"char": "r",
|
|
10979
|
-
"description": "Runner to use (claude-code, codex, pi)",
|
|
10980
|
-
"name": "runner",
|
|
10981
|
-
"hasDynamicHelp": false,
|
|
10982
|
-
"multiple": false,
|
|
10983
|
-
"type": "option"
|
|
10984
|
-
},
|
|
10985
|
-
"detached": {
|
|
10986
|
-
"char": "d",
|
|
10987
|
-
"description": "Run in background (detached)",
|
|
10988
|
-
"name": "detached",
|
|
10989
|
-
"allowNo": false,
|
|
10990
|
-
"type": "boolean"
|
|
10991
|
-
},
|
|
10992
|
-
"directory": {
|
|
10993
|
-
"description": "Working directory (default: cwd)",
|
|
10994
|
-
"name": "directory",
|
|
10995
|
-
"hasDynamicHelp": false,
|
|
10996
|
-
"multiple": false,
|
|
10997
|
-
"type": "option"
|
|
10998
|
-
},
|
|
10999
|
-
"permission-mode": {
|
|
11000
|
-
"char": "p",
|
|
11001
|
-
"description": "Permission mode (danger: skip prompts, safe: require approval)",
|
|
11002
|
-
"name": "permission-mode",
|
|
11003
|
-
"hasDynamicHelp": false,
|
|
11004
|
-
"multiple": false,
|
|
11005
|
-
"options": [
|
|
11006
|
-
"danger",
|
|
11007
|
-
"safe"
|
|
11008
|
-
],
|
|
11009
|
-
"type": "option"
|
|
11010
|
-
},
|
|
11011
|
-
"environment": {
|
|
11012
|
-
"char": "e",
|
|
11013
|
-
"description": "Environment to run in",
|
|
11014
|
-
"name": "environment",
|
|
11015
|
-
"hasDynamicHelp": false,
|
|
11016
|
-
"multiple": false,
|
|
11017
|
-
"options": [
|
|
11018
|
-
"host",
|
|
11019
|
-
"docker",
|
|
11020
|
-
"podman"
|
|
11021
|
-
],
|
|
11022
|
-
"type": "option"
|
|
11023
|
-
}
|
|
11024
|
-
},
|
|
11025
|
-
"hasDynamicHelp": false,
|
|
11026
|
-
"hiddenAliases": [],
|
|
11027
|
-
"id": "run",
|
|
11028
|
-
"pluginAlias": "@proletariat/cli",
|
|
11029
|
-
"pluginName": "@proletariat/cli",
|
|
11030
|
-
"pluginType": "core",
|
|
11031
|
-
"strict": true,
|
|
11032
|
-
"isESM": true,
|
|
11033
|
-
"relativePath": [
|
|
11034
|
-
"dist",
|
|
11035
|
-
"commands",
|
|
11036
|
-
"run",
|
|
11037
|
-
"index.js"
|
|
11038
|
-
]
|
|
11039
|
-
},
|
|
11040
|
-
"shortcut:connect": {
|
|
11041
|
-
"aliases": [],
|
|
11042
|
-
"args": {},
|
|
11043
|
-
"description": "Connect to Shortcut workspace and configure authentication",
|
|
11044
|
-
"examples": [
|
|
11045
|
-
"<%= config.bin %> <%= command.id %>",
|
|
11046
|
-
"<%= config.bin %> <%= command.id %> --check",
|
|
11047
|
-
"<%= config.bin %> <%= command.id %> --force",
|
|
11048
|
-
"<%= config.bin %> <%= command.id %> --disconnect",
|
|
11049
|
-
"SHORTCUT_API_TOKEN=... <%= config.bin %> <%= command.id %>",
|
|
11050
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
11051
|
-
],
|
|
11052
|
-
"flags": {
|
|
11053
|
-
"project": {
|
|
11054
|
-
"char": "P",
|
|
11055
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11056
|
-
"name": "project",
|
|
11057
|
-
"hasDynamicHelp": false,
|
|
11058
|
-
"multiple": false,
|
|
11059
|
-
"type": "option"
|
|
11060
|
-
},
|
|
11061
|
-
"json": {
|
|
11062
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11063
|
-
"name": "json",
|
|
11064
|
-
"allowNo": false,
|
|
11065
|
-
"type": "boolean"
|
|
11066
|
-
},
|
|
11067
|
-
"machine": {
|
|
11068
|
-
"char": "m",
|
|
11069
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11070
|
-
"name": "machine",
|
|
11071
|
-
"allowNo": false,
|
|
11072
|
-
"type": "boolean"
|
|
11073
|
-
},
|
|
11074
|
-
"check": {
|
|
11075
|
-
"description": "Only check if Shortcut credentials are valid (do not prompt)",
|
|
11076
|
-
"name": "check",
|
|
11077
|
-
"allowNo": false,
|
|
11078
|
-
"type": "boolean"
|
|
11079
|
-
},
|
|
11080
|
-
"force": {
|
|
11081
|
-
"description": "Force re-authentication even if credentials exist",
|
|
11082
|
-
"name": "force",
|
|
11083
|
-
"allowNo": false,
|
|
11084
|
-
"type": "boolean"
|
|
11085
|
-
},
|
|
11086
|
-
"disconnect": {
|
|
11087
|
-
"description": "Remove stored Shortcut credentials and configuration",
|
|
11088
|
-
"name": "disconnect",
|
|
11089
|
-
"allowNo": false,
|
|
11090
|
-
"type": "boolean"
|
|
11091
|
-
}
|
|
11092
|
-
},
|
|
11093
|
-
"hasDynamicHelp": false,
|
|
11094
|
-
"hiddenAliases": [],
|
|
11095
|
-
"id": "shortcut:connect",
|
|
11096
|
-
"pluginAlias": "@proletariat/cli",
|
|
11097
|
-
"pluginName": "@proletariat/cli",
|
|
11098
|
-
"pluginType": "core",
|
|
11099
|
-
"strict": true,
|
|
11100
|
-
"isESM": true,
|
|
11101
|
-
"relativePath": [
|
|
11102
|
-
"dist",
|
|
11103
|
-
"commands",
|
|
11104
|
-
"shortcut",
|
|
11105
|
-
"connect.js"
|
|
11106
|
-
]
|
|
11107
|
-
},
|
|
11108
|
-
"staff:add": {
|
|
11109
|
-
"aliases": [],
|
|
11110
|
-
"args": {
|
|
11111
|
-
"names": {
|
|
11112
|
-
"description": "Agent names to add (space-separated)",
|
|
11113
|
-
"name": "names",
|
|
11114
|
-
"required": false
|
|
11115
|
-
}
|
|
11116
|
-
},
|
|
11117
|
-
"description": "Add new agents to the workspace",
|
|
11118
|
-
"examples": [
|
|
11119
|
-
"<%= config.bin %> <%= command.id %> zeus",
|
|
11120
|
-
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
11121
|
-
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
11122
|
-
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
11123
|
-
],
|
|
11124
|
-
"flags": {
|
|
11125
|
-
"no-container": {
|
|
11126
|
-
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
11127
|
-
"name": "no-container",
|
|
11128
|
-
"allowNo": false,
|
|
11129
|
-
"type": "boolean"
|
|
11130
|
-
},
|
|
11131
|
-
"theme": {
|
|
11132
|
-
"char": "t",
|
|
11133
|
-
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
11134
|
-
"name": "theme",
|
|
11135
|
-
"hasDynamicHelp": false,
|
|
11136
|
-
"multiple": false,
|
|
11137
|
-
"type": "option"
|
|
11138
|
-
},
|
|
11139
|
-
"json": {
|
|
11140
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11141
|
-
"name": "json",
|
|
11142
|
-
"allowNo": false,
|
|
11143
|
-
"type": "boolean"
|
|
11144
|
-
},
|
|
11145
|
-
"machine": {
|
|
11146
|
-
"char": "m",
|
|
11147
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11148
|
-
"name": "machine",
|
|
11149
|
-
"allowNo": false,
|
|
11150
|
-
"type": "boolean"
|
|
11151
|
-
},
|
|
11152
|
-
"clone": {
|
|
11153
|
-
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
11154
|
-
"name": "clone",
|
|
11155
|
-
"allowNo": false,
|
|
11156
|
-
"type": "boolean"
|
|
11157
|
-
}
|
|
11158
|
-
},
|
|
11159
|
-
"hasDynamicHelp": false,
|
|
11160
|
-
"hiddenAliases": [],
|
|
11161
|
-
"id": "staff:add",
|
|
11162
|
-
"pluginAlias": "@proletariat/cli",
|
|
11163
|
-
"pluginName": "@proletariat/cli",
|
|
11164
|
-
"pluginType": "core",
|
|
11165
|
-
"strict": false,
|
|
11166
|
-
"isESM": true,
|
|
11167
|
-
"relativePath": [
|
|
11168
|
-
"dist",
|
|
11169
|
-
"commands",
|
|
11170
|
-
"agent",
|
|
11171
|
-
"staff",
|
|
11172
|
-
"add.js"
|
|
11173
|
-
]
|
|
11174
|
-
},
|
|
11175
|
-
"staff": {
|
|
11176
|
-
"aliases": [],
|
|
11177
|
-
"args": {},
|
|
11178
|
-
"description": "Manage staff (persistent) agents",
|
|
11179
|
-
"examples": [
|
|
11180
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
11181
|
-
"<%= config.bin %> <%= command.id %> add",
|
|
11182
|
-
"<%= config.bin %> <%= command.id %> remove camry"
|
|
11183
|
-
],
|
|
11184
|
-
"flags": {
|
|
11185
|
-
"project": {
|
|
11186
|
-
"char": "P",
|
|
11187
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
11188
|
-
"name": "project",
|
|
11189
|
-
"hasDynamicHelp": false,
|
|
11190
|
-
"multiple": false,
|
|
11191
|
-
"type": "option"
|
|
11192
|
-
},
|
|
11193
|
-
"json": {
|
|
11194
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11195
|
-
"name": "json",
|
|
11196
|
-
"allowNo": false,
|
|
11197
|
-
"type": "boolean"
|
|
11198
|
-
},
|
|
11199
|
-
"machine": {
|
|
11200
|
-
"char": "m",
|
|
11201
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11202
|
-
"name": "machine",
|
|
11203
|
-
"allowNo": false,
|
|
11204
|
-
"type": "boolean"
|
|
11205
|
-
},
|
|
11206
|
-
"no-interactive": {
|
|
11207
|
-
"description": "Alias for --json flag",
|
|
11208
|
-
"name": "no-interactive",
|
|
11209
|
-
"allowNo": false,
|
|
11210
|
-
"type": "boolean"
|
|
11211
|
-
}
|
|
11212
|
-
},
|
|
11213
|
-
"hasDynamicHelp": false,
|
|
11214
|
-
"hiddenAliases": [],
|
|
11215
|
-
"id": "staff",
|
|
11216
|
-
"pluginAlias": "@proletariat/cli",
|
|
11217
|
-
"pluginName": "@proletariat/cli",
|
|
11218
|
-
"pluginType": "core",
|
|
11219
|
-
"strict": true,
|
|
11220
|
-
"isESM": true,
|
|
11221
|
-
"relativePath": [
|
|
11222
|
-
"dist",
|
|
11223
|
-
"commands",
|
|
11224
|
-
"staff",
|
|
11225
|
-
"index.js"
|
|
11226
|
-
]
|
|
11227
|
-
},
|
|
11228
|
-
"staff:list": {
|
|
11229
|
-
"aliases": [],
|
|
11230
|
-
"args": {},
|
|
11231
|
-
"description": "List all staff (persistent) agents and their status",
|
|
11232
|
-
"examples": [
|
|
11233
|
-
"<%= config.bin %> <%= command.id %>"
|
|
11234
|
-
],
|
|
11235
|
-
"flags": {
|
|
11236
|
-
"json": {
|
|
11237
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11238
|
-
"name": "json",
|
|
11239
|
-
"allowNo": false,
|
|
11240
|
-
"type": "boolean"
|
|
11241
|
-
},
|
|
11242
|
-
"machine": {
|
|
11243
|
-
"char": "m",
|
|
11244
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
11245
|
-
"name": "machine",
|
|
11246
|
-
"allowNo": false,
|
|
11033
|
+
},
|
|
11034
|
+
"default": {
|
|
11035
|
+
"description": "Set as the default roadmap",
|
|
11036
|
+
"name": "default",
|
|
11037
|
+
"allowNo": true,
|
|
11247
11038
|
"type": "boolean"
|
|
11248
11039
|
}
|
|
11249
11040
|
},
|
|
11250
11041
|
"hasDynamicHelp": false,
|
|
11251
11042
|
"hiddenAliases": [],
|
|
11252
|
-
"id": "
|
|
11043
|
+
"id": "roadmap:update",
|
|
11253
11044
|
"pluginAlias": "@proletariat/cli",
|
|
11254
11045
|
"pluginName": "@proletariat/cli",
|
|
11255
11046
|
"pluginType": "core",
|
|
11256
11047
|
"strict": true,
|
|
11257
|
-
"enableJsonFlag": false,
|
|
11258
11048
|
"isESM": true,
|
|
11259
11049
|
"relativePath": [
|
|
11260
11050
|
"dist",
|
|
11261
11051
|
"commands",
|
|
11262
|
-
"
|
|
11263
|
-
"
|
|
11052
|
+
"roadmap",
|
|
11053
|
+
"update.js"
|
|
11264
11054
|
]
|
|
11265
11055
|
},
|
|
11266
|
-
"
|
|
11056
|
+
"roadmap:view": {
|
|
11267
11057
|
"aliases": [],
|
|
11268
11058
|
"args": {
|
|
11269
|
-
"
|
|
11270
|
-
"description": "
|
|
11271
|
-
"name": "
|
|
11059
|
+
"id": {
|
|
11060
|
+
"description": "Roadmap ID to view",
|
|
11061
|
+
"name": "id",
|
|
11272
11062
|
"required": false
|
|
11273
11063
|
}
|
|
11274
11064
|
},
|
|
11275
|
-
"description": "
|
|
11065
|
+
"description": "View roadmap details and its projects",
|
|
11276
11066
|
"examples": [
|
|
11277
|
-
"<%= config.bin %> <%= command.id %>
|
|
11278
|
-
"<%= config.bin %> <%= command.id %>"
|
|
11067
|
+
"<%= config.bin %> <%= command.id %> my-roadmap",
|
|
11068
|
+
"<%= config.bin %> <%= command.id %> # Interactive selection"
|
|
11279
11069
|
],
|
|
11280
11070
|
"flags": {
|
|
11281
11071
|
"project": {
|
|
@@ -11298,18 +11088,11 @@
|
|
|
11298
11088
|
"name": "machine",
|
|
11299
11089
|
"allowNo": false,
|
|
11300
11090
|
"type": "boolean"
|
|
11301
|
-
},
|
|
11302
|
-
"force": {
|
|
11303
|
-
"char": "f",
|
|
11304
|
-
"description": "Skip confirmation prompt (for non-interactive use)",
|
|
11305
|
-
"name": "force",
|
|
11306
|
-
"allowNo": false,
|
|
11307
|
-
"type": "boolean"
|
|
11308
11091
|
}
|
|
11309
11092
|
},
|
|
11310
11093
|
"hasDynamicHelp": false,
|
|
11311
11094
|
"hiddenAliases": [],
|
|
11312
|
-
"id": "
|
|
11095
|
+
"id": "roadmap:view",
|
|
11313
11096
|
"pluginAlias": "@proletariat/cli",
|
|
11314
11097
|
"pluginName": "@proletariat/cli",
|
|
11315
11098
|
"pluginType": "core",
|
|
@@ -11318,9 +11101,8 @@
|
|
|
11318
11101
|
"relativePath": [
|
|
11319
11102
|
"dist",
|
|
11320
11103
|
"commands",
|
|
11321
|
-
"
|
|
11322
|
-
"
|
|
11323
|
-
"remove.js"
|
|
11104
|
+
"roadmap",
|
|
11105
|
+
"view.js"
|
|
11324
11106
|
]
|
|
11325
11107
|
},
|
|
11326
11108
|
"session:attach": {
|
|
@@ -12103,7 +11885,224 @@
|
|
|
12103
11885
|
},
|
|
12104
11886
|
"hasDynamicHelp": false,
|
|
12105
11887
|
"hiddenAliases": [],
|
|
12106
|
-
"id": "session:restart",
|
|
11888
|
+
"id": "session:restart",
|
|
11889
|
+
"pluginAlias": "@proletariat/cli",
|
|
11890
|
+
"pluginName": "@proletariat/cli",
|
|
11891
|
+
"pluginType": "core",
|
|
11892
|
+
"strict": true,
|
|
11893
|
+
"isESM": true,
|
|
11894
|
+
"relativePath": [
|
|
11895
|
+
"dist",
|
|
11896
|
+
"commands",
|
|
11897
|
+
"session",
|
|
11898
|
+
"restart.js"
|
|
11899
|
+
]
|
|
11900
|
+
},
|
|
11901
|
+
"staff:add": {
|
|
11902
|
+
"aliases": [],
|
|
11903
|
+
"args": {
|
|
11904
|
+
"names": {
|
|
11905
|
+
"description": "Agent names to add (space-separated)",
|
|
11906
|
+
"name": "names",
|
|
11907
|
+
"required": false
|
|
11908
|
+
}
|
|
11909
|
+
},
|
|
11910
|
+
"description": "Add new agents to the workspace",
|
|
11911
|
+
"examples": [
|
|
11912
|
+
"<%= config.bin %> <%= command.id %> zeus",
|
|
11913
|
+
"<%= config.bin %> <%= command.id %> agent-1 agent-2",
|
|
11914
|
+
"<%= config.bin %> <%= command.id %> --theme billionaires",
|
|
11915
|
+
"<%= config.bin %> <%= command.id %> my-agent --no-container"
|
|
11916
|
+
],
|
|
11917
|
+
"flags": {
|
|
11918
|
+
"no-container": {
|
|
11919
|
+
"description": "Skip devcontainer setup (not recommended for autonomous agents)",
|
|
11920
|
+
"name": "no-container",
|
|
11921
|
+
"allowNo": false,
|
|
11922
|
+
"type": "boolean"
|
|
11923
|
+
},
|
|
11924
|
+
"theme": {
|
|
11925
|
+
"char": "t",
|
|
11926
|
+
"description": "Pick agent name(s) from a theme (billionaires, toyotas, companies, or custom)",
|
|
11927
|
+
"name": "theme",
|
|
11928
|
+
"hasDynamicHelp": false,
|
|
11929
|
+
"multiple": false,
|
|
11930
|
+
"type": "option"
|
|
11931
|
+
},
|
|
11932
|
+
"json": {
|
|
11933
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11934
|
+
"name": "json",
|
|
11935
|
+
"allowNo": false,
|
|
11936
|
+
"type": "boolean"
|
|
11937
|
+
},
|
|
11938
|
+
"machine": {
|
|
11939
|
+
"char": "m",
|
|
11940
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11941
|
+
"name": "machine",
|
|
11942
|
+
"allowNo": false,
|
|
11943
|
+
"type": "boolean"
|
|
11944
|
+
},
|
|
11945
|
+
"clone": {
|
|
11946
|
+
"description": "Use independent git clone instead of worktree (more isolation, no real-time sync)",
|
|
11947
|
+
"name": "clone",
|
|
11948
|
+
"allowNo": false,
|
|
11949
|
+
"type": "boolean"
|
|
11950
|
+
}
|
|
11951
|
+
},
|
|
11952
|
+
"hasDynamicHelp": false,
|
|
11953
|
+
"hiddenAliases": [],
|
|
11954
|
+
"id": "staff:add",
|
|
11955
|
+
"pluginAlias": "@proletariat/cli",
|
|
11956
|
+
"pluginName": "@proletariat/cli",
|
|
11957
|
+
"pluginType": "core",
|
|
11958
|
+
"strict": false,
|
|
11959
|
+
"isESM": true,
|
|
11960
|
+
"relativePath": [
|
|
11961
|
+
"dist",
|
|
11962
|
+
"commands",
|
|
11963
|
+
"agent",
|
|
11964
|
+
"staff",
|
|
11965
|
+
"add.js"
|
|
11966
|
+
]
|
|
11967
|
+
},
|
|
11968
|
+
"staff": {
|
|
11969
|
+
"aliases": [],
|
|
11970
|
+
"args": {},
|
|
11971
|
+
"description": "Manage staff (persistent) agents",
|
|
11972
|
+
"examples": [
|
|
11973
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
11974
|
+
"<%= config.bin %> <%= command.id %> add",
|
|
11975
|
+
"<%= config.bin %> <%= command.id %> remove camry"
|
|
11976
|
+
],
|
|
11977
|
+
"flags": {
|
|
11978
|
+
"project": {
|
|
11979
|
+
"char": "P",
|
|
11980
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
11981
|
+
"name": "project",
|
|
11982
|
+
"hasDynamicHelp": false,
|
|
11983
|
+
"multiple": false,
|
|
11984
|
+
"type": "option"
|
|
11985
|
+
},
|
|
11986
|
+
"json": {
|
|
11987
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11988
|
+
"name": "json",
|
|
11989
|
+
"allowNo": false,
|
|
11990
|
+
"type": "boolean"
|
|
11991
|
+
},
|
|
11992
|
+
"machine": {
|
|
11993
|
+
"char": "m",
|
|
11994
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
11995
|
+
"name": "machine",
|
|
11996
|
+
"allowNo": false,
|
|
11997
|
+
"type": "boolean"
|
|
11998
|
+
},
|
|
11999
|
+
"no-interactive": {
|
|
12000
|
+
"description": "Alias for --json flag",
|
|
12001
|
+
"name": "no-interactive",
|
|
12002
|
+
"allowNo": false,
|
|
12003
|
+
"type": "boolean"
|
|
12004
|
+
}
|
|
12005
|
+
},
|
|
12006
|
+
"hasDynamicHelp": false,
|
|
12007
|
+
"hiddenAliases": [],
|
|
12008
|
+
"id": "staff",
|
|
12009
|
+
"pluginAlias": "@proletariat/cli",
|
|
12010
|
+
"pluginName": "@proletariat/cli",
|
|
12011
|
+
"pluginType": "core",
|
|
12012
|
+
"strict": true,
|
|
12013
|
+
"isESM": true,
|
|
12014
|
+
"relativePath": [
|
|
12015
|
+
"dist",
|
|
12016
|
+
"commands",
|
|
12017
|
+
"staff",
|
|
12018
|
+
"index.js"
|
|
12019
|
+
]
|
|
12020
|
+
},
|
|
12021
|
+
"staff:list": {
|
|
12022
|
+
"aliases": [],
|
|
12023
|
+
"args": {},
|
|
12024
|
+
"description": "List all staff (persistent) agents and their status",
|
|
12025
|
+
"examples": [
|
|
12026
|
+
"<%= config.bin %> <%= command.id %>"
|
|
12027
|
+
],
|
|
12028
|
+
"flags": {
|
|
12029
|
+
"json": {
|
|
12030
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12031
|
+
"name": "json",
|
|
12032
|
+
"allowNo": false,
|
|
12033
|
+
"type": "boolean"
|
|
12034
|
+
},
|
|
12035
|
+
"machine": {
|
|
12036
|
+
"char": "m",
|
|
12037
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12038
|
+
"name": "machine",
|
|
12039
|
+
"allowNo": false,
|
|
12040
|
+
"type": "boolean"
|
|
12041
|
+
}
|
|
12042
|
+
},
|
|
12043
|
+
"hasDynamicHelp": false,
|
|
12044
|
+
"hiddenAliases": [],
|
|
12045
|
+
"id": "staff:list",
|
|
12046
|
+
"pluginAlias": "@proletariat/cli",
|
|
12047
|
+
"pluginName": "@proletariat/cli",
|
|
12048
|
+
"pluginType": "core",
|
|
12049
|
+
"strict": true,
|
|
12050
|
+
"enableJsonFlag": false,
|
|
12051
|
+
"isESM": true,
|
|
12052
|
+
"relativePath": [
|
|
12053
|
+
"dist",
|
|
12054
|
+
"commands",
|
|
12055
|
+
"staff",
|
|
12056
|
+
"list.js"
|
|
12057
|
+
]
|
|
12058
|
+
},
|
|
12059
|
+
"staff:remove": {
|
|
12060
|
+
"aliases": [],
|
|
12061
|
+
"args": {
|
|
12062
|
+
"name": {
|
|
12063
|
+
"description": "Agent name to remove",
|
|
12064
|
+
"name": "name",
|
|
12065
|
+
"required": false
|
|
12066
|
+
}
|
|
12067
|
+
},
|
|
12068
|
+
"description": "Remove a specific agent from the workspace",
|
|
12069
|
+
"examples": [
|
|
12070
|
+
"<%= config.bin %> <%= command.id %> camry",
|
|
12071
|
+
"<%= config.bin %> <%= command.id %>"
|
|
12072
|
+
],
|
|
12073
|
+
"flags": {
|
|
12074
|
+
"project": {
|
|
12075
|
+
"char": "P",
|
|
12076
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
12077
|
+
"name": "project",
|
|
12078
|
+
"hasDynamicHelp": false,
|
|
12079
|
+
"multiple": false,
|
|
12080
|
+
"type": "option"
|
|
12081
|
+
},
|
|
12082
|
+
"json": {
|
|
12083
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12084
|
+
"name": "json",
|
|
12085
|
+
"allowNo": false,
|
|
12086
|
+
"type": "boolean"
|
|
12087
|
+
},
|
|
12088
|
+
"machine": {
|
|
12089
|
+
"char": "m",
|
|
12090
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
12091
|
+
"name": "machine",
|
|
12092
|
+
"allowNo": false,
|
|
12093
|
+
"type": "boolean"
|
|
12094
|
+
},
|
|
12095
|
+
"force": {
|
|
12096
|
+
"char": "f",
|
|
12097
|
+
"description": "Skip confirmation prompt (for non-interactive use)",
|
|
12098
|
+
"name": "force",
|
|
12099
|
+
"allowNo": false,
|
|
12100
|
+
"type": "boolean"
|
|
12101
|
+
}
|
|
12102
|
+
},
|
|
12103
|
+
"hasDynamicHelp": false,
|
|
12104
|
+
"hiddenAliases": [],
|
|
12105
|
+
"id": "staff:remove",
|
|
12107
12106
|
"pluginAlias": "@proletariat/cli",
|
|
12108
12107
|
"pluginName": "@proletariat/cli",
|
|
12109
12108
|
"pluginType": "core",
|
|
@@ -12112,8 +12111,9 @@
|
|
|
12112
12111
|
"relativePath": [
|
|
12113
12112
|
"dist",
|
|
12114
12113
|
"commands",
|
|
12115
|
-
"
|
|
12116
|
-
"
|
|
12114
|
+
"agent",
|
|
12115
|
+
"staff",
|
|
12116
|
+
"remove.js"
|
|
12117
12117
|
]
|
|
12118
12118
|
},
|
|
12119
12119
|
"status:category": {
|
|
@@ -13010,6 +13010,59 @@
|
|
|
13010
13010
|
"status.js"
|
|
13011
13011
|
]
|
|
13012
13012
|
},
|
|
13013
|
+
"terminal:title": {
|
|
13014
|
+
"aliases": [],
|
|
13015
|
+
"args": {
|
|
13016
|
+
"title": {
|
|
13017
|
+
"description": "Title to set for the terminal tab/window",
|
|
13018
|
+
"name": "title",
|
|
13019
|
+
"required": false
|
|
13020
|
+
}
|
|
13021
|
+
},
|
|
13022
|
+
"description": "Set the terminal tab/window title",
|
|
13023
|
+
"examples": [
|
|
13024
|
+
"<%= config.bin %> <%= command.id %> \"My Custom Name\"",
|
|
13025
|
+
"<%= config.bin %> <%= command.id %> # Interactive prompt",
|
|
13026
|
+
"<%= config.bin %> <%= command.id %> --reset",
|
|
13027
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
13028
|
+
],
|
|
13029
|
+
"flags": {
|
|
13030
|
+
"reset": {
|
|
13031
|
+
"char": "r",
|
|
13032
|
+
"description": "Reset terminal title to default",
|
|
13033
|
+
"name": "reset",
|
|
13034
|
+
"allowNo": false,
|
|
13035
|
+
"type": "boolean"
|
|
13036
|
+
},
|
|
13037
|
+
"json": {
|
|
13038
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13039
|
+
"name": "json",
|
|
13040
|
+
"allowNo": false,
|
|
13041
|
+
"type": "boolean"
|
|
13042
|
+
},
|
|
13043
|
+
"machine": {
|
|
13044
|
+
"char": "m",
|
|
13045
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13046
|
+
"name": "machine",
|
|
13047
|
+
"allowNo": false,
|
|
13048
|
+
"type": "boolean"
|
|
13049
|
+
}
|
|
13050
|
+
},
|
|
13051
|
+
"hasDynamicHelp": false,
|
|
13052
|
+
"hiddenAliases": [],
|
|
13053
|
+
"id": "terminal:title",
|
|
13054
|
+
"pluginAlias": "@proletariat/cli",
|
|
13055
|
+
"pluginName": "@proletariat/cli",
|
|
13056
|
+
"pluginType": "core",
|
|
13057
|
+
"strict": true,
|
|
13058
|
+
"isESM": true,
|
|
13059
|
+
"relativePath": [
|
|
13060
|
+
"dist",
|
|
13061
|
+
"commands",
|
|
13062
|
+
"terminal",
|
|
13063
|
+
"title.js"
|
|
13064
|
+
]
|
|
13065
|
+
},
|
|
13013
13066
|
"template:apply": {
|
|
13014
13067
|
"aliases": [],
|
|
13015
13068
|
"args": {
|
|
@@ -13629,30 +13682,209 @@
|
|
|
13629
13682
|
"update.js"
|
|
13630
13683
|
]
|
|
13631
13684
|
},
|
|
13632
|
-
"
|
|
13685
|
+
"theme:add-names": {
|
|
13633
13686
|
"aliases": [],
|
|
13634
13687
|
"args": {
|
|
13635
|
-
"
|
|
13636
|
-
"description": "
|
|
13637
|
-
"name": "
|
|
13688
|
+
"theme": {
|
|
13689
|
+
"description": "Theme ID",
|
|
13690
|
+
"name": "theme",
|
|
13691
|
+
"required": true
|
|
13692
|
+
},
|
|
13693
|
+
"names": {
|
|
13694
|
+
"description": "Names to add to the theme (space-separated)",
|
|
13695
|
+
"name": "names",
|
|
13696
|
+
"required": false
|
|
13697
|
+
}
|
|
13698
|
+
},
|
|
13699
|
+
"description": "Add names to a theme",
|
|
13700
|
+
"examples": [
|
|
13701
|
+
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
13702
|
+
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
13703
|
+
],
|
|
13704
|
+
"flags": {
|
|
13705
|
+
"json": {
|
|
13706
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13707
|
+
"name": "json",
|
|
13708
|
+
"allowNo": false,
|
|
13709
|
+
"type": "boolean"
|
|
13710
|
+
},
|
|
13711
|
+
"machine": {
|
|
13712
|
+
"char": "m",
|
|
13713
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13714
|
+
"name": "machine",
|
|
13715
|
+
"allowNo": false,
|
|
13716
|
+
"type": "boolean"
|
|
13717
|
+
}
|
|
13718
|
+
},
|
|
13719
|
+
"hasDynamicHelp": false,
|
|
13720
|
+
"hiddenAliases": [],
|
|
13721
|
+
"id": "theme:add-names",
|
|
13722
|
+
"pluginAlias": "@proletariat/cli",
|
|
13723
|
+
"pluginName": "@proletariat/cli",
|
|
13724
|
+
"pluginType": "core",
|
|
13725
|
+
"strict": false,
|
|
13726
|
+
"enableJsonFlag": false,
|
|
13727
|
+
"isESM": true,
|
|
13728
|
+
"relativePath": [
|
|
13729
|
+
"dist",
|
|
13730
|
+
"commands",
|
|
13731
|
+
"theme",
|
|
13732
|
+
"add-names.js"
|
|
13733
|
+
]
|
|
13734
|
+
},
|
|
13735
|
+
"theme:create": {
|
|
13736
|
+
"aliases": [],
|
|
13737
|
+
"args": {
|
|
13738
|
+
"name": {
|
|
13739
|
+
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
13740
|
+
"name": "name",
|
|
13741
|
+
"required": true
|
|
13742
|
+
}
|
|
13743
|
+
},
|
|
13744
|
+
"description": "Create a custom agent theme",
|
|
13745
|
+
"examples": [
|
|
13746
|
+
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
13747
|
+
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
13748
|
+
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
13749
|
+
],
|
|
13750
|
+
"flags": {
|
|
13751
|
+
"json": {
|
|
13752
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13753
|
+
"name": "json",
|
|
13754
|
+
"allowNo": false,
|
|
13755
|
+
"type": "boolean"
|
|
13756
|
+
},
|
|
13757
|
+
"machine": {
|
|
13758
|
+
"char": "m",
|
|
13759
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13760
|
+
"name": "machine",
|
|
13761
|
+
"allowNo": false,
|
|
13762
|
+
"type": "boolean"
|
|
13763
|
+
},
|
|
13764
|
+
"description": {
|
|
13765
|
+
"char": "d",
|
|
13766
|
+
"description": "Theme description",
|
|
13767
|
+
"name": "description",
|
|
13768
|
+
"hasDynamicHelp": false,
|
|
13769
|
+
"multiple": false,
|
|
13770
|
+
"type": "option"
|
|
13771
|
+
},
|
|
13772
|
+
"display-name": {
|
|
13773
|
+
"description": "Display name (defaults to formatted name)",
|
|
13774
|
+
"name": "display-name",
|
|
13775
|
+
"hasDynamicHelp": false,
|
|
13776
|
+
"multiple": false,
|
|
13777
|
+
"type": "option"
|
|
13778
|
+
}
|
|
13779
|
+
},
|
|
13780
|
+
"hasDynamicHelp": false,
|
|
13781
|
+
"hiddenAliases": [],
|
|
13782
|
+
"id": "theme:create",
|
|
13783
|
+
"pluginAlias": "@proletariat/cli",
|
|
13784
|
+
"pluginName": "@proletariat/cli",
|
|
13785
|
+
"pluginType": "core",
|
|
13786
|
+
"strict": true,
|
|
13787
|
+
"enableJsonFlag": false,
|
|
13788
|
+
"isESM": true,
|
|
13789
|
+
"relativePath": [
|
|
13790
|
+
"dist",
|
|
13791
|
+
"commands",
|
|
13792
|
+
"theme",
|
|
13793
|
+
"create.js"
|
|
13794
|
+
]
|
|
13795
|
+
},
|
|
13796
|
+
"theme": {
|
|
13797
|
+
"aliases": [],
|
|
13798
|
+
"args": {},
|
|
13799
|
+
"description": "Manage agent naming themes",
|
|
13800
|
+
"examples": [
|
|
13801
|
+
"<%= config.bin %> <%= command.id %> list",
|
|
13802
|
+
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
13803
|
+
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
13804
|
+
],
|
|
13805
|
+
"flags": {
|
|
13806
|
+
"json": {
|
|
13807
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13808
|
+
"name": "json",
|
|
13809
|
+
"allowNo": false,
|
|
13810
|
+
"type": "boolean"
|
|
13811
|
+
},
|
|
13812
|
+
"machine": {
|
|
13813
|
+
"char": "m",
|
|
13814
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13815
|
+
"name": "machine",
|
|
13816
|
+
"allowNo": false,
|
|
13817
|
+
"type": "boolean"
|
|
13818
|
+
}
|
|
13819
|
+
},
|
|
13820
|
+
"hasDynamicHelp": false,
|
|
13821
|
+
"hiddenAliases": [],
|
|
13822
|
+
"id": "theme",
|
|
13823
|
+
"pluginAlias": "@proletariat/cli",
|
|
13824
|
+
"pluginName": "@proletariat/cli",
|
|
13825
|
+
"pluginType": "core",
|
|
13826
|
+
"strict": true,
|
|
13827
|
+
"isESM": true,
|
|
13828
|
+
"relativePath": [
|
|
13829
|
+
"dist",
|
|
13830
|
+
"commands",
|
|
13831
|
+
"theme",
|
|
13832
|
+
"index.js"
|
|
13833
|
+
]
|
|
13834
|
+
},
|
|
13835
|
+
"theme:list": {
|
|
13836
|
+
"aliases": [],
|
|
13837
|
+
"args": {},
|
|
13838
|
+
"description": "List available agent themes",
|
|
13839
|
+
"examples": [
|
|
13840
|
+
"<%= config.bin %> <%= command.id %>"
|
|
13841
|
+
],
|
|
13842
|
+
"flags": {
|
|
13843
|
+
"json": {
|
|
13844
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13845
|
+
"name": "json",
|
|
13846
|
+
"allowNo": false,
|
|
13847
|
+
"type": "boolean"
|
|
13848
|
+
},
|
|
13849
|
+
"machine": {
|
|
13850
|
+
"char": "m",
|
|
13851
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
13852
|
+
"name": "machine",
|
|
13853
|
+
"allowNo": false,
|
|
13854
|
+
"type": "boolean"
|
|
13855
|
+
}
|
|
13856
|
+
},
|
|
13857
|
+
"hasDynamicHelp": false,
|
|
13858
|
+
"hiddenAliases": [],
|
|
13859
|
+
"id": "theme:list",
|
|
13860
|
+
"pluginAlias": "@proletariat/cli",
|
|
13861
|
+
"pluginName": "@proletariat/cli",
|
|
13862
|
+
"pluginType": "core",
|
|
13863
|
+
"strict": true,
|
|
13864
|
+
"enableJsonFlag": false,
|
|
13865
|
+
"isESM": true,
|
|
13866
|
+
"relativePath": [
|
|
13867
|
+
"dist",
|
|
13868
|
+
"commands",
|
|
13869
|
+
"theme",
|
|
13870
|
+
"list.js"
|
|
13871
|
+
]
|
|
13872
|
+
},
|
|
13873
|
+
"theme:set": {
|
|
13874
|
+
"aliases": [],
|
|
13875
|
+
"args": {
|
|
13876
|
+
"theme": {
|
|
13877
|
+
"description": "Theme ID to set as active",
|
|
13878
|
+
"name": "theme",
|
|
13638
13879
|
"required": false
|
|
13639
13880
|
}
|
|
13640
13881
|
},
|
|
13641
|
-
"description": "Set the
|
|
13882
|
+
"description": "Set the active theme for this workspace",
|
|
13642
13883
|
"examples": [
|
|
13643
|
-
"<%= config.bin %> <%= command.id %>
|
|
13644
|
-
"<%= config.bin %> <%= command.id %>
|
|
13645
|
-
"<%= config.bin %> <%= command.id %> --reset",
|
|
13646
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON mode for agents"
|
|
13884
|
+
"<%= config.bin %> <%= command.id %> billionaires",
|
|
13885
|
+
"<%= config.bin %> <%= command.id %>"
|
|
13647
13886
|
],
|
|
13648
13887
|
"flags": {
|
|
13649
|
-
"reset": {
|
|
13650
|
-
"char": "r",
|
|
13651
|
-
"description": "Reset terminal title to default",
|
|
13652
|
-
"name": "reset",
|
|
13653
|
-
"allowNo": false,
|
|
13654
|
-
"type": "boolean"
|
|
13655
|
-
},
|
|
13656
13888
|
"json": {
|
|
13657
13889
|
"description": "Output as JSON for AI agents/scripts",
|
|
13658
13890
|
"name": "json",
|
|
@@ -13669,7 +13901,7 @@
|
|
|
13669
13901
|
},
|
|
13670
13902
|
"hasDynamicHelp": false,
|
|
13671
13903
|
"hiddenAliases": [],
|
|
13672
|
-
"id": "
|
|
13904
|
+
"id": "theme:set",
|
|
13673
13905
|
"pluginAlias": "@proletariat/cli",
|
|
13674
13906
|
"pluginName": "@proletariat/cli",
|
|
13675
13907
|
"pluginType": "core",
|
|
@@ -13678,8 +13910,9 @@
|
|
|
13678
13910
|
"relativePath": [
|
|
13679
13911
|
"dist",
|
|
13680
13912
|
"commands",
|
|
13681
|
-
"
|
|
13682
|
-
"
|
|
13913
|
+
"agent",
|
|
13914
|
+
"themes",
|
|
13915
|
+
"set.js"
|
|
13683
13916
|
]
|
|
13684
13917
|
},
|
|
13685
13918
|
"tools:add": {
|
|
@@ -13916,241 +14149,8 @@
|
|
|
13916
14149
|
},
|
|
13917
14150
|
"description": "Remove a tool from the registry",
|
|
13918
14151
|
"examples": [
|
|
13919
|
-
"<%= config.bin %> tools remove arcade",
|
|
13920
|
-
"<%= config.bin %> tools remove ffmpeg"
|
|
13921
|
-
],
|
|
13922
|
-
"flags": {
|
|
13923
|
-
"json": {
|
|
13924
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13925
|
-
"name": "json",
|
|
13926
|
-
"allowNo": false,
|
|
13927
|
-
"type": "boolean"
|
|
13928
|
-
},
|
|
13929
|
-
"machine": {
|
|
13930
|
-
"char": "m",
|
|
13931
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13932
|
-
"name": "machine",
|
|
13933
|
-
"allowNo": false,
|
|
13934
|
-
"type": "boolean"
|
|
13935
|
-
}
|
|
13936
|
-
},
|
|
13937
|
-
"hasDynamicHelp": false,
|
|
13938
|
-
"hiddenAliases": [],
|
|
13939
|
-
"id": "tools:remove",
|
|
13940
|
-
"pluginAlias": "@proletariat/cli",
|
|
13941
|
-
"pluginName": "@proletariat/cli",
|
|
13942
|
-
"pluginType": "core",
|
|
13943
|
-
"strict": true,
|
|
13944
|
-
"enableJsonFlag": false,
|
|
13945
|
-
"isESM": true,
|
|
13946
|
-
"relativePath": [
|
|
13947
|
-
"dist",
|
|
13948
|
-
"commands",
|
|
13949
|
-
"tools",
|
|
13950
|
-
"remove.js"
|
|
13951
|
-
]
|
|
13952
|
-
},
|
|
13953
|
-
"theme:add-names": {
|
|
13954
|
-
"aliases": [],
|
|
13955
|
-
"args": {
|
|
13956
|
-
"theme": {
|
|
13957
|
-
"description": "Theme ID",
|
|
13958
|
-
"name": "theme",
|
|
13959
|
-
"required": true
|
|
13960
|
-
},
|
|
13961
|
-
"names": {
|
|
13962
|
-
"description": "Names to add to the theme (space-separated)",
|
|
13963
|
-
"name": "names",
|
|
13964
|
-
"required": false
|
|
13965
|
-
}
|
|
13966
|
-
},
|
|
13967
|
-
"description": "Add names to a theme",
|
|
13968
|
-
"examples": [
|
|
13969
|
-
"<%= config.bin %> <%= command.id %> greek-gods zeus athena poseidon",
|
|
13970
|
-
"<%= config.bin %> <%= command.id %> my-theme agent-a agent-b"
|
|
13971
|
-
],
|
|
13972
|
-
"flags": {
|
|
13973
|
-
"json": {
|
|
13974
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13975
|
-
"name": "json",
|
|
13976
|
-
"allowNo": false,
|
|
13977
|
-
"type": "boolean"
|
|
13978
|
-
},
|
|
13979
|
-
"machine": {
|
|
13980
|
-
"char": "m",
|
|
13981
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
13982
|
-
"name": "machine",
|
|
13983
|
-
"allowNo": false,
|
|
13984
|
-
"type": "boolean"
|
|
13985
|
-
}
|
|
13986
|
-
},
|
|
13987
|
-
"hasDynamicHelp": false,
|
|
13988
|
-
"hiddenAliases": [],
|
|
13989
|
-
"id": "theme:add-names",
|
|
13990
|
-
"pluginAlias": "@proletariat/cli",
|
|
13991
|
-
"pluginName": "@proletariat/cli",
|
|
13992
|
-
"pluginType": "core",
|
|
13993
|
-
"strict": false,
|
|
13994
|
-
"enableJsonFlag": false,
|
|
13995
|
-
"isESM": true,
|
|
13996
|
-
"relativePath": [
|
|
13997
|
-
"dist",
|
|
13998
|
-
"commands",
|
|
13999
|
-
"theme",
|
|
14000
|
-
"add-names.js"
|
|
14001
|
-
]
|
|
14002
|
-
},
|
|
14003
|
-
"theme:create": {
|
|
14004
|
-
"aliases": [],
|
|
14005
|
-
"args": {
|
|
14006
|
-
"name": {
|
|
14007
|
-
"description": "Theme name (used as ID, lowercase with hyphens)",
|
|
14008
|
-
"name": "name",
|
|
14009
|
-
"required": true
|
|
14010
|
-
}
|
|
14011
|
-
},
|
|
14012
|
-
"description": "Create a custom agent theme",
|
|
14013
|
-
"examples": [
|
|
14014
|
-
"<%= config.bin %> <%= command.id %> greek-gods",
|
|
14015
|
-
"<%= config.bin %> <%= command.id %> greek-gods --description \"Mount Olympus crew\"",
|
|
14016
|
-
"<%= config.bin %> <%= command.id %> greek-gods --display-name \"Greek Gods\""
|
|
14017
|
-
],
|
|
14018
|
-
"flags": {
|
|
14019
|
-
"json": {
|
|
14020
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14021
|
-
"name": "json",
|
|
14022
|
-
"allowNo": false,
|
|
14023
|
-
"type": "boolean"
|
|
14024
|
-
},
|
|
14025
|
-
"machine": {
|
|
14026
|
-
"char": "m",
|
|
14027
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14028
|
-
"name": "machine",
|
|
14029
|
-
"allowNo": false,
|
|
14030
|
-
"type": "boolean"
|
|
14031
|
-
},
|
|
14032
|
-
"description": {
|
|
14033
|
-
"char": "d",
|
|
14034
|
-
"description": "Theme description",
|
|
14035
|
-
"name": "description",
|
|
14036
|
-
"hasDynamicHelp": false,
|
|
14037
|
-
"multiple": false,
|
|
14038
|
-
"type": "option"
|
|
14039
|
-
},
|
|
14040
|
-
"display-name": {
|
|
14041
|
-
"description": "Display name (defaults to formatted name)",
|
|
14042
|
-
"name": "display-name",
|
|
14043
|
-
"hasDynamicHelp": false,
|
|
14044
|
-
"multiple": false,
|
|
14045
|
-
"type": "option"
|
|
14046
|
-
}
|
|
14047
|
-
},
|
|
14048
|
-
"hasDynamicHelp": false,
|
|
14049
|
-
"hiddenAliases": [],
|
|
14050
|
-
"id": "theme:create",
|
|
14051
|
-
"pluginAlias": "@proletariat/cli",
|
|
14052
|
-
"pluginName": "@proletariat/cli",
|
|
14053
|
-
"pluginType": "core",
|
|
14054
|
-
"strict": true,
|
|
14055
|
-
"enableJsonFlag": false,
|
|
14056
|
-
"isESM": true,
|
|
14057
|
-
"relativePath": [
|
|
14058
|
-
"dist",
|
|
14059
|
-
"commands",
|
|
14060
|
-
"theme",
|
|
14061
|
-
"create.js"
|
|
14062
|
-
]
|
|
14063
|
-
},
|
|
14064
|
-
"theme": {
|
|
14065
|
-
"aliases": [],
|
|
14066
|
-
"args": {},
|
|
14067
|
-
"description": "Manage agent naming themes",
|
|
14068
|
-
"examples": [
|
|
14069
|
-
"<%= config.bin %> <%= command.id %> list",
|
|
14070
|
-
"<%= config.bin %> <%= command.id %> create greek-gods",
|
|
14071
|
-
"<%= config.bin %> <%= command.id %> add-names greek-gods zeus athena"
|
|
14072
|
-
],
|
|
14073
|
-
"flags": {
|
|
14074
|
-
"json": {
|
|
14075
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14076
|
-
"name": "json",
|
|
14077
|
-
"allowNo": false,
|
|
14078
|
-
"type": "boolean"
|
|
14079
|
-
},
|
|
14080
|
-
"machine": {
|
|
14081
|
-
"char": "m",
|
|
14082
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14083
|
-
"name": "machine",
|
|
14084
|
-
"allowNo": false,
|
|
14085
|
-
"type": "boolean"
|
|
14086
|
-
}
|
|
14087
|
-
},
|
|
14088
|
-
"hasDynamicHelp": false,
|
|
14089
|
-
"hiddenAliases": [],
|
|
14090
|
-
"id": "theme",
|
|
14091
|
-
"pluginAlias": "@proletariat/cli",
|
|
14092
|
-
"pluginName": "@proletariat/cli",
|
|
14093
|
-
"pluginType": "core",
|
|
14094
|
-
"strict": true,
|
|
14095
|
-
"isESM": true,
|
|
14096
|
-
"relativePath": [
|
|
14097
|
-
"dist",
|
|
14098
|
-
"commands",
|
|
14099
|
-
"theme",
|
|
14100
|
-
"index.js"
|
|
14101
|
-
]
|
|
14102
|
-
},
|
|
14103
|
-
"theme:list": {
|
|
14104
|
-
"aliases": [],
|
|
14105
|
-
"args": {},
|
|
14106
|
-
"description": "List available agent themes",
|
|
14107
|
-
"examples": [
|
|
14108
|
-
"<%= config.bin %> <%= command.id %>"
|
|
14109
|
-
],
|
|
14110
|
-
"flags": {
|
|
14111
|
-
"json": {
|
|
14112
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14113
|
-
"name": "json",
|
|
14114
|
-
"allowNo": false,
|
|
14115
|
-
"type": "boolean"
|
|
14116
|
-
},
|
|
14117
|
-
"machine": {
|
|
14118
|
-
"char": "m",
|
|
14119
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
14120
|
-
"name": "machine",
|
|
14121
|
-
"allowNo": false,
|
|
14122
|
-
"type": "boolean"
|
|
14123
|
-
}
|
|
14124
|
-
},
|
|
14125
|
-
"hasDynamicHelp": false,
|
|
14126
|
-
"hiddenAliases": [],
|
|
14127
|
-
"id": "theme:list",
|
|
14128
|
-
"pluginAlias": "@proletariat/cli",
|
|
14129
|
-
"pluginName": "@proletariat/cli",
|
|
14130
|
-
"pluginType": "core",
|
|
14131
|
-
"strict": true,
|
|
14132
|
-
"enableJsonFlag": false,
|
|
14133
|
-
"isESM": true,
|
|
14134
|
-
"relativePath": [
|
|
14135
|
-
"dist",
|
|
14136
|
-
"commands",
|
|
14137
|
-
"theme",
|
|
14138
|
-
"list.js"
|
|
14139
|
-
]
|
|
14140
|
-
},
|
|
14141
|
-
"theme:set": {
|
|
14142
|
-
"aliases": [],
|
|
14143
|
-
"args": {
|
|
14144
|
-
"theme": {
|
|
14145
|
-
"description": "Theme ID to set as active",
|
|
14146
|
-
"name": "theme",
|
|
14147
|
-
"required": false
|
|
14148
|
-
}
|
|
14149
|
-
},
|
|
14150
|
-
"description": "Set the active theme for this workspace",
|
|
14151
|
-
"examples": [
|
|
14152
|
-
"<%= config.bin %> <%= command.id %> billionaires",
|
|
14153
|
-
"<%= config.bin %> <%= command.id %>"
|
|
14152
|
+
"<%= config.bin %> tools remove arcade",
|
|
14153
|
+
"<%= config.bin %> tools remove ffmpeg"
|
|
14154
14154
|
],
|
|
14155
14155
|
"flags": {
|
|
14156
14156
|
"json": {
|
|
@@ -14169,18 +14169,18 @@
|
|
|
14169
14169
|
},
|
|
14170
14170
|
"hasDynamicHelp": false,
|
|
14171
14171
|
"hiddenAliases": [],
|
|
14172
|
-
"id": "
|
|
14172
|
+
"id": "tools:remove",
|
|
14173
14173
|
"pluginAlias": "@proletariat/cli",
|
|
14174
14174
|
"pluginName": "@proletariat/cli",
|
|
14175
14175
|
"pluginType": "core",
|
|
14176
14176
|
"strict": true,
|
|
14177
|
+
"enableJsonFlag": false,
|
|
14177
14178
|
"isESM": true,
|
|
14178
14179
|
"relativePath": [
|
|
14179
14180
|
"dist",
|
|
14180
14181
|
"commands",
|
|
14181
|
-
"
|
|
14182
|
-
"
|
|
14183
|
-
"set.js"
|
|
14182
|
+
"tools",
|
|
14183
|
+
"remove.js"
|
|
14184
14184
|
]
|
|
14185
14185
|
},
|
|
14186
14186
|
"version:bump": {
|
|
@@ -16322,258 +16322,24 @@
|
|
|
16322
16322
|
"id": {
|
|
16323
16323
|
"description": "Workflow ID - prompts with dropdown if not provided",
|
|
16324
16324
|
"name": "id",
|
|
16325
|
-
"required": false
|
|
16326
|
-
}
|
|
16327
|
-
},
|
|
16328
|
-
"description": "View details of a workflow",
|
|
16329
|
-
"examples": [
|
|
16330
|
-
"<%= config.bin %> <%= command.id %> default",
|
|
16331
|
-
"<%= config.bin %> <%= command.id %> # Interactive selection",
|
|
16332
|
-
"<%= config.bin %> <%= command.id %> --machine # JSON output for AI agents"
|
|
16333
|
-
],
|
|
16334
|
-
"flags": {
|
|
16335
|
-
"project": {
|
|
16336
|
-
"char": "P",
|
|
16337
|
-
"description": "Project ID (uses first project if only one exists)",
|
|
16338
|
-
"name": "project",
|
|
16339
|
-
"hasDynamicHelp": false,
|
|
16340
|
-
"multiple": false,
|
|
16341
|
-
"type": "option"
|
|
16342
|
-
},
|
|
16343
|
-
"json": {
|
|
16344
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16345
|
-
"name": "json",
|
|
16346
|
-
"allowNo": false,
|
|
16347
|
-
"type": "boolean"
|
|
16348
|
-
},
|
|
16349
|
-
"machine": {
|
|
16350
|
-
"char": "m",
|
|
16351
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16352
|
-
"name": "machine",
|
|
16353
|
-
"allowNo": false,
|
|
16354
|
-
"type": "boolean"
|
|
16355
|
-
}
|
|
16356
|
-
},
|
|
16357
|
-
"hasDynamicHelp": false,
|
|
16358
|
-
"hiddenAliases": [],
|
|
16359
|
-
"id": "workflow:view",
|
|
16360
|
-
"pluginAlias": "@proletariat/cli",
|
|
16361
|
-
"pluginName": "@proletariat/cli",
|
|
16362
|
-
"pluginType": "core",
|
|
16363
|
-
"strict": true,
|
|
16364
|
-
"isESM": true,
|
|
16365
|
-
"relativePath": [
|
|
16366
|
-
"dist",
|
|
16367
|
-
"commands",
|
|
16368
|
-
"workflow",
|
|
16369
|
-
"view.js"
|
|
16370
|
-
]
|
|
16371
|
-
},
|
|
16372
|
-
"workspace:add": {
|
|
16373
|
-
"aliases": [],
|
|
16374
|
-
"args": {
|
|
16375
|
-
"path": {
|
|
16376
|
-
"description": "Path to the workspace to register",
|
|
16377
|
-
"name": "path",
|
|
16378
|
-
"required": true
|
|
16379
|
-
}
|
|
16380
|
-
},
|
|
16381
|
-
"description": "Register an existing workspace in the machine config",
|
|
16382
|
-
"examples": [
|
|
16383
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
16384
|
-
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
16385
|
-
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
16386
|
-
],
|
|
16387
|
-
"flags": {
|
|
16388
|
-
"json": {
|
|
16389
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16390
|
-
"name": "json",
|
|
16391
|
-
"allowNo": false,
|
|
16392
|
-
"type": "boolean"
|
|
16393
|
-
},
|
|
16394
|
-
"machine": {
|
|
16395
|
-
"char": "m",
|
|
16396
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16397
|
-
"name": "machine",
|
|
16398
|
-
"allowNo": false,
|
|
16399
|
-
"type": "boolean"
|
|
16400
|
-
},
|
|
16401
|
-
"name": {
|
|
16402
|
-
"char": "n",
|
|
16403
|
-
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
16404
|
-
"name": "name",
|
|
16405
|
-
"hasDynamicHelp": false,
|
|
16406
|
-
"multiple": false,
|
|
16407
|
-
"type": "option"
|
|
16408
|
-
}
|
|
16409
|
-
},
|
|
16410
|
-
"hasDynamicHelp": false,
|
|
16411
|
-
"hiddenAliases": [],
|
|
16412
|
-
"id": "workspace:add",
|
|
16413
|
-
"pluginAlias": "@proletariat/cli",
|
|
16414
|
-
"pluginName": "@proletariat/cli",
|
|
16415
|
-
"pluginType": "core",
|
|
16416
|
-
"strict": true,
|
|
16417
|
-
"enableJsonFlag": false,
|
|
16418
|
-
"isESM": true,
|
|
16419
|
-
"relativePath": [
|
|
16420
|
-
"dist",
|
|
16421
|
-
"commands",
|
|
16422
|
-
"workspace",
|
|
16423
|
-
"add.js"
|
|
16424
|
-
]
|
|
16425
|
-
},
|
|
16426
|
-
"workspace:list": {
|
|
16427
|
-
"aliases": [],
|
|
16428
|
-
"args": {},
|
|
16429
|
-
"description": "List all registered and discovered HQ workspaces",
|
|
16430
|
-
"examples": [
|
|
16431
|
-
"<%= config.bin %> <%= command.id %>",
|
|
16432
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
16433
|
-
],
|
|
16434
|
-
"flags": {
|
|
16435
|
-
"json": {
|
|
16436
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16437
|
-
"name": "json",
|
|
16438
|
-
"allowNo": false,
|
|
16439
|
-
"type": "boolean"
|
|
16440
|
-
},
|
|
16441
|
-
"machine": {
|
|
16442
|
-
"char": "m",
|
|
16443
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16444
|
-
"name": "machine",
|
|
16445
|
-
"allowNo": false,
|
|
16446
|
-
"type": "boolean"
|
|
16447
|
-
}
|
|
16448
|
-
},
|
|
16449
|
-
"hasDynamicHelp": false,
|
|
16450
|
-
"hiddenAliases": [],
|
|
16451
|
-
"id": "workspace:list",
|
|
16452
|
-
"pluginAlias": "@proletariat/cli",
|
|
16453
|
-
"pluginName": "@proletariat/cli",
|
|
16454
|
-
"pluginType": "core",
|
|
16455
|
-
"strict": true,
|
|
16456
|
-
"enableJsonFlag": false,
|
|
16457
|
-
"isESM": true,
|
|
16458
|
-
"relativePath": [
|
|
16459
|
-
"dist",
|
|
16460
|
-
"commands",
|
|
16461
|
-
"workspace",
|
|
16462
|
-
"list.js"
|
|
16463
|
-
]
|
|
16464
|
-
},
|
|
16465
|
-
"workspace:prune": {
|
|
16466
|
-
"aliases": [],
|
|
16467
|
-
"args": {},
|
|
16468
|
-
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
16469
|
-
"examples": [
|
|
16470
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
16471
|
-
"<%= config.bin %> <%= command.id %>",
|
|
16472
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
16473
|
-
],
|
|
16474
|
-
"flags": {
|
|
16475
|
-
"json": {
|
|
16476
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16477
|
-
"name": "json",
|
|
16478
|
-
"allowNo": false,
|
|
16479
|
-
"type": "boolean"
|
|
16480
|
-
},
|
|
16481
|
-
"machine": {
|
|
16482
|
-
"char": "m",
|
|
16483
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16484
|
-
"name": "machine",
|
|
16485
|
-
"allowNo": false,
|
|
16486
|
-
"type": "boolean"
|
|
16487
|
-
},
|
|
16488
|
-
"dry-run": {
|
|
16489
|
-
"char": "d",
|
|
16490
|
-
"description": "Show what would be removed without removing",
|
|
16491
|
-
"name": "dry-run",
|
|
16492
|
-
"allowNo": false,
|
|
16493
|
-
"type": "boolean"
|
|
16494
|
-
},
|
|
16495
|
-
"force": {
|
|
16496
|
-
"char": "f",
|
|
16497
|
-
"description": "Skip confirmation prompt and prune immediately",
|
|
16498
|
-
"name": "force",
|
|
16499
|
-
"allowNo": false,
|
|
16500
|
-
"type": "boolean"
|
|
16501
|
-
}
|
|
16502
|
-
},
|
|
16503
|
-
"hasDynamicHelp": false,
|
|
16504
|
-
"hiddenAliases": [],
|
|
16505
|
-
"id": "workspace:prune",
|
|
16506
|
-
"pluginAlias": "@proletariat/cli",
|
|
16507
|
-
"pluginName": "@proletariat/cli",
|
|
16508
|
-
"pluginType": "core",
|
|
16509
|
-
"strict": true,
|
|
16510
|
-
"isESM": true,
|
|
16511
|
-
"relativePath": [
|
|
16512
|
-
"dist",
|
|
16513
|
-
"commands",
|
|
16514
|
-
"workspace",
|
|
16515
|
-
"prune.js"
|
|
16516
|
-
]
|
|
16517
|
-
},
|
|
16518
|
-
"workspace:remove": {
|
|
16519
|
-
"aliases": [],
|
|
16520
|
-
"args": {
|
|
16521
|
-
"nameOrPath": {
|
|
16522
|
-
"description": "Workspace name or path to unregister",
|
|
16523
|
-
"name": "nameOrPath",
|
|
16524
|
-
"required": true
|
|
16525
|
-
}
|
|
16526
|
-
},
|
|
16527
|
-
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
16528
|
-
"examples": [
|
|
16529
|
-
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
16530
|
-
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
16531
|
-
],
|
|
16532
|
-
"flags": {
|
|
16533
|
-
"json": {
|
|
16534
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16535
|
-
"name": "json",
|
|
16536
|
-
"allowNo": false,
|
|
16537
|
-
"type": "boolean"
|
|
16538
|
-
},
|
|
16539
|
-
"machine": {
|
|
16540
|
-
"char": "m",
|
|
16541
|
-
"description": "Output as JSON for AI agents/scripts",
|
|
16542
|
-
"name": "machine",
|
|
16543
|
-
"allowNo": false,
|
|
16544
|
-
"type": "boolean"
|
|
16545
|
-
}
|
|
16546
|
-
},
|
|
16547
|
-
"hasDynamicHelp": false,
|
|
16548
|
-
"hiddenAliases": [],
|
|
16549
|
-
"id": "workspace:remove",
|
|
16550
|
-
"pluginAlias": "@proletariat/cli",
|
|
16551
|
-
"pluginName": "@proletariat/cli",
|
|
16552
|
-
"pluginType": "core",
|
|
16553
|
-
"strict": true,
|
|
16554
|
-
"isESM": true,
|
|
16555
|
-
"relativePath": [
|
|
16556
|
-
"dist",
|
|
16557
|
-
"commands",
|
|
16558
|
-
"workspace",
|
|
16559
|
-
"remove.js"
|
|
16560
|
-
]
|
|
16561
|
-
},
|
|
16562
|
-
"workspace:use": {
|
|
16563
|
-
"aliases": [],
|
|
16564
|
-
"args": {
|
|
16565
|
-
"nameOrPath": {
|
|
16566
|
-
"description": "Workspace name or path",
|
|
16567
|
-
"name": "nameOrPath",
|
|
16568
|
-
"required": true
|
|
16325
|
+
"required": false
|
|
16569
16326
|
}
|
|
16570
16327
|
},
|
|
16571
|
-
"description": "
|
|
16328
|
+
"description": "View details of a workflow",
|
|
16572
16329
|
"examples": [
|
|
16573
|
-
"<%= config.bin %> <%= command.id %>
|
|
16574
|
-
"<%= config.bin %> <%= command.id %>
|
|
16330
|
+
"<%= config.bin %> <%= command.id %> default",
|
|
16331
|
+
"<%= config.bin %> <%= command.id %> # Interactive selection",
|
|
16332
|
+
"<%= config.bin %> <%= command.id %> --machine # JSON output for AI agents"
|
|
16575
16333
|
],
|
|
16576
16334
|
"flags": {
|
|
16335
|
+
"project": {
|
|
16336
|
+
"char": "P",
|
|
16337
|
+
"description": "Project ID (uses first project if only one exists)",
|
|
16338
|
+
"name": "project",
|
|
16339
|
+
"hasDynamicHelp": false,
|
|
16340
|
+
"multiple": false,
|
|
16341
|
+
"type": "option"
|
|
16342
|
+
},
|
|
16577
16343
|
"json": {
|
|
16578
16344
|
"description": "Output as JSON for AI agents/scripts",
|
|
16579
16345
|
"name": "json",
|
|
@@ -16590,7 +16356,7 @@
|
|
|
16590
16356
|
},
|
|
16591
16357
|
"hasDynamicHelp": false,
|
|
16592
16358
|
"hiddenAliases": [],
|
|
16593
|
-
"id": "
|
|
16359
|
+
"id": "workflow:view",
|
|
16594
16360
|
"pluginAlias": "@proletariat/cli",
|
|
16595
16361
|
"pluginName": "@proletariat/cli",
|
|
16596
16362
|
"pluginType": "core",
|
|
@@ -16599,8 +16365,8 @@
|
|
|
16599
16365
|
"relativePath": [
|
|
16600
16366
|
"dist",
|
|
16601
16367
|
"commands",
|
|
16602
|
-
"
|
|
16603
|
-
"
|
|
16368
|
+
"workflow",
|
|
16369
|
+
"view.js"
|
|
16604
16370
|
]
|
|
16605
16371
|
},
|
|
16606
16372
|
"work:asana": {
|
|
@@ -18600,6 +18366,240 @@
|
|
|
18600
18366
|
"watch.js"
|
|
18601
18367
|
]
|
|
18602
18368
|
},
|
|
18369
|
+
"workspace:add": {
|
|
18370
|
+
"aliases": [],
|
|
18371
|
+
"args": {
|
|
18372
|
+
"path": {
|
|
18373
|
+
"description": "Path to the workspace to register",
|
|
18374
|
+
"name": "path",
|
|
18375
|
+
"required": true
|
|
18376
|
+
}
|
|
18377
|
+
},
|
|
18378
|
+
"description": "Register an existing workspace in the machine config",
|
|
18379
|
+
"examples": [
|
|
18380
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace",
|
|
18381
|
+
"<%= config.bin %> <%= command.id %> . --name my-workspace",
|
|
18382
|
+
"<%= config.bin %> <%= command.id %> ~/projects/my-hq"
|
|
18383
|
+
],
|
|
18384
|
+
"flags": {
|
|
18385
|
+
"json": {
|
|
18386
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18387
|
+
"name": "json",
|
|
18388
|
+
"allowNo": false,
|
|
18389
|
+
"type": "boolean"
|
|
18390
|
+
},
|
|
18391
|
+
"machine": {
|
|
18392
|
+
"char": "m",
|
|
18393
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18394
|
+
"name": "machine",
|
|
18395
|
+
"allowNo": false,
|
|
18396
|
+
"type": "boolean"
|
|
18397
|
+
},
|
|
18398
|
+
"name": {
|
|
18399
|
+
"char": "n",
|
|
18400
|
+
"description": "Custom name for the workspace (defaults to directory basename or workspace config name)",
|
|
18401
|
+
"name": "name",
|
|
18402
|
+
"hasDynamicHelp": false,
|
|
18403
|
+
"multiple": false,
|
|
18404
|
+
"type": "option"
|
|
18405
|
+
}
|
|
18406
|
+
},
|
|
18407
|
+
"hasDynamicHelp": false,
|
|
18408
|
+
"hiddenAliases": [],
|
|
18409
|
+
"id": "workspace:add",
|
|
18410
|
+
"pluginAlias": "@proletariat/cli",
|
|
18411
|
+
"pluginName": "@proletariat/cli",
|
|
18412
|
+
"pluginType": "core",
|
|
18413
|
+
"strict": true,
|
|
18414
|
+
"enableJsonFlag": false,
|
|
18415
|
+
"isESM": true,
|
|
18416
|
+
"relativePath": [
|
|
18417
|
+
"dist",
|
|
18418
|
+
"commands",
|
|
18419
|
+
"workspace",
|
|
18420
|
+
"add.js"
|
|
18421
|
+
]
|
|
18422
|
+
},
|
|
18423
|
+
"workspace:list": {
|
|
18424
|
+
"aliases": [],
|
|
18425
|
+
"args": {},
|
|
18426
|
+
"description": "List all registered and discovered HQ workspaces",
|
|
18427
|
+
"examples": [
|
|
18428
|
+
"<%= config.bin %> <%= command.id %>",
|
|
18429
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
18430
|
+
],
|
|
18431
|
+
"flags": {
|
|
18432
|
+
"json": {
|
|
18433
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18434
|
+
"name": "json",
|
|
18435
|
+
"allowNo": false,
|
|
18436
|
+
"type": "boolean"
|
|
18437
|
+
},
|
|
18438
|
+
"machine": {
|
|
18439
|
+
"char": "m",
|
|
18440
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18441
|
+
"name": "machine",
|
|
18442
|
+
"allowNo": false,
|
|
18443
|
+
"type": "boolean"
|
|
18444
|
+
}
|
|
18445
|
+
},
|
|
18446
|
+
"hasDynamicHelp": false,
|
|
18447
|
+
"hiddenAliases": [],
|
|
18448
|
+
"id": "workspace:list",
|
|
18449
|
+
"pluginAlias": "@proletariat/cli",
|
|
18450
|
+
"pluginName": "@proletariat/cli",
|
|
18451
|
+
"pluginType": "core",
|
|
18452
|
+
"strict": true,
|
|
18453
|
+
"enableJsonFlag": false,
|
|
18454
|
+
"isESM": true,
|
|
18455
|
+
"relativePath": [
|
|
18456
|
+
"dist",
|
|
18457
|
+
"commands",
|
|
18458
|
+
"workspace",
|
|
18459
|
+
"list.js"
|
|
18460
|
+
]
|
|
18461
|
+
},
|
|
18462
|
+
"workspace:prune": {
|
|
18463
|
+
"aliases": [],
|
|
18464
|
+
"args": {},
|
|
18465
|
+
"description": "Remove stale workspace entries and agents with deleted worktrees",
|
|
18466
|
+
"examples": [
|
|
18467
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
18468
|
+
"<%= config.bin %> <%= command.id %>",
|
|
18469
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
18470
|
+
],
|
|
18471
|
+
"flags": {
|
|
18472
|
+
"json": {
|
|
18473
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18474
|
+
"name": "json",
|
|
18475
|
+
"allowNo": false,
|
|
18476
|
+
"type": "boolean"
|
|
18477
|
+
},
|
|
18478
|
+
"machine": {
|
|
18479
|
+
"char": "m",
|
|
18480
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18481
|
+
"name": "machine",
|
|
18482
|
+
"allowNo": false,
|
|
18483
|
+
"type": "boolean"
|
|
18484
|
+
},
|
|
18485
|
+
"dry-run": {
|
|
18486
|
+
"char": "d",
|
|
18487
|
+
"description": "Show what would be removed without removing",
|
|
18488
|
+
"name": "dry-run",
|
|
18489
|
+
"allowNo": false,
|
|
18490
|
+
"type": "boolean"
|
|
18491
|
+
},
|
|
18492
|
+
"force": {
|
|
18493
|
+
"char": "f",
|
|
18494
|
+
"description": "Skip confirmation prompt and prune immediately",
|
|
18495
|
+
"name": "force",
|
|
18496
|
+
"allowNo": false,
|
|
18497
|
+
"type": "boolean"
|
|
18498
|
+
}
|
|
18499
|
+
},
|
|
18500
|
+
"hasDynamicHelp": false,
|
|
18501
|
+
"hiddenAliases": [],
|
|
18502
|
+
"id": "workspace:prune",
|
|
18503
|
+
"pluginAlias": "@proletariat/cli",
|
|
18504
|
+
"pluginName": "@proletariat/cli",
|
|
18505
|
+
"pluginType": "core",
|
|
18506
|
+
"strict": true,
|
|
18507
|
+
"isESM": true,
|
|
18508
|
+
"relativePath": [
|
|
18509
|
+
"dist",
|
|
18510
|
+
"commands",
|
|
18511
|
+
"workspace",
|
|
18512
|
+
"prune.js"
|
|
18513
|
+
]
|
|
18514
|
+
},
|
|
18515
|
+
"workspace:remove": {
|
|
18516
|
+
"aliases": [],
|
|
18517
|
+
"args": {
|
|
18518
|
+
"nameOrPath": {
|
|
18519
|
+
"description": "Workspace name or path to unregister",
|
|
18520
|
+
"name": "nameOrPath",
|
|
18521
|
+
"required": true
|
|
18522
|
+
}
|
|
18523
|
+
},
|
|
18524
|
+
"description": "Unregister a workspace from the machine config (does NOT delete files)",
|
|
18525
|
+
"examples": [
|
|
18526
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
18527
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
18528
|
+
],
|
|
18529
|
+
"flags": {
|
|
18530
|
+
"json": {
|
|
18531
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18532
|
+
"name": "json",
|
|
18533
|
+
"allowNo": false,
|
|
18534
|
+
"type": "boolean"
|
|
18535
|
+
},
|
|
18536
|
+
"machine": {
|
|
18537
|
+
"char": "m",
|
|
18538
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18539
|
+
"name": "machine",
|
|
18540
|
+
"allowNo": false,
|
|
18541
|
+
"type": "boolean"
|
|
18542
|
+
}
|
|
18543
|
+
},
|
|
18544
|
+
"hasDynamicHelp": false,
|
|
18545
|
+
"hiddenAliases": [],
|
|
18546
|
+
"id": "workspace:remove",
|
|
18547
|
+
"pluginAlias": "@proletariat/cli",
|
|
18548
|
+
"pluginName": "@proletariat/cli",
|
|
18549
|
+
"pluginType": "core",
|
|
18550
|
+
"strict": true,
|
|
18551
|
+
"isESM": true,
|
|
18552
|
+
"relativePath": [
|
|
18553
|
+
"dist",
|
|
18554
|
+
"commands",
|
|
18555
|
+
"workspace",
|
|
18556
|
+
"remove.js"
|
|
18557
|
+
]
|
|
18558
|
+
},
|
|
18559
|
+
"workspace:use": {
|
|
18560
|
+
"aliases": [],
|
|
18561
|
+
"args": {
|
|
18562
|
+
"nameOrPath": {
|
|
18563
|
+
"description": "Workspace name or path",
|
|
18564
|
+
"name": "nameOrPath",
|
|
18565
|
+
"required": true
|
|
18566
|
+
}
|
|
18567
|
+
},
|
|
18568
|
+
"description": "Set the active workspace",
|
|
18569
|
+
"examples": [
|
|
18570
|
+
"<%= config.bin %> <%= command.id %> my-workspace",
|
|
18571
|
+
"<%= config.bin %> <%= command.id %> /path/to/workspace"
|
|
18572
|
+
],
|
|
18573
|
+
"flags": {
|
|
18574
|
+
"json": {
|
|
18575
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18576
|
+
"name": "json",
|
|
18577
|
+
"allowNo": false,
|
|
18578
|
+
"type": "boolean"
|
|
18579
|
+
},
|
|
18580
|
+
"machine": {
|
|
18581
|
+
"char": "m",
|
|
18582
|
+
"description": "Output as JSON for AI agents/scripts",
|
|
18583
|
+
"name": "machine",
|
|
18584
|
+
"allowNo": false,
|
|
18585
|
+
"type": "boolean"
|
|
18586
|
+
}
|
|
18587
|
+
},
|
|
18588
|
+
"hasDynamicHelp": false,
|
|
18589
|
+
"hiddenAliases": [],
|
|
18590
|
+
"id": "workspace:use",
|
|
18591
|
+
"pluginAlias": "@proletariat/cli",
|
|
18592
|
+
"pluginName": "@proletariat/cli",
|
|
18593
|
+
"pluginType": "core",
|
|
18594
|
+
"strict": true,
|
|
18595
|
+
"isESM": true,
|
|
18596
|
+
"relativePath": [
|
|
18597
|
+
"dist",
|
|
18598
|
+
"commands",
|
|
18599
|
+
"workspace",
|
|
18600
|
+
"use.js"
|
|
18601
|
+
]
|
|
18602
|
+
},
|
|
18603
18603
|
"agent:staff:add": {
|
|
18604
18604
|
"aliases": [],
|
|
18605
18605
|
"args": {
|
|
@@ -20768,5 +20768,5 @@
|
|
|
20768
20768
|
]
|
|
20769
20769
|
}
|
|
20770
20770
|
},
|
|
20771
|
-
"version": "0.3.
|
|
20771
|
+
"version": "0.3.70"
|
|
20772
20772
|
}
|