@proletariat/cli 0.3.8 → 0.3.9
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/LICENSE +21 -0
- package/bin/dev.js +0 -0
- package/dist/commands/branch/where.d.ts +21 -0
- package/dist/commands/branch/where.js +213 -0
- package/dist/commands/pmo/init.js +23 -5
- package/dist/commands/project/create.js +9 -10
- package/dist/commands/whoami.d.ts +1 -0
- package/dist/commands/whoami.js +36 -6
- package/dist/commands/work/start.js +11 -0
- package/dist/lib/database/index.d.ts +6 -0
- package/dist/lib/database/index.js +38 -0
- package/dist/lib/execution/devcontainer.js +3 -0
- package/dist/lib/execution/runners.js +3 -2
- package/dist/lib/execution/spawner.d.ts +3 -1
- package/dist/lib/execution/spawner.js +9 -2
- package/dist/lib/execution/storage.d.ts +14 -0
- package/dist/lib/execution/storage.js +88 -0
- package/dist/lib/pmo/index.d.ts +7 -21
- package/dist/lib/pmo/index.js +22 -101
- package/dist/lib/pmo/storage/base.d.ts +2 -2
- package/dist/lib/pmo/storage/base.js +14 -89
- package/dist/lib/pmo/templates-builtin.d.ts +66 -0
- package/dist/lib/pmo/templates-builtin.js +192 -0
- package/dist/lib/themes.js +4 -4
- package/oclif.manifest.json +3378 -3331
- package/package.json +4 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proletariat/cli",
|
|
3
3
|
"description": "Proletariat CLI v2 - Multi-agent development orchestration",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.9",
|
|
5
5
|
"author": "Chris McDermut",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"type": "git",
|
|
97
97
|
"url": "https://github.com/chrismcdermut/proletariat-cli.git"
|
|
98
98
|
},
|
|
99
|
+
"types": "dist/index.d.ts",
|
|
99
100
|
"scripts": {
|
|
100
101
|
"postinstall": "npm rebuild better-sqlite3 2>/dev/null || true",
|
|
101
102
|
"build": "shx rm -rf dist && tsc -b",
|
|
@@ -105,15 +106,12 @@
|
|
|
105
106
|
"lint:all": "eslint && tsc --noEmit",
|
|
106
107
|
"lint:fix": "eslint --fix",
|
|
107
108
|
"typecheck": "tsc --noEmit",
|
|
108
|
-
"postpack": "shx rm -f oclif.manifest.json",
|
|
109
109
|
"posttest": "pnpm run lint",
|
|
110
|
-
"prepack": "oclif manifest && oclif readme",
|
|
111
110
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
112
111
|
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
|
|
113
112
|
"test:e2e": "mocha --forbid-only \"test/e2e/**/*.test.ts\"",
|
|
114
113
|
"test:e2e:pmo": "mocha --forbid-only \"test/e2e/pmo-*.test.ts\"",
|
|
115
114
|
"test:commands": "mocha --forbid-only \"test/commands/**/*.test.ts\"",
|
|
116
115
|
"version": "oclif readme && git add README.md"
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
}
|
|
116
|
+
}
|
|
117
|
+
}
|