@launch11/srgical 0.0.4 → 0.0.6
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/CHANGELOG.md +11 -0
- package/README.md +28 -7
- package/dist/commands/about.js +32 -0
- package/dist/commands/changelog.js +29 -0
- package/dist/commands/doctor.js +60 -13
- package/dist/commands/init.js +10 -6
- package/dist/commands/run-next.js +41 -8
- package/dist/commands/studio.js +2 -2
- package/dist/commands/version.js +25 -0
- package/dist/core/agent.js +19 -19
- package/dist/core/augment.js +7 -7
- package/dist/core/auto-run-state.js +89 -0
- package/dist/core/auto-run.js +270 -0
- package/dist/core/claude.js +7 -7
- package/dist/core/codex.js +7 -7
- package/dist/core/execution-state.js +5 -5
- package/dist/core/local-pack.js +9 -6
- package/dist/core/package-info.js +61 -0
- package/dist/core/planning-epochs.js +10 -3
- package/dist/core/planning-pack-state.js +121 -9
- package/dist/core/planning-state.js +61 -0
- package/dist/core/prompts.js +4 -4
- package/dist/core/studio-session.js +14 -14
- package/dist/core/templates.js +13 -10
- package/dist/core/workspace.js +127 -8
- package/dist/index.js +48 -17
- package/dist/postinstall.js +37 -0
- package/dist/ui/studio.js +329 -193
- package/package.json +4 -1
- package/postinstall.js +14 -0
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launch11/srgical",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "A polished local-first CLI for planning and executing long AI-driven delivery sequences.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"README.md",
|
|
8
|
+
"CHANGELOG.md",
|
|
9
|
+
"postinstall.js",
|
|
8
10
|
"docs",
|
|
9
11
|
"LICENSE"
|
|
10
12
|
],
|
|
@@ -15,6 +17,7 @@
|
|
|
15
17
|
"build": "tsc -p tsconfig.json",
|
|
16
18
|
"dev": "tsx src/index.ts",
|
|
17
19
|
"start": "node dist/index.js",
|
|
20
|
+
"postinstall": "node postinstall.js",
|
|
18
21
|
"doctor": "tsx src/index.ts doctor",
|
|
19
22
|
"test": "tsx --test test/**/*.test.ts",
|
|
20
23
|
"test:coverage": "tsx --test --experimental-test-coverage test/**/*.test.ts"
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const fs = require("node:fs");
|
|
4
|
+
const path = require("node:path");
|
|
5
|
+
|
|
6
|
+
const compiledEntry = path.join(__dirname, "dist", "postinstall.js");
|
|
7
|
+
|
|
8
|
+
if (fs.existsSync(compiledEntry)) {
|
|
9
|
+
const postinstall = require(compiledEntry);
|
|
10
|
+
|
|
11
|
+
if (postinstall && typeof postinstall.runPostinstall === "function") {
|
|
12
|
+
postinstall.runPostinstall();
|
|
13
|
+
}
|
|
14
|
+
}
|