@delegance/claude-autopilot 1.0.0-alpha.8 → 1.0.0

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.0] — 2026-04-21
4
+
5
+ ### Changed
6
+ - Promoted from 1.0.0-rc.1 — no new changes, stable release
7
+
8
+ ## [1.0.0-rc.1] — 2026-04-21
9
+
10
+ ### Added
11
+ - `autopilot init` now shows full next-steps: hook install, autoregress generate, CI snippet, first run
12
+ - Public API surface: `Finding`, `RunResult`, `AutopilotConfig`, `normalizeSnapshot` exported from package root via `exports` field in package.json
13
+
14
+ ### Changed
15
+ - Version promoted from 1.0.0-alpha.8 → 1.0.0-rc.1
16
+
3
17
  ## 1.0.0-alpha.8
4
18
 
5
19
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delegance/claude-autopilot",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "description": "Claude Code automation pipeline: spec → plan → implement → validate → PR",
6
6
  "keywords": ["claude", "autopilot", "ai", "pipeline", "code-review", "cli"],
@@ -15,6 +15,12 @@
15
15
  "bin": {
16
16
  "autopilot": "bin/autopilot.js"
17
17
  },
18
+ "types": "./src/index.ts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./src/index.ts"
22
+ }
23
+ },
18
24
  "files": [
19
25
  "bin/",
20
26
  "src/",
package/src/cli/init.ts CHANGED
@@ -66,8 +66,15 @@ export async function runInit(cwd: string = process.cwd()): Promise<void> {
66
66
  console.log(`\n\x1b[32m✓\x1b[0m Created autopilot.config.yaml from preset \x1b[1m${presetName}\x1b[0m`);
67
67
  console.log('\nNext steps:');
68
68
  console.log(' 1. Review autopilot.config.yaml and adjust testCommand / protectedPaths');
69
- console.log(' 2. Set OPENAI_API_KEY in your .env file for Codex review');
70
- console.log(' 3. Run: npx autopilot run\n');
69
+ console.log(' 2. Set OPENAI_API_KEY in your environment (for Codex review)');
70
+ console.log(' 3. Run your first pipeline to verify the setup:');
71
+ console.log(' npx autopilot run');
72
+ console.log(' 4. Generate snapshot baselines after your first feature lands:');
73
+ console.log(' npx autopilot autoregress generate');
74
+ console.log(' 5. Install the pre-push git hook (enforces snapshots on push):');
75
+ console.log(' npx autopilot hook install');
76
+ console.log(' 6. (Optional) Add CI with GitHub Actions:');
77
+ console.log(' uses: axledbetter/claude-autopilot/.github/actions/ci@main\n');
71
78
  }
72
79
 
73
80
  function presetSearchPaths(name: string): string[] {
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ export type { Finding, Severity, FindingSource } from './core/findings/types.js';
2
+ export type { RunResult, RunInput, PhaseResult } from './core/pipeline/run.js';
3
+ export type { AutopilotConfig, AdapterRef, AdapterReference } from './core/config/types.js';
4
+ export { normalizeSnapshot } from './snapshots/serializer.js';