mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-17 02:37:33 +00:00
Summary: - Adds a plugin-owned CLI backend argument rewrite hook and wires Anthropic `claude-cli` to translate non-off `/think` levels into Claude Code `--effort`, with docs, changelog, API baseline, and tests. - Reproducibility: yes. Current main has a high-confidence source reproduction: choose `claude-cli`, set a non ... builds argv from backend args that contain no `--effort` even though `thinkLevel` exists on the run params. Automerge notes: - No ClawSweeper repair was needed after automerge opt-in. Validation: - ClawSweeper review passed for headbe17754009. - Required merge gates passed before the squash merge. Prepared head SHA:be17754009Review: https://github.com/openclaw/openclaw/pull/77410#issuecomment-4372812685 Co-authored-by: stainlu <stainlu@newtype-ai.org>
17 lines
502 B
TypeScript
17 lines
502 B
TypeScript
export type { CliBackendConfig } from "../config/types.js";
|
|
export type {
|
|
CliBackendAuthEpochMode,
|
|
CliBackendNormalizeConfigContext,
|
|
CliBackendNativeToolMode,
|
|
CliBackendPlugin,
|
|
CliBackendPreparedExecution,
|
|
CliBackendPrepareExecutionContext,
|
|
CliBackendResolveExecutionArgs,
|
|
CliBackendResolveExecutionArgsContext,
|
|
CliBackendThinkingLevel,
|
|
} from "../plugins/types.js";
|
|
export {
|
|
CLI_FRESH_WATCHDOG_DEFAULTS,
|
|
CLI_RESUME_WATCHDOG_DEFAULTS,
|
|
} from "../agents/cli-watchdog-defaults.js";
|