centy 0.0.27 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/commands/workspace/cleanup.d.ts +10 -0
  2. package/dist/commands/workspace/cleanup.d.ts.map +1 -0
  3. package/dist/commands/workspace/cleanup.js +31 -0
  4. package/dist/commands/workspace/cleanup.js.map +1 -0
  5. package/dist/commands/workspace/close.d.ts +16 -0
  6. package/dist/commands/workspace/close.d.ts.map +1 -0
  7. package/dist/commands/workspace/close.js +49 -0
  8. package/dist/commands/workspace/close.js.map +1 -0
  9. package/dist/commands/workspace/list.d.ts +15 -0
  10. package/dist/commands/workspace/list.d.ts.map +1 -0
  11. package/dist/commands/workspace/list.js +67 -0
  12. package/dist/commands/workspace/list.js.map +1 -0
  13. package/dist/commands/workspace/open.d.ts +19 -0
  14. package/dist/commands/workspace/open.d.ts.map +1 -0
  15. package/dist/commands/workspace/open.js +76 -0
  16. package/dist/commands/workspace/open.js.map +1 -0
  17. package/dist/daemon/daemon-cleanup-expired-workspaces.d.ts +6 -0
  18. package/dist/daemon/daemon-cleanup-expired-workspaces.d.ts.map +1 -0
  19. package/dist/daemon/daemon-cleanup-expired-workspaces.js +17 -0
  20. package/dist/daemon/daemon-cleanup-expired-workspaces.js.map +1 -0
  21. package/dist/daemon/daemon-close-temp-workspace.d.ts +6 -0
  22. package/dist/daemon/daemon-close-temp-workspace.d.ts.map +1 -0
  23. package/dist/daemon/daemon-close-temp-workspace.js +17 -0
  24. package/dist/daemon/daemon-close-temp-workspace.js.map +1 -0
  25. package/dist/daemon/daemon-list-temp-workspaces.d.ts +6 -0
  26. package/dist/daemon/daemon-list-temp-workspaces.d.ts.map +1 -0
  27. package/dist/daemon/daemon-list-temp-workspaces.js +17 -0
  28. package/dist/daemon/daemon-list-temp-workspaces.js.map +1 -0
  29. package/dist/daemon/daemon-open-in-temp-vscode.d.ts +6 -0
  30. package/dist/daemon/daemon-open-in-temp-vscode.d.ts.map +1 -0
  31. package/dist/daemon/daemon-open-in-temp-vscode.js +17 -0
  32. package/dist/daemon/daemon-open-in-temp-vscode.js.map +1 -0
  33. package/dist/daemon/load-proto.d.ts +5 -1
  34. package/dist/daemon/load-proto.d.ts.map +1 -1
  35. package/dist/daemon/load-proto.js.map +1 -1
  36. package/dist/daemon/types.d.ts +53 -0
  37. package/dist/daemon/types.d.ts.map +1 -1
  38. package/oclif.manifest.json +409 -233
  39. package/package.json +1 -1
  40. package/proto/centy.proto +220 -48
@@ -1266,6 +1266,126 @@
1266
1266
  "autostart.js"
1267
1267
  ]
1268
1268
  },
1269
+ "duplicate:doc": {
1270
+ "aliases": [],
1271
+ "args": {
1272
+ "slug": {
1273
+ "description": "Doc slug",
1274
+ "name": "slug",
1275
+ "required": true
1276
+ }
1277
+ },
1278
+ "description": "Duplicate a doc (same project or different project)",
1279
+ "examples": [
1280
+ "<%= config.bin %> duplicate doc my-doc",
1281
+ "<%= config.bin %> duplicate doc readme --new-slug readme-v2",
1282
+ "<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
1283
+ "<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
1284
+ ],
1285
+ "flags": {
1286
+ "to": {
1287
+ "char": "t",
1288
+ "description": "Target project path (defaults to same project if not specified)",
1289
+ "name": "to",
1290
+ "hasDynamicHelp": false,
1291
+ "multiple": false,
1292
+ "type": "option"
1293
+ },
1294
+ "new-slug": {
1295
+ "char": "s",
1296
+ "description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
1297
+ "name": "new-slug",
1298
+ "hasDynamicHelp": false,
1299
+ "multiple": false,
1300
+ "type": "option"
1301
+ },
1302
+ "title": {
1303
+ "description": "Title for the duplicate (defaults to \"Copy of {original}\")",
1304
+ "name": "title",
1305
+ "hasDynamicHelp": false,
1306
+ "multiple": false,
1307
+ "type": "option"
1308
+ },
1309
+ "project": {
1310
+ "description": "Project name or path (defaults to current directory)",
1311
+ "name": "project",
1312
+ "hasDynamicHelp": false,
1313
+ "multiple": false,
1314
+ "type": "option"
1315
+ }
1316
+ },
1317
+ "hasDynamicHelp": false,
1318
+ "hiddenAliases": [],
1319
+ "id": "duplicate:doc",
1320
+ "pluginAlias": "centy",
1321
+ "pluginName": "centy",
1322
+ "pluginType": "core",
1323
+ "strict": true,
1324
+ "enableJsonFlag": false,
1325
+ "isESM": true,
1326
+ "relativePath": [
1327
+ "dist",
1328
+ "commands",
1329
+ "duplicate",
1330
+ "doc.js"
1331
+ ]
1332
+ },
1333
+ "duplicate:issue": {
1334
+ "aliases": [],
1335
+ "args": {
1336
+ "id": {
1337
+ "description": "Issue ID (UUID) or display number",
1338
+ "name": "id",
1339
+ "required": true
1340
+ }
1341
+ },
1342
+ "description": "Duplicate an issue (same project or different project)",
1343
+ "examples": [
1344
+ "<%= config.bin %> duplicate issue 1",
1345
+ "<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
1346
+ "<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
1347
+ "<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
1348
+ ],
1349
+ "flags": {
1350
+ "to": {
1351
+ "char": "t",
1352
+ "description": "Target project path (defaults to same project if not specified)",
1353
+ "name": "to",
1354
+ "hasDynamicHelp": false,
1355
+ "multiple": false,
1356
+ "type": "option"
1357
+ },
1358
+ "title": {
1359
+ "description": "Title for the duplicate (defaults to \"Copy of {original}\")",
1360
+ "name": "title",
1361
+ "hasDynamicHelp": false,
1362
+ "multiple": false,
1363
+ "type": "option"
1364
+ },
1365
+ "project": {
1366
+ "description": "Project name or path (defaults to current directory)",
1367
+ "name": "project",
1368
+ "hasDynamicHelp": false,
1369
+ "multiple": false,
1370
+ "type": "option"
1371
+ }
1372
+ },
1373
+ "hasDynamicHelp": false,
1374
+ "hiddenAliases": [],
1375
+ "id": "duplicate:issue",
1376
+ "pluginAlias": "centy",
1377
+ "pluginName": "centy",
1378
+ "pluginType": "core",
1379
+ "strict": true,
1380
+ "enableJsonFlag": false,
1381
+ "isESM": true,
1382
+ "relativePath": [
1383
+ "dist",
1384
+ "commands",
1385
+ "duplicate",
1386
+ "issue.js"
1387
+ ]
1388
+ },
1269
1389
  "delete:asset": {
1270
1390
  "aliases": [],
1271
1391
  "args": {
@@ -1663,126 +1783,6 @@
1663
1783
  "user.js"
1664
1784
  ]
1665
1785
  },
1666
- "duplicate:doc": {
1667
- "aliases": [],
1668
- "args": {
1669
- "slug": {
1670
- "description": "Doc slug",
1671
- "name": "slug",
1672
- "required": true
1673
- }
1674
- },
1675
- "description": "Duplicate a doc (same project or different project)",
1676
- "examples": [
1677
- "<%= config.bin %> duplicate doc my-doc",
1678
- "<%= config.bin %> duplicate doc readme --new-slug readme-v2",
1679
- "<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
1680
- "<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
1681
- ],
1682
- "flags": {
1683
- "to": {
1684
- "char": "t",
1685
- "description": "Target project path (defaults to same project if not specified)",
1686
- "name": "to",
1687
- "hasDynamicHelp": false,
1688
- "multiple": false,
1689
- "type": "option"
1690
- },
1691
- "new-slug": {
1692
- "char": "s",
1693
- "description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
1694
- "name": "new-slug",
1695
- "hasDynamicHelp": false,
1696
- "multiple": false,
1697
- "type": "option"
1698
- },
1699
- "title": {
1700
- "description": "Title for the duplicate (defaults to \"Copy of {original}\")",
1701
- "name": "title",
1702
- "hasDynamicHelp": false,
1703
- "multiple": false,
1704
- "type": "option"
1705
- },
1706
- "project": {
1707
- "description": "Project name or path (defaults to current directory)",
1708
- "name": "project",
1709
- "hasDynamicHelp": false,
1710
- "multiple": false,
1711
- "type": "option"
1712
- }
1713
- },
1714
- "hasDynamicHelp": false,
1715
- "hiddenAliases": [],
1716
- "id": "duplicate:doc",
1717
- "pluginAlias": "centy",
1718
- "pluginName": "centy",
1719
- "pluginType": "core",
1720
- "strict": true,
1721
- "enableJsonFlag": false,
1722
- "isESM": true,
1723
- "relativePath": [
1724
- "dist",
1725
- "commands",
1726
- "duplicate",
1727
- "doc.js"
1728
- ]
1729
- },
1730
- "duplicate:issue": {
1731
- "aliases": [],
1732
- "args": {
1733
- "id": {
1734
- "description": "Issue ID (UUID) or display number",
1735
- "name": "id",
1736
- "required": true
1737
- }
1738
- },
1739
- "description": "Duplicate an issue (same project or different project)",
1740
- "examples": [
1741
- "<%= config.bin %> duplicate issue 1",
1742
- "<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
1743
- "<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
1744
- "<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
1745
- ],
1746
- "flags": {
1747
- "to": {
1748
- "char": "t",
1749
- "description": "Target project path (defaults to same project if not specified)",
1750
- "name": "to",
1751
- "hasDynamicHelp": false,
1752
- "multiple": false,
1753
- "type": "option"
1754
- },
1755
- "title": {
1756
- "description": "Title for the duplicate (defaults to \"Copy of {original}\")",
1757
- "name": "title",
1758
- "hasDynamicHelp": false,
1759
- "multiple": false,
1760
- "type": "option"
1761
- },
1762
- "project": {
1763
- "description": "Project name or path (defaults to current directory)",
1764
- "name": "project",
1765
- "hasDynamicHelp": false,
1766
- "multiple": false,
1767
- "type": "option"
1768
- }
1769
- },
1770
- "hasDynamicHelp": false,
1771
- "hiddenAliases": [],
1772
- "id": "duplicate:issue",
1773
- "pluginAlias": "centy",
1774
- "pluginName": "centy",
1775
- "pluginType": "core",
1776
- "strict": true,
1777
- "enableJsonFlag": false,
1778
- "isESM": true,
1779
- "relativePath": [
1780
- "dist",
1781
- "commands",
1782
- "duplicate",
1783
- "issue.js"
1784
- ]
1785
- },
1786
1786
  "get:asset": {
1787
1787
  "aliases": [
1788
1788
  "show:asset"
@@ -2761,122 +2761,16 @@
2761
2761
  "users.js"
2762
2762
  ]
2763
2763
  },
2764
- "move:doc": {
2764
+ "project:archive": {
2765
2765
  "aliases": [],
2766
2766
  "args": {
2767
- "slug": {
2768
- "description": "Doc slug",
2769
- "name": "slug",
2770
- "required": true
2767
+ "path": {
2768
+ "description": "Path to the project (defaults to current directory)",
2769
+ "name": "path",
2770
+ "required": false
2771
2771
  }
2772
2772
  },
2773
- "description": "Move a doc to a different project",
2774
- "examples": [
2775
- "<%= config.bin %> move doc my-doc --to /path/to/target/project",
2776
- "<%= config.bin %> move doc readme --to ../other-project --new-slug new-readme",
2777
- "<%= config.bin %> move doc api-guide --to ~/projects/target --project ./source"
2778
- ],
2779
- "flags": {
2780
- "to": {
2781
- "char": "t",
2782
- "description": "Target project path",
2783
- "name": "to",
2784
- "required": true,
2785
- "hasDynamicHelp": false,
2786
- "multiple": false,
2787
- "type": "option"
2788
- },
2789
- "new-slug": {
2790
- "char": "s",
2791
- "description": "New slug for the doc (if slug already exists in target)",
2792
- "name": "new-slug",
2793
- "hasDynamicHelp": false,
2794
- "multiple": false,
2795
- "type": "option"
2796
- },
2797
- "project": {
2798
- "description": "Project name or path (defaults to current directory)",
2799
- "name": "project",
2800
- "hasDynamicHelp": false,
2801
- "multiple": false,
2802
- "type": "option"
2803
- }
2804
- },
2805
- "hasDynamicHelp": false,
2806
- "hiddenAliases": [],
2807
- "id": "move:doc",
2808
- "pluginAlias": "centy",
2809
- "pluginName": "centy",
2810
- "pluginType": "core",
2811
- "strict": true,
2812
- "enableJsonFlag": false,
2813
- "isESM": true,
2814
- "relativePath": [
2815
- "dist",
2816
- "commands",
2817
- "move",
2818
- "doc.js"
2819
- ]
2820
- },
2821
- "move:issue": {
2822
- "aliases": [],
2823
- "args": {
2824
- "id": {
2825
- "description": "Issue ID (UUID) or display number",
2826
- "name": "id",
2827
- "required": true
2828
- }
2829
- },
2830
- "description": "Move an issue to a different project",
2831
- "examples": [
2832
- "<%= config.bin %> move issue 1 --to /path/to/target/project",
2833
- "<%= config.bin %> move issue abc123-uuid --to ../other-project",
2834
- "<%= config.bin %> move issue 5 --to ~/projects/target --project ./source"
2835
- ],
2836
- "flags": {
2837
- "to": {
2838
- "char": "t",
2839
- "description": "Target project path",
2840
- "name": "to",
2841
- "required": true,
2842
- "hasDynamicHelp": false,
2843
- "multiple": false,
2844
- "type": "option"
2845
- },
2846
- "project": {
2847
- "description": "Project name or path (defaults to current directory)",
2848
- "name": "project",
2849
- "hasDynamicHelp": false,
2850
- "multiple": false,
2851
- "type": "option"
2852
- }
2853
- },
2854
- "hasDynamicHelp": false,
2855
- "hiddenAliases": [],
2856
- "id": "move:issue",
2857
- "pluginAlias": "centy",
2858
- "pluginName": "centy",
2859
- "pluginType": "core",
2860
- "strict": true,
2861
- "enableJsonFlag": false,
2862
- "isESM": true,
2863
- "relativePath": [
2864
- "dist",
2865
- "commands",
2866
- "move",
2867
- "issue.js"
2868
- ]
2869
- },
2870
- "project:archive": {
2871
- "aliases": [],
2872
- "args": {
2873
- "path": {
2874
- "description": "Path to the project (defaults to current directory)",
2875
- "name": "path",
2876
- "required": false
2877
- }
2878
- },
2879
- "description": "Archive or unarchive a project",
2773
+ "description": "Archive or unarchive a project",
2880
2774
  "examples": [
2881
2775
  "<%= config.bin %> project archive",
2882
2776
  "<%= config.bin %> project archive /path/to/project",
@@ -3105,6 +2999,112 @@
3105
2999
  "project.js"
3106
3000
  ]
3107
3001
  },
3002
+ "move:doc": {
3003
+ "aliases": [],
3004
+ "args": {
3005
+ "slug": {
3006
+ "description": "Doc slug",
3007
+ "name": "slug",
3008
+ "required": true
3009
+ }
3010
+ },
3011
+ "description": "Move a doc to a different project",
3012
+ "examples": [
3013
+ "<%= config.bin %> move doc my-doc --to /path/to/target/project",
3014
+ "<%= config.bin %> move doc readme --to ../other-project --new-slug new-readme",
3015
+ "<%= config.bin %> move doc api-guide --to ~/projects/target --project ./source"
3016
+ ],
3017
+ "flags": {
3018
+ "to": {
3019
+ "char": "t",
3020
+ "description": "Target project path",
3021
+ "name": "to",
3022
+ "required": true,
3023
+ "hasDynamicHelp": false,
3024
+ "multiple": false,
3025
+ "type": "option"
3026
+ },
3027
+ "new-slug": {
3028
+ "char": "s",
3029
+ "description": "New slug for the doc (if slug already exists in target)",
3030
+ "name": "new-slug",
3031
+ "hasDynamicHelp": false,
3032
+ "multiple": false,
3033
+ "type": "option"
3034
+ },
3035
+ "project": {
3036
+ "description": "Project name or path (defaults to current directory)",
3037
+ "name": "project",
3038
+ "hasDynamicHelp": false,
3039
+ "multiple": false,
3040
+ "type": "option"
3041
+ }
3042
+ },
3043
+ "hasDynamicHelp": false,
3044
+ "hiddenAliases": [],
3045
+ "id": "move:doc",
3046
+ "pluginAlias": "centy",
3047
+ "pluginName": "centy",
3048
+ "pluginType": "core",
3049
+ "strict": true,
3050
+ "enableJsonFlag": false,
3051
+ "isESM": true,
3052
+ "relativePath": [
3053
+ "dist",
3054
+ "commands",
3055
+ "move",
3056
+ "doc.js"
3057
+ ]
3058
+ },
3059
+ "move:issue": {
3060
+ "aliases": [],
3061
+ "args": {
3062
+ "id": {
3063
+ "description": "Issue ID (UUID) or display number",
3064
+ "name": "id",
3065
+ "required": true
3066
+ }
3067
+ },
3068
+ "description": "Move an issue to a different project",
3069
+ "examples": [
3070
+ "<%= config.bin %> move issue 1 --to /path/to/target/project",
3071
+ "<%= config.bin %> move issue abc123-uuid --to ../other-project",
3072
+ "<%= config.bin %> move issue 5 --to ~/projects/target --project ./source"
3073
+ ],
3074
+ "flags": {
3075
+ "to": {
3076
+ "char": "t",
3077
+ "description": "Target project path",
3078
+ "name": "to",
3079
+ "required": true,
3080
+ "hasDynamicHelp": false,
3081
+ "multiple": false,
3082
+ "type": "option"
3083
+ },
3084
+ "project": {
3085
+ "description": "Project name or path (defaults to current directory)",
3086
+ "name": "project",
3087
+ "hasDynamicHelp": false,
3088
+ "multiple": false,
3089
+ "type": "option"
3090
+ }
3091
+ },
3092
+ "hasDynamicHelp": false,
3093
+ "hiddenAliases": [],
3094
+ "id": "move:issue",
3095
+ "pluginAlias": "centy",
3096
+ "pluginName": "centy",
3097
+ "pluginType": "core",
3098
+ "strict": true,
3099
+ "enableJsonFlag": false,
3100
+ "isESM": true,
3101
+ "relativePath": [
3102
+ "dist",
3103
+ "commands",
3104
+ "move",
3105
+ "issue.js"
3106
+ ]
3107
+ },
3108
3108
  "sync:users": {
3109
3109
  "aliases": [],
3110
3110
  "args": {},
@@ -3735,7 +3735,183 @@
3735
3735
  "update",
3736
3736
  "user.js"
3737
3737
  ]
3738
+ },
3739
+ "workspace:cleanup": {
3740
+ "aliases": [],
3741
+ "args": {},
3742
+ "description": "Cleanup all expired temporary workspaces",
3743
+ "examples": [
3744
+ "<%= config.bin %> workspace cleanup"
3745
+ ],
3746
+ "flags": {},
3747
+ "hasDynamicHelp": false,
3748
+ "hiddenAliases": [],
3749
+ "id": "workspace:cleanup",
3750
+ "pluginAlias": "centy",
3751
+ "pluginName": "centy",
3752
+ "pluginType": "core",
3753
+ "strict": true,
3754
+ "enableJsonFlag": false,
3755
+ "isESM": true,
3756
+ "relativePath": [
3757
+ "dist",
3758
+ "commands",
3759
+ "workspace",
3760
+ "cleanup.js"
3761
+ ]
3762
+ },
3763
+ "workspace:close": {
3764
+ "aliases": [],
3765
+ "args": {
3766
+ "path": {
3767
+ "description": "Path to the workspace to close",
3768
+ "name": "path",
3769
+ "required": true
3770
+ }
3771
+ },
3772
+ "description": "Close and remove a temporary workspace",
3773
+ "examples": [
3774
+ "<%= config.bin %> workspace close /tmp/centy-workspace-abc123",
3775
+ "<%= config.bin %> workspace close /tmp/centy-workspace-abc123 --force"
3776
+ ],
3777
+ "flags": {
3778
+ "force": {
3779
+ "char": "f",
3780
+ "description": "Force removal even if VS Code may be open",
3781
+ "name": "force",
3782
+ "allowNo": false,
3783
+ "type": "boolean"
3784
+ }
3785
+ },
3786
+ "hasDynamicHelp": false,
3787
+ "hiddenAliases": [],
3788
+ "id": "workspace:close",
3789
+ "pluginAlias": "centy",
3790
+ "pluginName": "centy",
3791
+ "pluginType": "core",
3792
+ "strict": true,
3793
+ "enableJsonFlag": false,
3794
+ "isESM": true,
3795
+ "relativePath": [
3796
+ "dist",
3797
+ "commands",
3798
+ "workspace",
3799
+ "close.js"
3800
+ ]
3801
+ },
3802
+ "workspace:list": {
3803
+ "aliases": [],
3804
+ "args": {},
3805
+ "description": "List all temporary workspaces",
3806
+ "examples": [
3807
+ "<%= config.bin %> workspace list",
3808
+ "<%= config.bin %> workspace list --include-expired",
3809
+ "<%= config.bin %> workspace list --project ./my-project"
3810
+ ],
3811
+ "flags": {
3812
+ "project": {
3813
+ "description": "Project name or path (defaults to current directory)",
3814
+ "name": "project",
3815
+ "hasDynamicHelp": false,
3816
+ "multiple": false,
3817
+ "type": "option"
3818
+ },
3819
+ "include-expired": {
3820
+ "description": "Include expired workspaces",
3821
+ "name": "include-expired",
3822
+ "allowNo": false,
3823
+ "type": "boolean"
3824
+ },
3825
+ "all": {
3826
+ "description": "Show workspaces from all projects",
3827
+ "name": "all",
3828
+ "allowNo": false,
3829
+ "type": "boolean"
3830
+ }
3831
+ },
3832
+ "hasDynamicHelp": false,
3833
+ "hiddenAliases": [],
3834
+ "id": "workspace:list",
3835
+ "pluginAlias": "centy",
3836
+ "pluginName": "centy",
3837
+ "pluginType": "core",
3838
+ "strict": true,
3839
+ "enableJsonFlag": false,
3840
+ "isESM": true,
3841
+ "relativePath": [
3842
+ "dist",
3843
+ "commands",
3844
+ "workspace",
3845
+ "list.js"
3846
+ ]
3847
+ },
3848
+ "workspace:open": {
3849
+ "aliases": [],
3850
+ "args": {
3851
+ "issueId": {
3852
+ "description": "Issue ID or display number",
3853
+ "name": "issueId",
3854
+ "required": true
3855
+ }
3856
+ },
3857
+ "description": "Open an issue in a temporary VS Code workspace",
3858
+ "examples": [
3859
+ "<%= config.bin %> workspace open 1",
3860
+ "<%= config.bin %> workspace open 1 --action implement",
3861
+ "<%= config.bin %> workspace open abc-123 --ttl 24"
3862
+ ],
3863
+ "flags": {
3864
+ "project": {
3865
+ "description": "Project name or path (defaults to current directory)",
3866
+ "name": "project",
3867
+ "hasDynamicHelp": false,
3868
+ "multiple": false,
3869
+ "type": "option"
3870
+ },
3871
+ "action": {
3872
+ "char": "a",
3873
+ "description": "Action for the AI agent",
3874
+ "name": "action",
3875
+ "default": "plan",
3876
+ "hasDynamicHelp": false,
3877
+ "multiple": false,
3878
+ "options": [
3879
+ "plan",
3880
+ "implement"
3881
+ ],
3882
+ "type": "option"
3883
+ },
3884
+ "ttl": {
3885
+ "description": "Workspace TTL in hours (default: 12)",
3886
+ "name": "ttl",
3887
+ "hasDynamicHelp": false,
3888
+ "multiple": false,
3889
+ "type": "option"
3890
+ },
3891
+ "agent": {
3892
+ "description": "Agent name to use (default: project default)",
3893
+ "name": "agent",
3894
+ "hasDynamicHelp": false,
3895
+ "multiple": false,
3896
+ "type": "option"
3897
+ }
3898
+ },
3899
+ "hasDynamicHelp": false,
3900
+ "hiddenAliases": [],
3901
+ "id": "workspace:open",
3902
+ "pluginAlias": "centy",
3903
+ "pluginName": "centy",
3904
+ "pluginType": "core",
3905
+ "strict": true,
3906
+ "enableJsonFlag": false,
3907
+ "isESM": true,
3908
+ "relativePath": [
3909
+ "dist",
3910
+ "commands",
3911
+ "workspace",
3912
+ "open.js"
3913
+ ]
3738
3914
  }
3739
3915
  },
3740
- "version": "0.0.27"
3916
+ "version": "0.0.28"
3741
3917
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centy",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "CLI for managing project issues and docs via code in the .centy folder",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",