@delegance/claude-autopilot 1.0.0 → 1.0.2
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 +2 -2
- package/package.json +16 -7
- package/src/cli/preflight.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.2] — 2026-04-21
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- README: install command updated (`--save-dev` removed, `@alpha` tag removed); hard prerequisites documented
|
|
7
|
+
- preflight: tsx missing message no longer suggests `--save-dev` (tsx is now a runtime dependency)
|
|
8
|
+
|
|
9
|
+
## [1.0.1] — 2026-04-21
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Move `tsx`, `js-yaml`, `ajv`, `dotenv`, `minimatch`, `openai` from `devDependencies` to `dependencies` — CLI was broken for end-users who installed via npm since devDeps aren't installed by consumers
|
|
13
|
+
|
|
3
14
|
## [1.0.0] — 2026-04-21
|
|
4
15
|
|
|
5
16
|
### Changed
|
package/README.md
CHANGED
|
@@ -5,10 +5,10 @@ Automated code review pipeline for Claude Code. Runs static rules, an optional L
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install
|
|
8
|
+
npm install @delegance/claude-autopilot
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
Requires Node 22+.
|
|
11
|
+
Requires Node 22+. Also requires `gh` CLI authenticated and `claude` CLI installed (Claude Code).
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delegance/claude-autopilot",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Claude Code automation pipeline: spec
|
|
6
|
-
"keywords": [
|
|
5
|
+
"description": "Claude Code automation pipeline: spec \u2192 plan \u2192 implement \u2192 validate \u2192 PR",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"claude",
|
|
8
|
+
"autopilot",
|
|
9
|
+
"ai",
|
|
10
|
+
"pipeline",
|
|
11
|
+
"code-review",
|
|
12
|
+
"cli"
|
|
13
|
+
],
|
|
7
14
|
"license": "MIT",
|
|
8
15
|
"repository": {
|
|
9
16
|
"type": "git",
|
|
@@ -36,15 +43,17 @@
|
|
|
36
43
|
"build": "tsc",
|
|
37
44
|
"autoregress": "tsx scripts/autoregress.ts"
|
|
38
45
|
},
|
|
39
|
-
"
|
|
40
|
-
"@types/js-yaml": "^4",
|
|
41
|
-
"@types/node": "^22",
|
|
46
|
+
"dependencies": {
|
|
42
47
|
"ajv": "^8",
|
|
43
48
|
"dotenv": ">=16",
|
|
44
49
|
"js-yaml": "^4",
|
|
45
50
|
"minimatch": ">=9",
|
|
46
51
|
"openai": ">=4",
|
|
47
|
-
"tsx": ">=4"
|
|
52
|
+
"tsx": ">=4"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/js-yaml": "^4",
|
|
56
|
+
"@types/node": "^22",
|
|
48
57
|
"typescript": "^5"
|
|
49
58
|
}
|
|
50
59
|
}
|
package/src/cli/preflight.ts
CHANGED
|
@@ -49,7 +49,7 @@ const tsxVersion = fs.existsSync(localTsx)
|
|
|
49
49
|
checks.push({
|
|
50
50
|
name: 'tsx available',
|
|
51
51
|
result: tsxVersion ? 'pass' : 'fail',
|
|
52
|
-
message: !tsxVersion ? 'tsx not found — run: npm install
|
|
52
|
+
message: !tsxVersion ? 'tsx not found — run: npm install @delegance/claude-autopilot (includes tsx)' : undefined,
|
|
53
53
|
});
|
|
54
54
|
|
|
55
55
|
// 3. gh CLI authenticated
|