@delegance/claude-autopilot 1.0.0-rc.1 → 1.0.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +16 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.1] — 2026-04-21
4
+
5
+ ### Fixed
6
+ - 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
7
+
8
+ ## [1.0.0] — 2026-04-21
9
+
10
+ ### Changed
11
+ - Promoted from 1.0.0-rc.1 — no new changes, stable release
12
+
3
13
  ## [1.0.0-rc.1] — 2026-04-21
4
14
 
5
15
  ### Added
package/package.json CHANGED
@@ -1,9 +1,16 @@
1
1
  {
2
2
  "name": "@delegance/claude-autopilot",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
- "description": "Claude Code automation pipeline: spec plan implement validate PR",
6
- "keywords": ["claude", "autopilot", "ai", "pipeline", "code-review", "cli"],
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
- "devDependencies": {
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
  }