aislop 0.3.2 → 0.4.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.
@@ -3,7 +3,7 @@
3
3
  * Application version — injected at build time by tsdown from package.json.
4
4
  * The fallback should always match the "version" field in package.json.
5
5
  */
6
- const APP_VERSION = "0.3.2";
6
+ const APP_VERSION = "0.4.0";
7
7
 
8
8
  //#endregion
9
9
  //#region src/output/engine-info.ts
package/dist/index.d.ts CHANGED
@@ -51,6 +51,10 @@ declare const loadConfig: (directory: string) => AislopConfig;
51
51
  interface FixOptions {
52
52
  verbose: boolean;
53
53
  force?: boolean;
54
+ /** Agent CLI to launch with remaining issues (e.g. "claude", "codex") */
55
+ agent?: string;
56
+ /** Print the prompt to stdout instead of launching an agent */
57
+ prompt?: boolean;
54
58
  showHeader?: boolean;
55
59
  }
56
60
  declare const fixCommand: (directory: string, config: AislopConfig, options?: FixOptions) => Promise<void>;