@autopilot-harness/cli 0.2.1 → 0.2.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.
@@ -5126,6 +5126,7 @@ var DEFAULT_AUTOPILOT_IGNORE_TEXT = `# Autopilot \u2014 paths that do NOT trigge
5126
5126
  # Runtime / editor (prefer also listing these in .gitignore)
5127
5127
  .autopilot/**
5128
5128
  .cursor/**
5129
+ .claude/**
5129
5130
 
5130
5131
  # Planning artifacts
5131
5132
  plans/**
@@ -5126,6 +5126,7 @@ var DEFAULT_AUTOPILOT_IGNORE_TEXT = `# Autopilot \u2014 paths that do NOT trigge
5126
5126
  # Runtime / editor (prefer also listing these in .gitignore)
5127
5127
  .autopilot/**
5128
5128
  .cursor/**
5129
+ .claude/**
5129
5130
 
5130
5131
  # Planning artifacts
5131
5132
  plans/**
@@ -69,7 +69,7 @@ export interface HooksFile {
69
69
  [event: string]: HookCommand[] | undefined;
70
70
  };
71
71
  }
72
- export declare const PACKAGE_VERSION = "0.2.1";
72
+ export declare const PACKAGE_VERSION = "0.2.2";
73
73
  export declare const HOOK_MARKER = "autopilot-harness";
74
74
  export declare const AUTOPILOT_EVENTS: readonly ["beforeSubmitPrompt", "afterFileEdit", "stop"];
75
75
  //# sourceMappingURL=types.d.ts.map
@@ -1,5 +1,5 @@
1
1
  /** Shared types for Autopilot init. */
2
- export const PACKAGE_VERSION = "0.2.1";
2
+ export const PACKAGE_VERSION = "0.2.2";
3
3
  export const HOOK_MARKER = "autopilot-harness";
4
4
  export const AUTOPILOT_EVENTS = [
5
5
  "beforeSubmitPrompt",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autopilot-harness/cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Autopilot harness CLI (bin: autopilot-harness)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,10 +32,10 @@
32
32
  "@clack/prompts": "^0.10.0",
33
33
  "commander": "^13.1.0",
34
34
  "yaml": "^2.7.0",
35
- "@autopilot-harness/core": "0.2.1",
36
- "@autopilot-harness/port-cursor": "0.2.1",
37
- "@autopilot-harness/port-claude-code": "0.2.1",
38
- "@autopilot-harness/i18n": "0.2.1"
35
+ "@autopilot-harness/core": "0.2.2",
36
+ "@autopilot-harness/port-cursor": "0.2.2",
37
+ "@autopilot-harness/port-claude-code": "0.2.2",
38
+ "@autopilot-harness/i18n": "0.2.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "esbuild": "^0.25.12",