UNPKG

framework

Version:

The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.

10 lines 1.17 kB
export type { Driver, DriverSession, DriverStartOptions, DriverPromptOptions, DriverTurn, DriverEvent, DriverUsage, DriverRateLimit, DriverQuota, DriverQuotaWindow, DriverQuotaUnavailableReason, } from './types.js'; export { isTransientQuotaReason } from './types.js'; export { readClaudeQuota, parseQuotaReadout, type ReadClaudeQuotaOptions } from './claude-code-quota.js'; export { FakeDriver, FakeDriverSession, type FakeTurn, type FakeDriverOptions } from './fake.js'; export { CodexDriver, CodexSession, CodexJsonParser, type CodexDriverOptions, type CodexSandbox } from './codex.js'; export { ClaudeCodeDriver, ClaudeCodeSession, StreamJsonParser, runClaude, type ClaudeCodeDriverOptions, type McpServerSpec, type PermissionMode, } from './claude-code.js'; export { ActionsDriver, ActionsSession, replayTranscript, type ActionsDriverOptions, type FetchLike } from './actions.js'; export { CloudDriver, CloudSession, type CloudDriverOptions, type RunPty, type AgentPtyOptions } from './cloud.js'; export { runCliSession, type AgentCliParser, type RunCliSessionOptions, type SpawnLike, type SpawnedProcess, } from './cli-session.js'; //# sourceMappingURL=index.d.ts.map