@promptbook/node 0.112.0-131 → 0.112.0-133

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.
@@ -1,15 +1,17 @@
1
1
  import type { PromptRunOptions } from '../types/PromptRunOptions';
2
2
  import type { PromptRunResult } from '../types/PromptRunResult';
3
3
  import type { PromptRunner } from '../types/PromptRunner';
4
+ import type { ClaudeCodeRunnerOptions } from './ClaudeCodeRunnerOptions';
4
5
  /**
5
6
  * Runs prompts via the Claude Code CLI.
6
7
  */
7
8
  export declare class ClaudeCodeRunner implements PromptRunner {
9
+ private readonly options;
8
10
  readonly name = "claude-code";
9
11
  /**
10
12
  * Creates a new Claude Code runner.
11
13
  */
12
- constructor();
14
+ constructor(options?: ClaudeCodeRunnerOptions);
13
15
  /**
14
16
  * Runs the prompt using Claude Code and parses usage output.
15
17
  */
@@ -9,7 +9,7 @@ export declare const CLI_AGENT_HARNESS_NAMES: readonly ["openai-codex", "github-
9
9
  *
10
10
  * @public exported from `@promptbook/node`
11
11
  */
12
- export declare const CLI_AGENT_THINKING_LEVEL_VALUES: readonly ["low", "medium", "high", "xhigh"];
12
+ export declare const CLI_AGENT_THINKING_LEVEL_VALUES: readonly ["low", "medium", "high", "xhigh", "max"];
13
13
  /**
14
14
  * Environment variable used as the default runner identifier when `--harness` is omitted or not set in `CliAgent`.
15
15
  *
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * @private internal shared utility of `ptbk coder run`
5
5
  */
6
- export declare const THINKING_LEVEL_VALUES: readonly ["low", "medium", "high", "xhigh"];
6
+ export declare const THINKING_LEVEL_VALUES: readonly ["low", "medium", "high", "xhigh", "max"];
7
7
  /**
8
8
  * Supported reasoning effort values for coding-agent runners with configurable thinking levels.
9
9
  *
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.112.0-128`).
18
+ * It follows semantic versioning (e.g., `0.112.0-132`).
19
19
  *
20
20
  * @generated
21
21
  */