import { createClaudeCode } from './claude-code-harness'; /** * Default `claude-code` harness instance with no overrides — suitable for the * common case where the underlying `claude` CLI's defaults are fine. * Equivalent to `createClaudeCode()`. */ export const claudeCode = createClaudeCode(); export { createClaudeCode } from './claude-code-harness'; export { VERSION } from './version'; export type { ClaudeCodeHarnessSettings } from './claude-code-harness'; export type { ClaudeCodeAuthenticationMode, ClaudeCodeAuthOptions, } from './claude-code-auth'; export type { ClaudeCodeThinkingConfig } from './claude-code-thinking';