@delegance/claude-autopilot 1.0.1 → 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 +6 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/cli/preflight.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## [1.0.1] — 2026-04-21
|
|
4
10
|
|
|
5
11
|
### Fixed
|
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
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
|