@proletariat/cli 0.3.27 → 0.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/dev.js +7 -0
- package/bin/run.js +7 -0
- package/dist/commands/agent/shell.js +24 -10
- package/dist/commands/claude.js +12 -40
- package/dist/commands/work/spawn.js +6 -21
- package/dist/commands/work/start.js +6 -21
- package/dist/commands/work/watch.js +57 -33
- package/dist/lib/execution/devcontainer.js +25 -3
- package/dist/lib/pmo/types.d.ts +1 -1
- package/dist/lib/pmo/types.js +1 -0
- package/oclif.manifest.json +2820 -2819
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proletariat/cli",
|
|
3
3
|
"description": "Agent orchestration platform for AI labor - Spin up workers on demand for multi-agent development",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.28",
|
|
5
5
|
"author": "Chris McDermut",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"test:e2e:pmo": "mocha --forbid-only \"test/e2e/pmo-*.test.ts\"",
|
|
127
127
|
"test:commands": "mocha --forbid-only \"test/commands/**/*.test.ts\"",
|
|
128
128
|
"version": "oclif readme && git add README.md",
|
|
129
|
-
"publish:npm": "pnpm build && pnpm publish --access public --no-git-checks && git tag v$(node -p \"require('./package.json').version\") && git push origin v$(node -p \"require('./package.json').version\")",
|
|
129
|
+
"publish:npm": "pnpm build && pnpm publish --access public --no-git-checks && git tag v$(node -p \"require('./package.json').version\") && git push origin v$(node -p \"require('./package.json').version\") && gh release create v$(node -p \"require('./package.json').version\") --generate-notes --title \"v$(node -p \"require('./package.json').version\")\"",
|
|
130
130
|
"roadmap:generate": "node ./bin/run.js roadmap generate --all"
|
|
131
131
|
}
|
|
132
132
|
}
|