@proletariat/cli 0.2.0 → 0.3.1
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/README.md +561 -251
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +5 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +23 -0
- package/dist/commands/action/create.d.ts +21 -0
- package/dist/commands/action/create.js +126 -0
- package/dist/commands/action/delete.d.ts +17 -0
- package/dist/commands/action/delete.js +78 -0
- package/dist/commands/action/index.d.ts +15 -0
- package/dist/commands/action/index.js +107 -0
- package/dist/commands/action/list.d.ts +14 -0
- package/dist/commands/action/list.js +89 -0
- package/dist/commands/action/run.d.ts +19 -0
- package/dist/commands/action/run.js +179 -0
- package/dist/commands/action/show.d.ts +15 -0
- package/dist/commands/action/show.js +47 -0
- package/dist/commands/action/update.d.ts +22 -0
- package/dist/commands/action/update.js +168 -0
- package/dist/commands/agent/index.d.ts +13 -0
- package/dist/commands/agent/index.js +131 -0
- package/dist/commands/agent/list.d.ts +7 -0
- package/dist/commands/agent/list.js +126 -0
- package/dist/commands/agent/login.d.ts +16 -0
- package/dist/commands/agent/login.js +146 -0
- package/dist/commands/agent/rebuild.d.ts +18 -0
- package/dist/commands/agent/rebuild.js +133 -0
- package/dist/commands/agent/restart.d.ts +17 -0
- package/dist/commands/agent/restart.js +116 -0
- package/dist/commands/agent/shell.d.ts +23 -0
- package/dist/commands/agent/shell.js +378 -0
- package/dist/commands/agent/staff/add.d.ts +15 -0
- package/dist/commands/agent/staff/add.js +281 -0
- package/dist/commands/agent/staff/index.d.ts +14 -0
- package/dist/commands/agent/staff/index.js +90 -0
- package/dist/commands/agent/staff/list.d.ts +7 -0
- package/dist/commands/agent/staff/list.js +90 -0
- package/dist/commands/agent/staff/remove.d.ts +16 -0
- package/dist/commands/agent/staff/remove.js +137 -0
- package/dist/commands/agent/status.d.ts +17 -0
- package/dist/commands/agent/status.js +139 -0
- package/dist/commands/agent/temp/cleanup.d.ts +23 -0
- package/dist/commands/agent/temp/cleanup.js +388 -0
- package/dist/commands/agent/temp/index.d.ts +14 -0
- package/dist/commands/agent/temp/index.js +82 -0
- package/dist/commands/agent/temp/list.d.ts +7 -0
- package/dist/commands/agent/temp/list.js +108 -0
- package/dist/commands/agent/themes/add-names.d.ts +10 -0
- package/dist/commands/agent/themes/add-names.js +67 -0
- package/dist/commands/agent/themes/create.d.ts +13 -0
- package/dist/commands/agent/themes/create.js +66 -0
- package/dist/commands/agent/themes/index.d.ts +9 -0
- package/dist/commands/agent/themes/index.js +194 -0
- package/dist/commands/agent/themes/list.d.ts +6 -0
- package/dist/commands/agent/themes/list.js +41 -0
- package/dist/commands/agent/themes/set.d.ts +12 -0
- package/dist/commands/agent/themes/set.js +77 -0
- package/dist/commands/agent/visit.d.ts +16 -0
- package/dist/commands/agent/visit.js +88 -0
- package/dist/commands/autocomplete/setup.d.ts +14 -0
- package/dist/commands/autocomplete/setup.js +154 -0
- package/dist/commands/board/index.d.ts +17 -0
- package/dist/commands/board/index.js +255 -0
- package/dist/commands/board/watch.d.ts +13 -0
- package/dist/commands/board/watch.js +52 -0
- package/dist/commands/branch/create.d.ts +50 -0
- package/dist/commands/branch/create.js +624 -0
- package/dist/commands/branch/index.d.ts +13 -0
- package/dist/commands/branch/index.js +50 -0
- package/dist/commands/branch/list.d.ts +17 -0
- package/dist/commands/branch/list.js +120 -0
- package/dist/commands/branch/validate.d.ts +15 -0
- package/dist/commands/branch/validate.js +73 -0
- package/dist/commands/commit.d.ts +71 -0
- package/dist/commands/commit.js +499 -0
- package/dist/commands/docker/clean.d.ts +13 -0
- package/dist/commands/docker/clean.js +224 -0
- package/dist/commands/docker/index.d.ts +19 -0
- package/dist/commands/docker/index.js +274 -0
- package/dist/commands/docker/list.d.ts +16 -0
- package/dist/commands/docker/list.js +200 -0
- package/dist/commands/docker/logs.d.ts +14 -0
- package/dist/commands/docker/logs.js +118 -0
- package/dist/commands/docker/prune.d.ts +14 -0
- package/dist/commands/docker/prune.js +211 -0
- package/dist/commands/docker/restart.d.ts +14 -0
- package/dist/commands/docker/restart.js +129 -0
- package/dist/commands/docker/shell.d.ts +14 -0
- package/dist/commands/docker/shell.js +103 -0
- package/dist/commands/docker/start.d.ts +12 -0
- package/dist/commands/docker/start.js +92 -0
- package/dist/commands/docker/status.d.ts +7 -0
- package/dist/commands/docker/status.js +40 -0
- package/dist/commands/docker/stop.d.ts +14 -0
- package/dist/commands/docker/stop.js +134 -0
- package/dist/commands/docker/sync.d.ts +15 -0
- package/dist/commands/docker/sync.js +112 -0
- package/dist/commands/epic/activate.d.ts +13 -0
- package/dist/commands/epic/activate.js +118 -0
- package/dist/commands/epic/archive.d.ts +14 -0
- package/dist/commands/epic/archive.js +132 -0
- package/dist/commands/epic/create.d.ts +15 -0
- package/dist/commands/epic/create.js +137 -0
- package/dist/commands/epic/index.d.ts +13 -0
- package/dist/commands/epic/index.js +88 -0
- package/dist/commands/epic/link/block.d.ts +14 -0
- package/dist/commands/epic/link/block.js +79 -0
- package/dist/commands/epic/link/duplicates.d.ts +14 -0
- package/dist/commands/epic/link/duplicates.js +66 -0
- package/dist/commands/epic/link/index.d.ts +19 -0
- package/dist/commands/epic/link/index.js +242 -0
- package/dist/commands/epic/link/relates.d.ts +14 -0
- package/dist/commands/epic/link/relates.js +66 -0
- package/dist/commands/epic/link/remove.d.ts +16 -0
- package/dist/commands/epic/link/remove.js +89 -0
- package/dist/commands/epic/list.d.ts +11 -0
- package/dist/commands/epic/list.js +87 -0
- package/dist/commands/epic/move.d.ts +15 -0
- package/dist/commands/epic/move.js +184 -0
- package/dist/commands/epic/progress.d.ts +16 -0
- package/dist/commands/epic/progress.js +166 -0
- package/dist/commands/epic/project.d.ts +15 -0
- package/dist/commands/epic/project.js +219 -0
- package/dist/commands/epic/reorder.d.ts +21 -0
- package/dist/commands/epic/reorder.js +160 -0
- package/dist/commands/epic/spec.d.ts +15 -0
- package/dist/commands/epic/spec.js +191 -0
- package/dist/commands/epic/ticket.d.ts +18 -0
- package/dist/commands/epic/ticket.js +291 -0
- package/dist/commands/epic/view.d.ts +13 -0
- package/dist/commands/epic/view.js +117 -0
- package/dist/commands/execution/index.d.ts +13 -0
- package/dist/commands/execution/index.js +70 -0
- package/dist/commands/execution/list.d.ts +15 -0
- package/dist/commands/execution/list.js +144 -0
- package/dist/commands/execution/logs.d.ts +18 -0
- package/dist/commands/execution/logs.js +161 -0
- package/dist/commands/execution/stop.d.ts +22 -0
- package/dist/commands/execution/stop.js +248 -0
- package/dist/commands/gh/index.d.ts +9 -0
- package/dist/commands/gh/index.js +53 -0
- package/dist/commands/gh/login.d.ts +6 -0
- package/dist/commands/gh/login.js +57 -0
- package/dist/commands/gh/status.d.ts +6 -0
- package/dist/commands/gh/status.js +48 -0
- package/dist/commands/gh/token.d.ts +6 -0
- package/dist/commands/gh/token.js +59 -0
- package/dist/commands/init.d.ts +26 -0
- package/dist/commands/init.js +200 -0
- package/dist/commands/phase/create.d.ts +22 -0
- package/dist/commands/phase/create.js +123 -0
- package/dist/commands/phase/delete.d.ts +17 -0
- package/dist/commands/phase/delete.js +73 -0
- package/dist/commands/phase/list.d.ts +12 -0
- package/dist/commands/phase/list.js +76 -0
- package/dist/commands/phase/move.d.ts +17 -0
- package/dist/commands/phase/move.js +115 -0
- package/dist/commands/phase/template/apply.d.ts +17 -0
- package/dist/commands/phase/template/apply.js +106 -0
- package/dist/commands/phase/template/create.d.ts +16 -0
- package/dist/commands/phase/template/create.js +58 -0
- package/dist/commands/phase/template/delete.d.ts +17 -0
- package/dist/commands/phase/template/delete.js +98 -0
- package/dist/commands/phase/template/index.d.ts +15 -0
- package/dist/commands/phase/template/index.js +128 -0
- package/dist/commands/phase/template/list.d.ts +16 -0
- package/dist/commands/phase/template/list.js +95 -0
- package/dist/commands/phase/template/update.d.ts +17 -0
- package/dist/commands/phase/template/update.js +89 -0
- package/dist/commands/phase/update.d.ts +23 -0
- package/dist/commands/phase/update.js +174 -0
- package/dist/commands/pmo/init.d.ts +25 -0
- package/dist/commands/pmo/init.js +341 -0
- package/dist/commands/pr/create.d.ts +17 -0
- package/dist/commands/pr/create.js +242 -0
- package/dist/commands/pr/index.d.ts +9 -0
- package/dist/commands/pr/index.js +68 -0
- package/dist/commands/pr/link.d.ts +14 -0
- package/dist/commands/pr/link.js +212 -0
- package/dist/commands/pr/status.d.ts +12 -0
- package/dist/commands/pr/status.js +161 -0
- package/dist/commands/project/archive.d.ts +17 -0
- package/dist/commands/project/archive.js +83 -0
- package/dist/commands/project/create.d.ts +22 -0
- package/dist/commands/project/create.js +143 -0
- package/dist/commands/project/delete.d.ts +17 -0
- package/dist/commands/project/delete.js +128 -0
- package/dist/commands/project/index.d.ts +13 -0
- package/dist/commands/project/index.js +64 -0
- package/dist/commands/project/list.d.ts +14 -0
- package/dist/commands/project/list.js +96 -0
- package/dist/commands/project/spec.d.ts +18 -0
- package/dist/commands/project/spec.js +216 -0
- package/dist/commands/project/unarchive.d.ts +15 -0
- package/dist/commands/project/unarchive.js +35 -0
- package/dist/commands/project/view.d.ts +16 -0
- package/dist/commands/project/view.js +94 -0
- package/dist/commands/repo/add.d.ts +21 -0
- package/dist/commands/repo/add.js +118 -0
- package/dist/commands/repo/index.d.ts +13 -0
- package/dist/commands/repo/index.js +114 -0
- package/dist/commands/repo/list.d.ts +13 -0
- package/dist/commands/repo/list.js +96 -0
- package/dist/commands/repo/remove.d.ts +23 -0
- package/dist/commands/repo/remove.js +217 -0
- package/dist/commands/repo/view.d.ts +15 -0
- package/dist/commands/repo/view.js +99 -0
- package/dist/commands/session/attach.d.ts +40 -0
- package/dist/commands/session/attach.js +307 -0
- package/dist/commands/session/index.d.ts +13 -0
- package/dist/commands/session/index.js +64 -0
- package/dist/commands/session/list.d.ts +21 -0
- package/dist/commands/session/list.js +181 -0
- package/dist/commands/spec/create.d.ts +19 -0
- package/dist/commands/spec/create.js +130 -0
- package/dist/commands/spec/index.d.ts +13 -0
- package/dist/commands/spec/index.js +68 -0
- package/dist/commands/spec/link/depends.d.ts +14 -0
- package/dist/commands/spec/link/depends.js +64 -0
- package/dist/commands/spec/link/duplicates.d.ts +14 -0
- package/dist/commands/spec/link/duplicates.js +63 -0
- package/dist/commands/spec/link/index.d.ts +19 -0
- package/dist/commands/spec/link/index.js +200 -0
- package/dist/commands/spec/link/relates.d.ts +14 -0
- package/dist/commands/spec/link/relates.js +63 -0
- package/dist/commands/spec/link/remove.d.ts +16 -0
- package/dist/commands/spec/link/remove.js +94 -0
- package/dist/commands/spec/list.d.ts +12 -0
- package/dist/commands/spec/list.js +75 -0
- package/dist/commands/spec/plan.d.ts +15 -0
- package/dist/commands/spec/plan.js +108 -0
- package/dist/commands/spec/ticket.d.ts +18 -0
- package/dist/commands/spec/ticket.js +160 -0
- package/dist/commands/spec/view.d.ts +15 -0
- package/dist/commands/spec/view.js +163 -0
- package/dist/commands/status/create.d.ts +21 -0
- package/dist/commands/status/create.js +140 -0
- package/dist/commands/status/delete.d.ts +13 -0
- package/dist/commands/status/delete.js +77 -0
- package/dist/commands/status/index.d.ts +14 -0
- package/dist/commands/status/index.js +91 -0
- package/dist/commands/status/list.d.ts +12 -0
- package/dist/commands/status/list.js +93 -0
- package/dist/commands/status/move.d.ts +14 -0
- package/dist/commands/status/move.js +120 -0
- package/dist/commands/status/update.d.ts +20 -0
- package/dist/commands/status/update.js +180 -0
- package/dist/commands/template/delete.d.ts +15 -0
- package/dist/commands/template/delete.js +142 -0
- package/dist/commands/template/index.d.ts +10 -0
- package/dist/commands/template/index.js +64 -0
- package/dist/commands/template/list.d.ts +18 -0
- package/dist/commands/template/list.js +157 -0
- package/dist/commands/template/phase/apply.d.ts +14 -0
- package/dist/commands/template/phase/apply.js +41 -0
- package/dist/commands/template/phase/create.d.ts +12 -0
- package/dist/commands/template/phase/create.js +29 -0
- package/dist/commands/template/phase/delete.d.ts +13 -0
- package/dist/commands/template/phase/delete.js +34 -0
- package/dist/commands/template/phase/index.d.ts +10 -0
- package/dist/commands/template/phase/index.js +62 -0
- package/dist/commands/template/phase/list.d.ts +11 -0
- package/dist/commands/template/phase/list.js +34 -0
- package/dist/commands/template/phase/update.d.ts +13 -0
- package/dist/commands/template/phase/update.js +35 -0
- package/dist/commands/template/ticket/apply.d.ts +17 -0
- package/dist/commands/template/ticket/apply.js +58 -0
- package/dist/commands/template/ticket/delete.d.ts +13 -0
- package/dist/commands/template/ticket/delete.js +34 -0
- package/dist/commands/template/ticket/index.d.ts +10 -0
- package/dist/commands/template/ticket/index.js +62 -0
- package/dist/commands/template/ticket/list.d.ts +11 -0
- package/dist/commands/template/ticket/list.js +34 -0
- package/dist/commands/template/ticket/save.d.ts +13 -0
- package/dist/commands/template/ticket/save.js +35 -0
- package/dist/commands/ticket/bulk.d.ts +13 -0
- package/dist/commands/ticket/bulk.js +145 -0
- package/dist/commands/ticket/complete.d.ts +16 -0
- package/dist/commands/ticket/complete.js +170 -0
- package/dist/commands/ticket/create.d.ts +22 -0
- package/dist/commands/ticket/create.js +390 -0
- package/dist/commands/ticket/delete.d.ts +16 -0
- package/dist/commands/ticket/delete.js +178 -0
- package/dist/commands/ticket/edit.d.ts +27 -0
- package/dist/commands/ticket/edit.js +322 -0
- package/dist/commands/ticket/epic.d.ts +20 -0
- package/dist/commands/ticket/epic.js +333 -0
- package/dist/commands/ticket/index.d.ts +13 -0
- package/dist/commands/ticket/index.js +103 -0
- package/dist/commands/ticket/link/block.d.ts +14 -0
- package/dist/commands/ticket/link/block.js +94 -0
- package/dist/commands/ticket/link/duplicates.d.ts +14 -0
- package/dist/commands/ticket/link/duplicates.js +93 -0
- package/dist/commands/ticket/link/index.d.ts +19 -0
- package/dist/commands/ticket/link/index.js +239 -0
- package/dist/commands/ticket/link/relates.d.ts +14 -0
- package/dist/commands/ticket/link/relates.js +93 -0
- package/dist/commands/ticket/link/remove.d.ts +16 -0
- package/dist/commands/ticket/link/remove.js +128 -0
- package/dist/commands/ticket/list.d.ts +24 -0
- package/dist/commands/ticket/list.js +431 -0
- package/dist/commands/ticket/move.d.ts +18 -0
- package/dist/commands/ticket/move.js +212 -0
- package/dist/commands/ticket/project.d.ts +18 -0
- package/dist/commands/ticket/project.js +254 -0
- package/dist/commands/ticket/reassign.d.ts +19 -0
- package/dist/commands/ticket/reassign.js +279 -0
- package/dist/commands/ticket/spec.d.ts +18 -0
- package/dist/commands/ticket/spec.js +259 -0
- package/dist/commands/ticket/status.d.ts +13 -0
- package/dist/commands/ticket/status.js +87 -0
- package/dist/commands/ticket/template/apply.d.ts +25 -0
- package/dist/commands/ticket/template/apply.js +249 -0
- package/dist/commands/ticket/template/create.d.ts +19 -0
- package/dist/commands/ticket/template/create.js +210 -0
- package/dist/commands/ticket/template/delete.d.ts +17 -0
- package/dist/commands/ticket/template/delete.js +92 -0
- package/dist/commands/ticket/template/index.d.ts +15 -0
- package/dist/commands/ticket/template/index.js +118 -0
- package/dist/commands/ticket/template/list.d.ts +16 -0
- package/dist/commands/ticket/template/list.js +110 -0
- package/dist/commands/ticket/template/save.d.ts +14 -0
- package/dist/commands/ticket/template/save.js +110 -0
- package/dist/commands/ticket/update.d.ts +18 -0
- package/dist/commands/ticket/update.js +325 -0
- package/dist/commands/ticket/view.d.ts +13 -0
- package/dist/commands/ticket/view.js +80 -0
- package/dist/commands/whoami.d.ts +9 -0
- package/dist/commands/whoami.js +103 -0
- package/dist/commands/work/complete.d.ts +13 -0
- package/dist/commands/work/complete.js +121 -0
- package/dist/commands/work/index.d.ts +13 -0
- package/dist/commands/work/index.js +70 -0
- package/dist/commands/work/ready.d.ts +24 -0
- package/dist/commands/work/ready.js +290 -0
- package/dist/commands/work/revise.d.ts +19 -0
- package/dist/commands/work/revise.js +377 -0
- package/dist/commands/work/spawn-all.d.ts +17 -0
- package/dist/commands/work/spawn-all.js +58 -0
- package/dist/commands/work/spawn.d.ts +29 -0
- package/dist/commands/work/spawn.js +728 -0
- package/dist/commands/work/start.d.ts +39 -0
- package/dist/commands/work/start.js +1393 -0
- package/dist/commands/work/watch.d.ts +31 -0
- package/dist/commands/work/watch.js +359 -0
- package/dist/commands/workflow/create.d.ts +18 -0
- package/dist/commands/workflow/create.js +119 -0
- package/dist/commands/workflow/delete.d.ts +17 -0
- package/dist/commands/workflow/delete.js +119 -0
- package/dist/commands/workflow/index.d.ts +15 -0
- package/dist/commands/workflow/index.js +75 -0
- package/dist/commands/workflow/list.d.ts +15 -0
- package/dist/commands/workflow/list.js +75 -0
- package/dist/commands/workflow/switch.d.ts +13 -0
- package/dist/commands/workflow/switch.js +117 -0
- package/dist/commands/workflow/view.d.ts +16 -0
- package/dist/commands/workflow/view.js +114 -0
- package/dist/commands/workspace/add.d.ts +12 -0
- package/dist/commands/workspace/add.js +74 -0
- package/dist/commands/workspace/list.d.ts +9 -0
- package/dist/commands/workspace/list.js +153 -0
- package/dist/commands/workspace/remove.d.ts +13 -0
- package/dist/commands/workspace/remove.js +98 -0
- package/dist/commands/workspace/use.d.ts +12 -0
- package/dist/commands/workspace/use.js +111 -0
- package/dist/hooks/init.d.ts +11 -0
- package/dist/hooks/init.js +57 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lib/agents/commands.d.ts +189 -0
- package/dist/lib/agents/commands.js +893 -0
- package/dist/lib/agents/index.d.ts +54 -0
- package/dist/lib/agents/index.js +382 -0
- package/dist/lib/branch/index.d.ts +120 -0
- package/dist/lib/branch/index.js +334 -0
- package/dist/lib/colors.d.ts +94 -0
- package/dist/lib/colors.js +68 -0
- package/dist/lib/commands/docker-command.d.ts +21 -0
- package/dist/lib/commands/docker-command.js +27 -0
- package/dist/lib/database/index.d.ts +176 -0
- package/dist/lib/database/index.js +581 -0
- package/dist/lib/docker/resolve.d.ts +38 -0
- package/dist/lib/docker/resolve.js +175 -0
- package/dist/lib/execution/config.d.ts +150 -0
- package/dist/lib/execution/config.js +541 -0
- package/dist/lib/execution/devcontainer.d.ts +85 -0
- package/dist/lib/execution/devcontainer.js +594 -0
- package/dist/lib/execution/index.d.ts +10 -0
- package/dist/lib/execution/index.js +10 -0
- package/dist/lib/execution/runners.d.ts +53 -0
- package/dist/lib/execution/runners.js +1182 -0
- package/dist/lib/execution/spawner.d.ts +85 -0
- package/dist/lib/execution/spawner.js +548 -0
- package/dist/lib/execution/storage.d.ts +159 -0
- package/dist/lib/execution/storage.js +425 -0
- package/dist/lib/execution/types.d.ts +145 -0
- package/dist/lib/execution/types.js +157 -0
- package/dist/lib/init/index.d.ts +75 -0
- package/dist/lib/init/index.js +355 -0
- package/dist/lib/machine-config.d.ts +170 -0
- package/dist/lib/machine-config.js +386 -0
- package/dist/lib/pmo/base-command.d.ts +195 -0
- package/dist/lib/pmo/base-command.js +319 -0
- package/dist/lib/pmo/create-spec-folders.d.ts +43 -0
- package/dist/lib/pmo/create-spec-folders.js +64 -0
- package/dist/lib/pmo/epic-files.d.ts +56 -0
- package/dist/lib/pmo/epic-files.js +195 -0
- package/dist/lib/pmo/find-pmo.d.ts +14 -0
- package/dist/lib/pmo/find-pmo.js +172 -0
- package/dist/lib/pmo/index.d.ts +109 -0
- package/dist/lib/pmo/index.js +501 -0
- package/dist/lib/pmo/markdown.d.ts +31 -0
- package/dist/lib/pmo/markdown.js +245 -0
- package/dist/lib/pmo/pmo-context.d.ts +27 -0
- package/dist/lib/pmo/pmo-context.js +44 -0
- package/dist/lib/pmo/schema.d.ts +82 -0
- package/dist/lib/pmo/schema.js +531 -0
- package/dist/lib/pmo/spec-parser.d.ts +25 -0
- package/dist/lib/pmo/spec-parser.js +205 -0
- package/dist/lib/pmo/spec-types.d.ts +43 -0
- package/dist/lib/pmo/spec-types.js +7 -0
- package/dist/lib/pmo/storage/actions.d.ts +34 -0
- package/dist/lib/pmo/storage/actions.js +177 -0
- package/dist/lib/pmo/storage/base.d.ts +47 -0
- package/dist/lib/pmo/storage/base.js +858 -0
- package/dist/lib/pmo/storage/dependencies.d.ts +61 -0
- package/dist/lib/pmo/storage/dependencies.js +267 -0
- package/dist/lib/pmo/storage/epics.d.ts +46 -0
- package/dist/lib/pmo/storage/epics.js +243 -0
- package/dist/lib/pmo/storage/helpers.d.ts +33 -0
- package/dist/lib/pmo/storage/helpers.js +148 -0
- package/dist/lib/pmo/storage/index.d.ts +186 -0
- package/dist/lib/pmo/storage/index.js +689 -0
- package/dist/lib/pmo/storage/phases.d.ts +65 -0
- package/dist/lib/pmo/storage/phases.js +392 -0
- package/dist/lib/pmo/storage/projects.d.ts +79 -0
- package/dist/lib/pmo/storage/projects.js +303 -0
- package/dist/lib/pmo/storage/specs.d.ts +77 -0
- package/dist/lib/pmo/storage/specs.js +389 -0
- package/dist/lib/pmo/storage/statuses.d.ts +63 -0
- package/dist/lib/pmo/storage/statuses.js +404 -0
- package/dist/lib/pmo/storage/subtasks.d.ts +37 -0
- package/dist/lib/pmo/storage/subtasks.js +184 -0
- package/dist/lib/pmo/storage/templates.d.ts +40 -0
- package/dist/lib/pmo/storage/templates.js +210 -0
- package/dist/lib/pmo/storage/tickets.d.ts +57 -0
- package/dist/lib/pmo/storage/tickets.js +453 -0
- package/dist/lib/pmo/storage/types.d.ts +200 -0
- package/dist/lib/pmo/storage/types.js +5 -0
- package/dist/lib/pmo/storage/views.d.ts +44 -0
- package/dist/lib/pmo/storage/views.js +355 -0
- package/dist/lib/pmo/storage-sqlite.d.ts +7 -0
- package/dist/lib/pmo/storage-sqlite.js +7 -0
- package/dist/lib/pmo/sync-manager.d.ts +92 -0
- package/dist/lib/pmo/sync-manager.js +229 -0
- package/dist/lib/pmo/types.d.ts +710 -0
- package/dist/lib/pmo/types.js +108 -0
- package/dist/lib/pmo/utils.d.ts +122 -0
- package/dist/lib/pmo/utils.js +174 -0
- package/dist/lib/pmo/watcher.d.ts +43 -0
- package/dist/lib/pmo/watcher.js +208 -0
- package/dist/lib/pr/index.d.ts +150 -0
- package/dist/lib/pr/index.js +483 -0
- package/dist/lib/prompt-json.d.ts +231 -0
- package/dist/lib/prompt-json.js +213 -0
- package/dist/lib/repos/index.d.ts +81 -0
- package/dist/lib/repos/index.js +679 -0
- package/dist/lib/styles.d.ts +98 -0
- package/dist/lib/styles.js +195 -0
- package/dist/lib/themes.d.ts +128 -0
- package/dist/lib/themes.js +301 -0
- package/dist/lib/ui/BoardUI.d.ts +21 -0
- package/dist/lib/ui/BoardUI.js +85 -0
- package/dist/lib/ui/ClaimTicketUI.d.ts +17 -0
- package/dist/lib/ui/ClaimTicketUI.js +64 -0
- package/dist/lib/ui/CreateTicketUI.d.ts +13 -0
- package/dist/lib/ui/CreateTicketUI.js +101 -0
- package/dist/lib/workspace.d.ts +66 -0
- package/dist/lib/workspace.js +204 -0
- package/oclif.manifest.json +10593 -0
- package/package.json +103 -56
- package/LICENSE +0 -21
- package/dist/bin/prlt.d.ts +0 -11
- package/dist/bin/prlt.d.ts.map +0 -1
- package/dist/bin/prlt.js +0 -144
- package/dist/bin/prlt.js.map +0 -1
- package/dist/lib/config/index.d.ts +0 -14
- package/dist/lib/config/index.d.ts.map +0 -1
- package/dist/lib/config/index.js +0 -142
- package/dist/lib/config/index.js.map +0 -1
- package/dist/lib/config/upgrade.d.ts +0 -2
- package/dist/lib/config/upgrade.d.ts.map +0 -1
- package/dist/lib/config/upgrade.js +0 -248
- package/dist/lib/config/upgrade.js.map +0 -1
- package/dist/lib/themes/index.d.ts +0 -8
- package/dist/lib/themes/index.d.ts.map +0 -1
- package/dist/lib/themes/index.js +0 -80
- package/dist/lib/themes/index.js.map +0 -1
- package/dist/lib/utils/helpers.d.ts +0 -4
- package/dist/lib/utils/helpers.d.ts.map +0 -1
- package/dist/lib/utils/helpers.js +0 -39
- package/dist/lib/utils/helpers.js.map +0 -1
- package/dist/lib/utils/logger.d.ts +0 -4
- package/dist/lib/utils/logger.d.ts.map +0 -1
- package/dist/lib/utils/logger.js +0 -28
- package/dist/lib/utils/logger.js.map +0 -1
- package/dist/lib/workspace/index.d.ts +0 -13
- package/dist/lib/workspace/index.d.ts.map +0 -1
- package/dist/lib/workspace/index.js +0 -116
- package/dist/lib/workspace/index.js.map +0 -1
- package/dist/lib/worktree/index.d.ts +0 -7
- package/dist/lib/worktree/index.d.ts.map +0 -1
- package/dist/lib/worktree/index.js +0 -362
- package/dist/lib/worktree/index.js.map +0 -1
- package/dist/lib/worktree/migrate.d.ts +0 -2
- package/dist/lib/worktree/migrate.d.ts.map +0 -1
- package/dist/lib/worktree/migrate.js +0 -214
- package/dist/lib/worktree/migrate.js.map +0 -1
- package/dist/lib/worktree/repair.d.ts +0 -3
- package/dist/lib/worktree/repair.d.ts.map +0 -1
- package/dist/lib/worktree/repair.js +0 -320
- package/dist/lib/worktree/repair.js.map +0 -1
- package/dist/types/index.d.ts +0 -57
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -3
- package/dist/types/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,364 +1,674 @@
|
|
|
1
|
-
|
|
1
|
+
```
|
|
2
|
+
██████╗ ██████╗ ██████╗ ██╗ ███████╗████████╗ █████╗ ██████╗ ██╗ █████╗ ████████╗
|
|
3
|
+
██╔══██╗██╔══██╗██╔═══██╗██║ ██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║██╔══██╗╚══██╔══╝
|
|
4
|
+
██████╔╝██████╔╝██║ ██║██║ █████╗ ██║ ███████║██████╔╝██║███████║ ██║
|
|
5
|
+
██╔═══╝ ██╔══██╗██║ ██║██║ ██╔══╝ ██║ ██╔══██║██╔══██╗██║██╔══██║ ██║
|
|
6
|
+
██║ ██║ ██║╚██████╔╝███████╗███████╗ ██║ ██║ ██║██║ ██║██║██║ ██║ ██║
|
|
7
|
+
╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═╝
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
### Seize the means of production - Ship 100x.
|
|
2
11
|
|
|
3
|
-
> **
|
|
4
|
-
> *Run multiple Cursor sessions, Claude Code instances, or CLI agents simultaneously on one machine - each working on different features without conflicts*
|
|
12
|
+
> **Turn tickets into output with AI labor**
|
|
5
13
|
|
|
6
|
-
|
|
14
|
+
> 💡 *Paying for Claude Max but not maxing it out? You're leaving money on the table.*
|
|
15
|
+
|
|
16
|
+
> ⚠️ **Beta Software** — Commands, flags, and APIs may change between versions. Not yet recommended for production automation scripts.
|
|
7
17
|
|
|
8
18
|
---
|
|
9
19
|
|
|
10
|
-
|
|
20
|
+
# TLDR
|
|
11
21
|
|
|
12
|
-
**
|
|
22
|
+
**prlt** coordinates AI coding agents from one CLI. Isolated workspaces, secure containers, persistent state.
|
|
13
23
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
24
|
+
```bash
|
|
25
|
+
npm install -g @proletariat/cli
|
|
26
|
+
prlt init
|
|
27
|
+
prlt ticket create --title "Add OAuth" --category feature
|
|
28
|
+
prlt work spawn # Interactive: select tickets, environment, action
|
|
29
|
+
```
|
|
17
30
|
|
|
18
|
-
|
|
19
|
-
- 💰 **Billionaires** become your coding workforce (Bezos, Musk, Gates)
|
|
20
|
-
- 🚗 **Toyotas** drive your development forward (Prius, Tacoma, Tundra)
|
|
21
|
-
- 🏢 **Companies** form your development portfolio (Apple, Google, Microsoft)
|
|
31
|
+
Agent spawns in its own branch, writes code, opens PR. You review and merge.
|
|
22
32
|
|
|
23
|
-
|
|
33
|
+
**Why prlt?**
|
|
34
|
+
- **Isolated** - Each agent gets its own git branch. No conflicts.
|
|
35
|
+
- **Secure** - Docker containers, sandboxed from your host.
|
|
36
|
+
- **Durable** - Tmux sessions persist. Close window, agent keeps working.
|
|
37
|
+
- **Trackable** - One database, one CLI, all your agents.
|
|
38
|
+
- **Ephemeral** - Spawn agents on demand. They work, they PR, they're done.
|
|
39
|
+
- **Structured** - Tickets provide structured context, not freeform chat.
|
|
40
|
+
- **Persistent** - Tickets accumulate context over time. Hand off between agents.
|
|
41
|
+
- **Agent-native** - `--json` mode lets AI agents drive the CLI programmatically.
|
|
24
42
|
|
|
25
43
|
---
|
|
26
44
|
|
|
27
|
-
|
|
45
|
+
# Quick Start
|
|
28
46
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
47
|
+
```bash
|
|
48
|
+
npm install -g @proletariat/cli # Install
|
|
49
|
+
prlt init # Create HQ, add repos, choose theme
|
|
50
|
+
prlt ticket create --title "Add OAuth" --category feature
|
|
51
|
+
prlt work spawn # Interactive: select tickets, environment, action
|
|
52
|
+
# Agent creates PR → You review → Merge → Done
|
|
53
|
+
```
|
|
32
54
|
|
|
33
55
|
```
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
│
|
|
38
|
-
│
|
|
39
|
-
│
|
|
40
|
-
│
|
|
41
|
-
│
|
|
56
|
+
┌─────┐ ┌──────┐ ┌───────┐ ┌────────┐
|
|
57
|
+
│ You │ │ prlt │ │ Agent │ │ GitHub │
|
|
58
|
+
└──┬──┘ └──┬───┘ └───┬───┘ └───┬────┘
|
|
59
|
+
│ ticket create │ │ │
|
|
60
|
+
│───────────────>│ │ │
|
|
61
|
+
│ work spawn │ │ │
|
|
62
|
+
│───────────────>│ │ │
|
|
63
|
+
│ │ create branch │ │
|
|
64
|
+
│ │ create workspace│ │
|
|
65
|
+
│ │ spawn agent │ │
|
|
66
|
+
│ │─────────────────>│ │
|
|
67
|
+
│ │ │ read ticket │
|
|
68
|
+
│ │ │ write code │
|
|
69
|
+
│ │ │ commit │
|
|
70
|
+
│ │ │─────────────────>│
|
|
71
|
+
│ │ │ open PR │
|
|
72
|
+
│ │ │─────────────────>│
|
|
73
|
+
│ │ update status │ │
|
|
74
|
+
│ │<─────────────────│ │
|
|
75
|
+
│ PR ready │ │ │
|
|
76
|
+
│<───────────────│ │ │
|
|
77
|
+
│ review & approve │
|
|
78
|
+
│─────────────────────────────────────────────────────>│
|
|
42
79
|
```
|
|
43
80
|
|
|
44
|
-
|
|
81
|
+
<details>
|
|
82
|
+
<summary>View interactive diagram (GitHub only)</summary>
|
|
83
|
+
|
|
84
|
+
```mermaid
|
|
85
|
+
sequenceDiagram
|
|
86
|
+
participant You
|
|
87
|
+
participant prlt
|
|
88
|
+
participant Agent
|
|
89
|
+
participant GitHub
|
|
90
|
+
|
|
91
|
+
You->>prlt: prlt ticket create
|
|
92
|
+
You->>prlt: prlt work spawn
|
|
93
|
+
prlt->>prlt: Create branch
|
|
94
|
+
prlt->>prlt: Create workspace
|
|
95
|
+
prlt->>Agent: Spawn agent
|
|
96
|
+
Agent->>Agent: Read ticket
|
|
97
|
+
Agent->>Agent: Write code
|
|
98
|
+
Agent->>GitHub: Commit
|
|
99
|
+
Agent->>GitHub: Open PR
|
|
100
|
+
Agent->>prlt: Update status
|
|
101
|
+
prlt->>You: PR ready
|
|
102
|
+
You->>GitHub: Review & approve
|
|
103
|
+
```
|
|
45
104
|
|
|
46
|
-
|
|
47
|
-
*Three workspaces in parallel, each with manual pane + AI agent: `andreesen` (left) on Feature A, `zuck` (center) fixing a reported bug, and `jobs` (right) on Feature B. No musk, he was fired!*
|
|
105
|
+
</details>
|
|
48
106
|
|
|
49
|
-
|
|
107
|
+
Spawn agents to implement, groom, or review—not just write code.
|
|
50
108
|
|
|
51
|
-
|
|
109
|
+
### Interactive Menus
|
|
52
110
|
|
|
53
|
-
|
|
54
|
-
Just `prlt init` and you're ready to go. Zero configuration required.
|
|
111
|
+
`prlt work` guides you through project and ticket selection:
|
|
55
112
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
- **🏢 Companies**: Buy/sell companies in `../your-repo-portfolio/`
|
|
113
|
+
<p align="center">
|
|
114
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/work/work-project-select.png" alt="Project Selection" width="600">
|
|
115
|
+
</p>
|
|
60
116
|
|
|
61
|
-
|
|
62
|
-
Each agent gets their own clean workspace (`git worktree`) on your local filesystem. Run multiple Cursor windows, Claude Code instances, or just keep different features open - each agent in their own workspace, no context switching needed.
|
|
117
|
+
Choose your operation—start a single agent, batch spawn, or watch a column:
|
|
63
118
|
|
|
64
|
-
|
|
119
|
+
<p align="center">
|
|
120
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/work/work-operations-menu.png" alt="Work Operations Menu" width="600">
|
|
121
|
+
</p>
|
|
65
122
|
|
|
66
|
-
|
|
123
|
+
Select tickets to spawn, grouped by priority:
|
|
67
124
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
125
|
+
<p align="center">
|
|
126
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/work/work-ticket-select.png" alt="Ticket Selection" width="800">
|
|
127
|
+
</p>
|
|
71
128
|
|
|
72
|
-
|
|
73
|
-
cd your-repo
|
|
74
|
-
prlt init # Prompts you to choose: billionaires, toyotas, or companies
|
|
129
|
+
---
|
|
75
130
|
|
|
76
|
-
#
|
|
77
|
-
prlt hire bezos musk # Billionaires theme
|
|
78
|
-
prlt drive 4runner prius # Cars theme
|
|
79
|
-
prlt buy apple microsoft # Companies theme
|
|
131
|
+
# Deep Dive
|
|
80
132
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
133
|
+
| Problem | Solution |
|
|
134
|
+
| --- | --- |
|
|
135
|
+
| Agents conflict with each other's changes | **Isolated** - Each agent gets its own git branch and worktree |
|
|
136
|
+
| Agents run unsandboxed on your machine | **Secure** - Docker containers, sandboxed from your host (looking into host sandbox options) |
|
|
137
|
+
| You lose track of who's doing what | **Trackable** - All state in one SQLite database, one CLI |
|
|
138
|
+
| Sessions die when you close a window | **Durable** - Tmux sessions persist, detach/reattach anytime |
|
|
139
|
+
| Context scattered across chat windows | **Structured** - Tickets with requirements, acceptance criteria |
|
|
140
|
+
| Starting agents is heavyweight | **Ephemeral** - Spawn on demand, they work, they PR, they're done |
|
|
141
|
+
| Context lost between agent runs | **Persistent** - Tickets accumulate context, hand off between agents |
|
|
85
142
|
|
|
86
|
-
|
|
87
|
-
prlt fire gates # Billionaires theme
|
|
88
|
-
prlt park honda # Cars theme
|
|
89
|
-
prlt sell nvidia # Companies theme
|
|
90
|
-
```
|
|
143
|
+
### Data Model
|
|
91
144
|
|
|
92
|
-
|
|
145
|
+
```
|
|
146
|
+
Workspace (HQ)
|
|
147
|
+
├── Projects
|
|
148
|
+
│ ├── Epics → Tickets
|
|
149
|
+
│ └── (references a Workflow)
|
|
150
|
+
├── Workflows → Phases → Statuses (can be shared across projects)
|
|
151
|
+
├── Specs (can span projects)
|
|
152
|
+
├── Actions (reusable templates)
|
|
153
|
+
├── Agents
|
|
154
|
+
│ ├── Staff (persistent, named)
|
|
155
|
+
│ └── Temp (ephemeral, per-ticket)
|
|
156
|
+
└── Executions (running sessions)
|
|
157
|
+
├── Docker
|
|
158
|
+
│ ├── Tmux session
|
|
159
|
+
│ ├── Terminal or Background display
|
|
160
|
+
│ └── Safe or YOLO permissions
|
|
161
|
+
└── Host
|
|
162
|
+
├── Tmux session
|
|
163
|
+
├── Terminal or Background display
|
|
164
|
+
└── Safe or YOLO permissions
|
|
165
|
+
```
|
|
93
166
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
167
|
+
| Entity | Description |
|
|
168
|
+
| --- | --- |
|
|
169
|
+
| **Project** | Groups tickets and epics, references a workflow |
|
|
170
|
+
| **Epic** | Work container with lifecycle (draft → active → complete) |
|
|
171
|
+
| **Ticket** | Individual work item with requirements and acceptance criteria |
|
|
172
|
+
| **Spec** | Static documentation (can span projects, linked to epics) |
|
|
173
|
+
| **Workflow** | Status flow configuration (can be shared across projects) |
|
|
174
|
+
| **Phase** | Stage in a workflow |
|
|
175
|
+
| **Status** | Ticket state within a phase |
|
|
176
|
+
| **Action** | Reusable prompt/action templates |
|
|
177
|
+
| **Agent (Staff)** | Persistent named agent with dedicated workspace |
|
|
178
|
+
| **Agent (Temp)** | Ephemeral agent spawned for a single ticket |
|
|
179
|
+
| **Execution** | Running agent session on a ticket |
|
|
180
|
+
| **Display** | Terminal (new tab) or Background (detached) |
|
|
181
|
+
|
|
182
|
+
### Example Workflow
|
|
183
|
+
|
|
184
|
+
A workflow defines how tickets move through your process. Projects reference a workflow, and multiple projects can share the same one.
|
|
99
185
|
|
|
100
|
-
|
|
186
|
+
```
|
|
187
|
+
Kanban Workflow
|
|
188
|
+
├── Backlog # New tickets land here
|
|
189
|
+
├── In Progress # Agent working (prlt work spawn)
|
|
190
|
+
├── Review # PR ready (prlt work ready)
|
|
191
|
+
└── Done # Merged (prlt work complete)
|
|
101
192
|
```
|
|
102
193
|
|
|
103
|
-
Creates this organized structure to hold multi-repo projects:
|
|
104
194
|
```
|
|
105
|
-
|
|
106
|
-
├──
|
|
107
|
-
├──
|
|
108
|
-
│ ├──
|
|
109
|
-
│ ├──
|
|
110
|
-
│ └──
|
|
111
|
-
|
|
112
|
-
└── backend-repo-staff/ (backend billionaire agents)
|
|
113
|
-
├── cook/ (e.g., Codex CLI 1)
|
|
114
|
-
├── jobs/ (e.g., Codex CLI 2)
|
|
115
|
-
└── buffett/ (e.g., Claude Code instance 2)
|
|
195
|
+
Scrum Workflow
|
|
196
|
+
├── Backlog
|
|
197
|
+
├── Sprint
|
|
198
|
+
│ ├── To Do
|
|
199
|
+
│ ├── In Progress
|
|
200
|
+
│ └── In Review
|
|
201
|
+
└── Done
|
|
116
202
|
```
|
|
117
203
|
|
|
118
|
-
|
|
204
|
+
Tickets flow through statuses as work progresses. Agents automatically move tickets when they start work, open PRs, or complete tasks.
|
|
205
|
+
|
|
206
|
+
### Workspace Structure
|
|
207
|
+
|
|
208
|
+
Each agent gets a copy of all repos (repo scoping coming soon). Work happens on isolated branches.
|
|
119
209
|
|
|
120
|
-
**Default Layout** - Agents as siblings to your repository:
|
|
121
210
|
```
|
|
122
|
-
|
|
123
|
-
├──
|
|
124
|
-
└──
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
└──
|
|
130
|
-
├──
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
└──
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
211
|
+
my-project/
|
|
212
|
+
├── .proletariat/
|
|
213
|
+
│ └── workspace.db # Tickets, executions, state
|
|
214
|
+
├── repos/
|
|
215
|
+
│ ├── frontend/ # Your repos
|
|
216
|
+
│ ├── backend/
|
|
217
|
+
│ └── infra/
|
|
218
|
+
└── agents/
|
|
219
|
+
├── staff/
|
|
220
|
+
│ └── alice/ # Named agent with persistent workspace
|
|
221
|
+
│ ├── frontend/
|
|
222
|
+
│ ├── backend/
|
|
223
|
+
│ └── infra/
|
|
224
|
+
└── temp/
|
|
225
|
+
├── agent-abc123/ # Ephemeral: Working on TKT-042 (OAuth)
|
|
226
|
+
│ ├── frontend/ # All repos on branch: feat/TKT-042-oauth
|
|
227
|
+
│ ├── backend/
|
|
228
|
+
│ └── infra/
|
|
229
|
+
└── agent-def456/ # Ephemeral: Working on TKT-043 (API)
|
|
230
|
+
├── frontend/ # All repos on branch: feat/TKT-043-api
|
|
231
|
+
├── backend/
|
|
232
|
+
└── infra/
|
|
138
233
|
```
|
|
139
234
|
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
prlt init --workspace-root ~/code/agents
|
|
143
|
-
# Creates agents in your specified directory
|
|
144
|
-
```
|
|
235
|
+
### Three Ways to Use Commands
|
|
145
236
|
|
|
146
|
-
|
|
237
|
+
#### 1. Interactive (Humans)
|
|
147
238
|
|
|
148
|
-
|
|
239
|
+
Run without flags—get guided prompts:
|
|
149
240
|
|
|
150
241
|
```bash
|
|
151
|
-
$ prlt
|
|
152
|
-
⚒️ PROLETARIAT ⚒️
|
|
153
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
154
|
-
💰 Billionaire Staff 💰
|
|
155
|
-
⚒️ Creating workspaces for your billionaire staff!
|
|
156
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
157
|
-
|
|
158
|
-
$ prlt hire bezos musk
|
|
159
|
-
💰 Hiring billionaire workers
|
|
160
|
-
💰 BEZOS: Ready to work at ../your-repo-staff/bezos
|
|
161
|
-
💰 MUSK: Ready to work at ../your-repo-staff/musk
|
|
162
|
-
|
|
163
|
-
$ prlt staff
|
|
164
|
-
💰 Current billionaire staff
|
|
165
|
-
💰 BEZOS: ✅ ACTIVE - ../your-repo-staff/bezos
|
|
166
|
-
📝 Branch: agent/bezos/work
|
|
167
|
-
💰 MUSK: ✅ ACTIVE - ../your-repo-staff/musk
|
|
168
|
-
📝 Branch: agent/musk/work
|
|
169
|
-
|
|
170
|
-
Workers of the codebase, unite! ✊
|
|
171
|
-
```
|
|
242
|
+
$ prlt ticket create
|
|
172
243
|
|
|
173
|
-
|
|
244
|
+
? Title: Add password reset
|
|
245
|
+
? Description: Email-based password reset flow
|
|
246
|
+
? Priority: P1
|
|
247
|
+
? Category: feature
|
|
174
248
|
|
|
175
|
-
|
|
249
|
+
✓ Created TKT-043
|
|
250
|
+
```
|
|
176
251
|
|
|
177
|
-
|
|
178
|
-
Make the ultra-wealthy work for YOU!
|
|
252
|
+
View ticket details with `prlt ticket`:
|
|
179
253
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
prlt fire zuck # You're fired!
|
|
184
|
-
prlt staff # Check your workers
|
|
185
|
-
```
|
|
254
|
+
<p align="center">
|
|
255
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/ticket/ticket-view.png" alt="Ticket View" width="600">
|
|
256
|
+
</p>
|
|
186
257
|
|
|
187
|
-
|
|
188
|
-
**Directory**: `../[your-repo]-staff/`
|
|
258
|
+
#### 2. JSON Mode (AI Agents)
|
|
189
259
|
|
|
190
|
-
|
|
191
|
-
Put manufacturing's finest to work as your development fleet.
|
|
260
|
+
Add `--json` for machine-readable output:
|
|
192
261
|
|
|
193
262
|
```bash
|
|
194
|
-
prlt
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
263
|
+
$ prlt work start --json
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
```json
|
|
267
|
+
{
|
|
268
|
+
"prompt": {
|
|
269
|
+
"type": "list",
|
|
270
|
+
"message": "Select ticket to work on:",
|
|
271
|
+
"choices": [
|
|
272
|
+
{
|
|
273
|
+
"name": "[P1] TKT-042 - Add user authentication",
|
|
274
|
+
"value": "TKT-042",
|
|
275
|
+
"command": "prlt work start TKT-042 --json"
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
}
|
|
279
|
+
}
|
|
198
280
|
```
|
|
199
281
|
|
|
200
|
-
|
|
201
|
-
**Directory**: `../[your-repo]-garage/`
|
|
282
|
+
AI agents parse this, make selections, call the next command.
|
|
202
283
|
|
|
203
|
-
|
|
204
|
-
|
|
284
|
+
#### 3. Flags (Scripts/CI)
|
|
285
|
+
|
|
286
|
+
Pass everything directly:
|
|
205
287
|
|
|
206
288
|
```bash
|
|
207
|
-
prlt
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
289
|
+
prlt ticket create \
|
|
290
|
+
--title "Add OAuth" \
|
|
291
|
+
--description "Google and GitHub OAuth" \
|
|
292
|
+
--priority P1 \
|
|
293
|
+
--category feature
|
|
211
294
|
```
|
|
212
295
|
|
|
213
|
-
|
|
214
|
-
**Directory**: `../[your-repo]-portfolio/`
|
|
296
|
+
### Execution Modes
|
|
215
297
|
|
|
216
|
-
|
|
298
|
+
**Environment** - where the agent runs:
|
|
217
299
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
|
221
|
-
|
|
222
|
-
| **💰 Billionaires** | `hire` | `fire` | `staff` | `../your-repo-staff/` |
|
|
223
|
-
| **🚗 Cars** | `drive` | `park` | `garage` | `../your-repo-garage/` |
|
|
224
|
-
| **🏢 Companies** | `buy` | `sell` | `portfolio` | `../your-repo-portfolio/` |
|
|
225
|
-
|
|
226
|
-
### Universal Commands
|
|
227
|
-
- `prlt init [--theme=cars]` - Initialize with theme
|
|
228
|
-
- `prlt init --hq <name>` - Create/join an HQ directory
|
|
229
|
-
- `prlt init --hq-root <path>` - Use a custom agent directory
|
|
230
|
-
- `prlt list [--theme=cars]` - List available agents
|
|
231
|
-
- `prlt themes` - Show all themes
|
|
232
|
-
- `prlt repair` - Fix broken worktree references after repo moves
|
|
233
|
-
- `prlt migrate <hq-name>` - Move your repo into an HQ folder
|
|
234
|
-
- `prlt upgrade` - Upgrade config to latest format (backwards compatible)
|
|
235
|
-
- `prlt health` - Check worktree health status
|
|
300
|
+
| Environment | Flag | Best For |
|
|
301
|
+
| --- | --- | --- |
|
|
302
|
+
| 🐳 Docker | (default if devcontainer exists) | Safety—fully isolated container |
|
|
303
|
+
| 🏃 Host | `--run-on-host` | Speed—no container overhead |
|
|
236
304
|
|
|
237
|
-
|
|
305
|
+
**Display** - how you see it:
|
|
238
306
|
|
|
239
|
-
|
|
307
|
+
| Display | Flag | Best For |
|
|
308
|
+
| --- | --- | --- |
|
|
309
|
+
| 📺 Terminal | `--display terminal` | Watch in new terminal tab |
|
|
310
|
+
| 🔇 Background | `--display background` | Detached, reattach later |
|
|
240
311
|
|
|
241
|
-
|
|
242
|
-
2. **Create agents**: `prlt hire bezos` / `prlt drive camry` / `prlt buy apple` - Creates isolated workspaces (`git worktrees`)
|
|
243
|
-
3. **Work**: Each workspace (git worktree) is a persistent directory where agents can work independently - you can switch AI tools or branches but the workspace persists
|
|
244
|
-
4. **Check status**: `prlt staff` / `prlt garage` / `prlt portfolio` - See your active agents
|
|
245
|
-
5. **Clean up**: `prlt fire bezos` / `prlt park camry` / `prlt sell apple` - Removes worktrees cleanly
|
|
312
|
+
**Permissions** - agent access level:
|
|
246
313
|
|
|
247
|
-
|
|
314
|
+
| Mode | Flag | Description |
|
|
315
|
+
| --- | --- | --- |
|
|
316
|
+
| 🔒 Safe | (default) | Agent prompts for permissions |
|
|
317
|
+
| 🕺 YOLO | `--skip-permissions` | No prompts, full access. Use with Docker for safe autonomy. |
|
|
248
318
|
|
|
249
|
-
|
|
319
|
+
All sessions run in tmux under the hood—close the window, agent keeps working.
|
|
250
320
|
|
|
251
|
-
|
|
321
|
+
```bash
|
|
322
|
+
# Default: Docker + terminal (if devcontainer exists)
|
|
323
|
+
prlt work start TKT-042
|
|
252
324
|
|
|
253
|
-
|
|
325
|
+
# Docker + background
|
|
326
|
+
prlt work start TKT-042 --display background
|
|
254
327
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
328
|
+
# Host + background (fast, no container)
|
|
329
|
+
prlt work start TKT-042 --run-on-host --display background
|
|
330
|
+
|
|
331
|
+
# Docker + YOLO (full autonomy, safely sandboxed)
|
|
332
|
+
prlt work start TKT-042 --skip-permissions
|
|
258
333
|
```
|
|
259
334
|
|
|
260
|
-
|
|
335
|
+
### Parallel Agents
|
|
336
|
+
|
|
337
|
+
Work on multiple tickets simultaneously.
|
|
261
338
|
|
|
262
|
-
**
|
|
339
|
+
**Interactive (humans):**
|
|
263
340
|
```bash
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
341
|
+
$ prlt work spawn
|
|
342
|
+
|
|
343
|
+
? Spawn mode: Select specific tickets
|
|
344
|
+
? Select tickets:
|
|
345
|
+
◉ [P1] TKT-042 - Add user authentication
|
|
346
|
+
◉ [P1] TKT-043 - Add API rate limiting
|
|
347
|
+
◯ [P2] TKT-044 - Add email notifications
|
|
348
|
+
? Action: implement
|
|
349
|
+
? Environment: docker
|
|
350
|
+
|
|
351
|
+
Spawning 2 tickets...
|
|
271
352
|
```
|
|
272
353
|
|
|
273
|
-
**
|
|
354
|
+
**JSON mode (AI agents):** *(multi-select WIP)*
|
|
274
355
|
```bash
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
356
|
+
$ prlt work spawn --json --many
|
|
357
|
+
```
|
|
358
|
+
```json
|
|
359
|
+
{
|
|
360
|
+
"prompt": {
|
|
361
|
+
"type": "checkbox",
|
|
362
|
+
"message": "Select tickets to spawn:",
|
|
363
|
+
"choices": [
|
|
364
|
+
{ "name": "[P1] TKT-042 - Add user authentication", "value": "TKT-042" },
|
|
365
|
+
{ "name": "[P1] TKT-043 - Add API rate limiting", "value": "TKT-043" }
|
|
366
|
+
]
|
|
367
|
+
}
|
|
368
|
+
}
|
|
280
369
|
```
|
|
281
370
|
|
|
282
|
-
**
|
|
371
|
+
**Flags (scripts/CI):**
|
|
283
372
|
```bash
|
|
284
|
-
|
|
285
|
-
# Your manual testing, experiments, debugging
|
|
286
|
-
# No AI needed - just your playground
|
|
373
|
+
prlt work spawn TKT-042 TKT-043 --action implement --mode docker
|
|
287
374
|
```
|
|
288
375
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
376
|
+
Each agent works in its own branch. No conflicts.
|
|
377
|
+
|
|
378
|
+
> **Scaling:** The main limit is your machine. 50+ concurrent agents is achievable—depends on CPU, RAM, and whether you're running Docker or host mode.
|
|
379
|
+
|
|
380
|
+
Monitor running agents with `prlt execution`:
|
|
381
|
+
|
|
382
|
+
<p align="center">
|
|
383
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/execution/execution-list.png" alt="Execution List" width="800">
|
|
384
|
+
</p>
|
|
385
|
+
|
|
386
|
+
```
|
|
387
|
+
┌─────────────────────┐ ┌─────────────────────┐ ┌──────────────────────────────┐
|
|
388
|
+
│ You │ │ Agents │ │ GitHub │
|
|
389
|
+
├─────────────────────┤ ├─────────────────────┤ ├──────────────────────────────┤
|
|
390
|
+
│ │ │ Agent 1 │ │ PR #101 │
|
|
391
|
+
│ prlt work spawn ───┼─────>│ TKT-042 OAuth ──┼─────>│ feat/TKT-042-oauth │
|
|
392
|
+
│ │ │ │ │ │
|
|
393
|
+
│ │ │ Agent 2 │ │ PR #102 │
|
|
394
|
+
│ ───┼─────>│ TKT-043 Rate Limit─┼─────>│ feat/TKT-043-rate-limit │
|
|
395
|
+
│ │ │ │ │ │
|
|
396
|
+
│ │ │ Agent 3 │ │ PR #103 │
|
|
397
|
+
│ ───┼─────>│ TKT-044 Notifs ──┼─────>│ feat/TKT-044-notifications │
|
|
398
|
+
└─────────────────────┘ └─────────────────────┘ └──────────────────────────────┘
|
|
300
399
|
```
|
|
301
400
|
|
|
302
|
-
|
|
401
|
+
<details>
|
|
402
|
+
<summary>View interactive diagram (GitHub only)</summary>
|
|
403
|
+
|
|
404
|
+
```mermaid
|
|
405
|
+
flowchart LR
|
|
406
|
+
subgraph You
|
|
407
|
+
spawn[prlt work spawn]
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
subgraph Agents
|
|
411
|
+
A1[Agent 1<br/>TKT-042 OAuth]
|
|
412
|
+
A2[Agent 2<br/>TKT-043 Rate Limit]
|
|
413
|
+
A3[Agent 3<br/>TKT-044 Notifications]
|
|
414
|
+
end
|
|
415
|
+
|
|
416
|
+
subgraph GitHub
|
|
417
|
+
PR1[PR #101<br/>feat/TKT-042-oauth]
|
|
418
|
+
PR2[PR #102<br/>feat/TKT-043-rate-limit]
|
|
419
|
+
PR3[PR #103<br/>feat/TKT-044-notifications]
|
|
420
|
+
end
|
|
421
|
+
|
|
422
|
+
spawn --> A1
|
|
423
|
+
spawn --> A2
|
|
424
|
+
spawn --> A3
|
|
425
|
+
|
|
426
|
+
A1 --> PR1
|
|
427
|
+
A2 --> PR2
|
|
428
|
+
A3 --> PR3
|
|
429
|
+
```
|
|
303
430
|
|
|
304
|
-
|
|
431
|
+
</details>
|
|
432
|
+
|
|
433
|
+
Agent-created PRs ready for review:
|
|
434
|
+
|
|
435
|
+
<p align="center">
|
|
436
|
+
<img src="https://raw.githubusercontent.com/chrismcdermut/proletariat/main/docs/images/execution/github-prs.png" alt="GitHub Pull Requests" width="800">
|
|
437
|
+
</p>
|
|
438
|
+
|
|
439
|
+
### Command Reference
|
|
440
|
+
|
|
441
|
+
<details>
|
|
442
|
+
<summary><b>Full Command Reference</b> (click to expand)</summary>
|
|
443
|
+
|
|
444
|
+
<table>
|
|
445
|
+
<tr><th>Namespace</th><th>Command</th><th>Description</th></tr>
|
|
446
|
+
<!-- ticket -->
|
|
447
|
+
<tr><td rowspan="11"><b>ticket</b></td><td><code>prlt ticket create</code></td><td>Create new ticket</td></tr>
|
|
448
|
+
<tr><td><code>prlt ticket list</code></td><td>List all tickets</td></tr>
|
|
449
|
+
<tr><td><code>prlt ticket view <id></code></td><td>View ticket details</td></tr>
|
|
450
|
+
<tr><td><code>prlt ticket edit <id></code></td><td>Edit ticket</td></tr>
|
|
451
|
+
<tr><td><code>prlt ticket move <id> <status></code></td><td>Change status</td></tr>
|
|
452
|
+
<tr><td><code>prlt ticket delete <id></code></td><td>Delete ticket</td></tr>
|
|
453
|
+
<tr><td><code>prlt ticket complete <id></code></td><td>Mark ticket complete</td></tr>
|
|
454
|
+
<tr><td><code>prlt ticket bulk</code></td><td>Bulk ticket operations</td></tr>
|
|
455
|
+
<tr><td><code>prlt ticket link block <id></code></td><td>Link blocking ticket</td></tr>
|
|
456
|
+
<tr><td><code>prlt ticket link relates <id></code></td><td>Link related ticket</td></tr>
|
|
457
|
+
<tr><td><code>prlt ticket template save</code></td><td>Save ticket as template</td></tr>
|
|
458
|
+
<!-- work -->
|
|
459
|
+
<tr><td rowspan="7"><b>work</b></td><td><code>prlt work start <id></code></td><td>Spawn agent on ticket</td></tr>
|
|
460
|
+
<tr><td><code>prlt work spawn</code></td><td>Batch spawn tickets</td></tr>
|
|
461
|
+
<tr><td><code>prlt work spawn-all</code></td><td>Spawn all planned tickets</td></tr>
|
|
462
|
+
<tr><td><code>prlt work complete <id></code></td><td>Mark work done</td></tr>
|
|
463
|
+
<tr><td><code>prlt work ready <id></code></td><td>Mark ready for review</td></tr>
|
|
464
|
+
<tr><td><code>prlt work revise <id></code></td><td>Request revision</td></tr>
|
|
465
|
+
<tr><td><code>prlt work watch</code></td><td>Watch work progress</td></tr>
|
|
466
|
+
<!-- execution -->
|
|
467
|
+
<tr><td rowspan="3"><b>execution</b></td><td><code>prlt execution list</code></td><td>List running agents</td></tr>
|
|
468
|
+
<tr><td><code>prlt execution logs <id></code></td><td>View agent output</td></tr>
|
|
469
|
+
<tr><td><code>prlt execution stop <id></code></td><td>Stop an agent</td></tr>
|
|
470
|
+
<!-- agent -->
|
|
471
|
+
<tr><td rowspan="11"><b>agent</b></td><td><code>prlt agent list</code></td><td>List all agents</td></tr>
|
|
472
|
+
<tr><td><code>prlt agent status <name></code></td><td>Check agent status</td></tr>
|
|
473
|
+
<tr><td><code>prlt agent shell <name></code></td><td>Shell into agent workspace</td></tr>
|
|
474
|
+
<tr><td><code>prlt agent visit <name></code></td><td>Navigate to workspace</td></tr>
|
|
475
|
+
<tr><td><code>prlt agent login <name></code></td><td>Auth Claude in container</td></tr>
|
|
476
|
+
<tr><td><code>prlt agent rebuild <name></code></td><td>Rebuild agent workspace</td></tr>
|
|
477
|
+
<tr><td><code>prlt agent restart <name></code></td><td>Restart agent</td></tr>
|
|
478
|
+
<tr><td><code>prlt agent staff add <names></code></td><td>Add named agents</td></tr>
|
|
479
|
+
<tr><td><code>prlt agent staff list</code></td><td>List staff agents</td></tr>
|
|
480
|
+
<tr><td><code>prlt agent temp list</code></td><td>List ephemeral agents</td></tr>
|
|
481
|
+
<tr><td><code>prlt agent temp cleanup</code></td><td>Remove ephemeral agents</td></tr>
|
|
482
|
+
<!-- agent themes -->
|
|
483
|
+
<tr><td rowspan="4"><b>agent themes</b></td><td><code>prlt agent themes list</code></td><td>List available themes</td></tr>
|
|
484
|
+
<tr><td><code>prlt agent themes set <name></code></td><td>Set active theme</td></tr>
|
|
485
|
+
<tr><td><code>prlt agent themes create <name></code></td><td>Create custom theme</td></tr>
|
|
486
|
+
<tr><td><code>prlt agent themes add-names</code></td><td>Add names to theme</td></tr>
|
|
487
|
+
<!-- board -->
|
|
488
|
+
<tr><td rowspan="2"><b>board</b></td><td><code>prlt board</code></td><td>View kanban board</td></tr>
|
|
489
|
+
<tr><td><code>prlt board watch</code></td><td>Real-time updates</td></tr>
|
|
490
|
+
<!-- project -->
|
|
491
|
+
<tr><td rowspan="6"><b>project</b></td><td><code>prlt project create</code></td><td>Create project</td></tr>
|
|
492
|
+
<tr><td><code>prlt project list</code></td><td>List projects</td></tr>
|
|
493
|
+
<tr><td><code>prlt project view <id></code></td><td>View project details</td></tr>
|
|
494
|
+
<tr><td><code>prlt project archive <id></code></td><td>Archive project</td></tr>
|
|
495
|
+
<tr><td><code>prlt project unarchive <id></code></td><td>Unarchive project</td></tr>
|
|
496
|
+
<tr><td><code>prlt project delete <id></code></td><td>Delete project</td></tr>
|
|
497
|
+
<!-- epic -->
|
|
498
|
+
<tr><td rowspan="10"><b>epic</b></td><td><code>prlt epic create</code></td><td>Create epic</td></tr>
|
|
499
|
+
<tr><td><code>prlt epic list</code></td><td>List epics</td></tr>
|
|
500
|
+
<tr><td><code>prlt epic view <id></code></td><td>View epic details</td></tr>
|
|
501
|
+
<tr><td><code>prlt epic ticket <id></code></td><td>Add tickets to epic</td></tr>
|
|
502
|
+
<tr><td><code>prlt epic progress <id></code></td><td>View epic progress</td></tr>
|
|
503
|
+
<tr><td><code>prlt epic move <id> <status></code></td><td>Move epic status</td></tr>
|
|
504
|
+
<tr><td><code>prlt epic archive <id></code></td><td>Archive epic</td></tr>
|
|
505
|
+
<tr><td><code>prlt epic activate <id></code></td><td>Activate epic</td></tr>
|
|
506
|
+
<tr><td><code>prlt epic reorder</code></td><td>Reorder epics</td></tr>
|
|
507
|
+
<tr><td><code>prlt epic link block <id></code></td><td>Link blocking epic</td></tr>
|
|
508
|
+
<!-- spec -->
|
|
509
|
+
<tr><td rowspan="6"><b>spec</b></td><td><code>prlt spec create</code></td><td>Create specification</td></tr>
|
|
510
|
+
<tr><td><code>prlt spec list</code></td><td>List specifications</td></tr>
|
|
511
|
+
<tr><td><code>prlt spec view <id></code></td><td>View specification</td></tr>
|
|
512
|
+
<tr><td><code>prlt spec plan <id></code></td><td>Generate plan from spec</td></tr>
|
|
513
|
+
<tr><td><code>prlt spec ticket <id></code></td><td>Create ticket from spec</td></tr>
|
|
514
|
+
<tr><td><code>prlt spec link relates <id></code></td><td>Link related spec</td></tr>
|
|
515
|
+
<!-- action -->
|
|
516
|
+
<tr><td rowspan="6"><b>action</b></td><td><code>prlt action create</code></td><td>Create action template</td></tr>
|
|
517
|
+
<tr><td><code>prlt action list</code></td><td>List actions</td></tr>
|
|
518
|
+
<tr><td><code>prlt action show <id></code></td><td>Show action details</td></tr>
|
|
519
|
+
<tr><td><code>prlt action run <id></code></td><td>Run action</td></tr>
|
|
520
|
+
<tr><td><code>prlt action update <id></code></td><td>Update action</td></tr>
|
|
521
|
+
<tr><td><code>prlt action delete <id></code></td><td>Delete action</td></tr>
|
|
522
|
+
<!-- branch -->
|
|
523
|
+
<tr><td rowspan="3"><b>branch</b></td><td><code>prlt branch create</code></td><td>Create branch</td></tr>
|
|
524
|
+
<tr><td><code>prlt branch list</code></td><td>List branches</td></tr>
|
|
525
|
+
<tr><td><code>prlt branch validate</code></td><td>Validate branch name</td></tr>
|
|
526
|
+
<!-- status -->
|
|
527
|
+
<tr><td rowspan="5"><b>status</b></td><td><code>prlt status list</code></td><td>List workflow statuses</td></tr>
|
|
528
|
+
<tr><td><code>prlt status create</code></td><td>Create custom status</td></tr>
|
|
529
|
+
<tr><td><code>prlt status update <id></code></td><td>Update status</td></tr>
|
|
530
|
+
<tr><td><code>prlt status move <id></code></td><td>Reorder status</td></tr>
|
|
531
|
+
<tr><td><code>prlt status delete <id></code></td><td>Delete status</td></tr>
|
|
532
|
+
<!-- workflow -->
|
|
533
|
+
<tr><td rowspan="5"><b>workflow</b></td><td><code>prlt workflow list</code></td><td>List workflows</td></tr>
|
|
534
|
+
<tr><td><code>prlt workflow create</code></td><td>Create workflow</td></tr>
|
|
535
|
+
<tr><td><code>prlt workflow view <id></code></td><td>View workflow</td></tr>
|
|
536
|
+
<tr><td><code>prlt workflow switch <id></code></td><td>Switch active workflow</td></tr>
|
|
537
|
+
<tr><td><code>prlt workflow delete <id></code></td><td>Delete workflow</td></tr>
|
|
538
|
+
<!-- phase -->
|
|
539
|
+
<tr><td rowspan="5"><b>phase</b></td><td><code>prlt phase list</code></td><td>List phases</td></tr>
|
|
540
|
+
<tr><td><code>prlt phase create</code></td><td>Create phase</td></tr>
|
|
541
|
+
<tr><td><code>prlt phase update <id></code></td><td>Update phase</td></tr>
|
|
542
|
+
<tr><td><code>prlt phase move <id></code></td><td>Reorder phase</td></tr>
|
|
543
|
+
<tr><td><code>prlt phase delete <id></code></td><td>Delete phase</td></tr>
|
|
544
|
+
<!-- template -->
|
|
545
|
+
<tr><td rowspan="5"><b>template</b></td><td><code>prlt template list</code></td><td>List templates</td></tr>
|
|
546
|
+
<tr><td><code>prlt template delete <id></code></td><td>Delete template</td></tr>
|
|
547
|
+
<tr><td><code>prlt template ticket list</code></td><td>List ticket templates</td></tr>
|
|
548
|
+
<tr><td><code>prlt template ticket apply</code></td><td>Apply ticket template</td></tr>
|
|
549
|
+
<tr><td><code>prlt template phase list</code></td><td>List phase templates</td></tr>
|
|
550
|
+
<!-- pr -->
|
|
551
|
+
<tr><td rowspan="3"><b>pr</b></td><td><code>prlt pr create</code></td><td>Create pull request</td></tr>
|
|
552
|
+
<tr><td><code>prlt pr status <id></code></td><td>Check PR status</td></tr>
|
|
553
|
+
<tr><td><code>prlt pr link <id> <url></code></td><td>Link PR to ticket</td></tr>
|
|
554
|
+
<!-- gh -->
|
|
555
|
+
<tr><td rowspan="3"><b>gh</b></td><td><code>prlt gh login</code></td><td>Login to GitHub</td></tr>
|
|
556
|
+
<tr><td><code>prlt gh status</code></td><td>Check auth status</td></tr>
|
|
557
|
+
<tr><td><code>prlt gh token</code></td><td>Get GitHub token</td></tr>
|
|
558
|
+
<!-- repo -->
|
|
559
|
+
<tr><td rowspan="4"><b>repo</b></td><td><code>prlt repo add <url></code></td><td>Add repository</td></tr>
|
|
560
|
+
<tr><td><code>prlt repo list</code></td><td>List repositories</td></tr>
|
|
561
|
+
<tr><td><code>prlt repo view <name></code></td><td>View repository details</td></tr>
|
|
562
|
+
<tr><td><code>prlt repo remove <name></code></td><td>Remove repository</td></tr>
|
|
563
|
+
<!-- docker -->
|
|
564
|
+
<tr><td rowspan="10"><b>docker</b></td><td><code>prlt docker list</code></td><td>List containers</td></tr>
|
|
565
|
+
<tr><td><code>prlt docker status</code></td><td>Check Docker status</td></tr>
|
|
566
|
+
<tr><td><code>prlt docker start <name></code></td><td>Start container</td></tr>
|
|
567
|
+
<tr><td><code>prlt docker stop <name></code></td><td>Stop container</td></tr>
|
|
568
|
+
<tr><td><code>prlt docker restart <name></code></td><td>Restart container</td></tr>
|
|
569
|
+
<tr><td><code>prlt docker logs <name></code></td><td>View container logs</td></tr>
|
|
570
|
+
<tr><td><code>prlt docker shell <name></code></td><td>Shell into container</td></tr>
|
|
571
|
+
<tr><td><code>prlt docker sync <name></code></td><td>Sync container files</td></tr>
|
|
572
|
+
<tr><td><code>prlt docker clean</code></td><td>Remove stopped containers</td></tr>
|
|
573
|
+
<tr><td><code>prlt docker prune</code></td><td>Remove unused resources</td></tr>
|
|
574
|
+
<!-- session -->
|
|
575
|
+
<tr><td rowspan="2"><b>session</b></td><td><code>prlt session list</code></td><td>List active tmux sessions</td></tr>
|
|
576
|
+
<tr><td><code>prlt session attach <name></code></td><td>Attach to tmux session</td></tr>
|
|
577
|
+
<!-- workspace -->
|
|
578
|
+
<tr><td rowspan="4"><b>workspace</b></td><td><code>prlt init</code></td><td>Initialize workspace</td></tr>
|
|
579
|
+
<tr><td><code>prlt workspace list</code></td><td>List workspaces</td></tr>
|
|
580
|
+
<tr><td><code>prlt workspace add</code></td><td>Add workspace</td></tr>
|
|
581
|
+
<tr><td><code>prlt workspace use <name></code></td><td>Switch workspace</td></tr>
|
|
582
|
+
<!-- utility -->
|
|
583
|
+
<tr><td rowspan="3"><b>utility</b></td><td><code>prlt whoami</code></td><td>Show current context</td></tr>
|
|
584
|
+
<tr><td><code>prlt commit</code></td><td>Conventional commit</td></tr>
|
|
585
|
+
<tr><td><code>prlt autocomplete setup</code></td><td>Setup shell autocomplete</td></tr>
|
|
586
|
+
</table>
|
|
587
|
+
|
|
588
|
+
</details>
|
|
589
|
+
|
|
590
|
+
Run `prlt <command> --help` for flags and options.
|
|
591
|
+
|
|
592
|
+
### Use Cases
|
|
593
|
+
|
|
594
|
+
#### Parallel Feature Development
|
|
305
595
|
|
|
306
|
-
### ❌ **Traditional Single Workspace**
|
|
307
596
|
```bash
|
|
308
|
-
#
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
#
|
|
597
|
+
# Create tickets for each feature
|
|
598
|
+
prlt ticket create --title "Add OAuth" --category feature
|
|
599
|
+
prlt ticket create --title "Add API rate limiting" --category feature
|
|
600
|
+
prlt ticket create --title "Add email notifications" --category feature
|
|
601
|
+
|
|
602
|
+
# Spawn all three in parallel (Docker for isolation)
|
|
603
|
+
prlt work spawn TKT-001 TKT-002 TKT-003 --mode docker
|
|
604
|
+
|
|
605
|
+
# Watch the board as they work
|
|
606
|
+
prlt board watch
|
|
314
607
|
```
|
|
315
608
|
|
|
316
|
-
|
|
609
|
+
Three agents, three branches, three PRs. You review and merge.
|
|
610
|
+
|
|
611
|
+
#### Bug Bash
|
|
612
|
+
|
|
317
613
|
```bash
|
|
318
|
-
#
|
|
319
|
-
prlt
|
|
614
|
+
# Spawn all bugs at once
|
|
615
|
+
prlt work spawn --all --column Backlog --category bug
|
|
616
|
+
|
|
617
|
+
# Or pick specific ones
|
|
618
|
+
prlt work spawn TKT-010 TKT-011 TKT-012
|
|
619
|
+
```
|
|
620
|
+
|
|
621
|
+
#### Grooming Session
|
|
320
622
|
|
|
321
|
-
|
|
322
|
-
prlt staff
|
|
323
|
-
# 💰 BEZOS: ✅ Cursor session 1 → ../your-repo-staff/bezos
|
|
324
|
-
# 💰 MUSK: ✅ Claude Code session → ../your-repo-staff/musk
|
|
325
|
-
# 💰 GATES: ✅ Your manual edits → ../your-repo-staff/gates
|
|
623
|
+
Have an agent refine ticket requirements:
|
|
326
624
|
|
|
327
|
-
|
|
625
|
+
```bash
|
|
626
|
+
prlt work start TKT-042 --action groom
|
|
328
627
|
```
|
|
329
628
|
|
|
330
|
-
|
|
629
|
+
Agent adds acceptance criteria, subtasks, estimates.
|
|
331
630
|
|
|
332
631
|
---
|
|
333
632
|
|
|
633
|
+
## Environment Variables
|
|
634
|
+
|
|
635
|
+
| Variable | Purpose |
|
|
636
|
+
| ------------------- | ----------------------------- |
|
|
637
|
+
| `GITHUB_TOKEN` | GitHub operations (PRs, etc.) |
|
|
334
638
|
|
|
335
|
-
|
|
639
|
+
Claude Code handles its own authentication via `claude login`.
|
|
336
640
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
- **
|
|
342
|
-
- **
|
|
641
|
+
---
|
|
642
|
+
|
|
643
|
+
## Requirements
|
|
644
|
+
|
|
645
|
+
- **Node.js 18+**
|
|
646
|
+
- **Git**
|
|
647
|
+
- **Claude Code** (`claude login` to authenticate)
|
|
648
|
+
- **SQLite**
|
|
649
|
+
- **Tmux** (session persistence)
|
|
650
|
+
- **Docker** (optional—for isolated execution)
|
|
343
651
|
|
|
344
652
|
---
|
|
345
653
|
|
|
346
|
-
##
|
|
654
|
+
## Support
|
|
347
655
|
|
|
348
|
-
|
|
656
|
+
- **Discord**: [discord.gg/tmZyjNNSvw](https://discord.gg/tmZyjNNSvw)
|
|
657
|
+
- **GitHub Issues**: [Report bugs or request features](https://github.com/chrismcdermut/proletariat-cli/issues)
|
|
658
|
+
- **LinkedIn**: [Christopher McDermut](https://www.linkedin.com/in/christopher-mcdermut/)
|
|
349
659
|
|
|
350
660
|
---
|
|
351
661
|
|
|
352
|
-
|
|
662
|
+
## License
|
|
353
663
|
|
|
354
|
-
|
|
664
|
+
Apache 2.0
|
|
355
665
|
|
|
356
|
-
|
|
666
|
+
---
|
|
357
667
|
|
|
358
668
|
[](https://www.npmjs.com/package/@proletariat/cli)
|
|
359
|
-
[](https://npmjs.
|
|
360
|
-
[](https://www.npmjs.com/package/@proletariat/cli)
|
|
670
|
+
[](LICENSE)
|
|
361
671
|
|
|
362
|
-
|
|
672
|
+
[Star on GitHub](https://github.com/chrismcdermut/proletariat) | [Install from NPM](https://www.npmjs.com/package/@proletariat/cli) | [Report Issues](https://github.com/chrismcdermut/proletariat/issues)
|
|
363
673
|
|
|
364
|
-
|
|
674
|
+
Made with ⚒️ by the proletariat.
|