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.

14 lines 1 kB
export { isTransientQuotaReason } from './types.js'; export { readClaudeQuota, parseQuotaReadout } from './claude-code-quota.js'; export { FakeDriver, FakeDriverSession } from './fake.js'; export { CodexDriver, CodexSession, CodexJsonParser } from './codex.js'; export { ClaudeCodeDriver, ClaudeCodeSession, StreamJsonParser, runClaude, } from './claude-code.js'; export { ActionsDriver, ActionsSession, replayTranscript } from './actions.js'; export { CloudDriver, CloudSession } from './cloud.js'; // `readZip`/`ZipEntry` are deliberately absent (#947): the Actions driver's internal zip reader // rode this barrel onto the published surface via `src/index.ts`'s `export *`, with no importer // outside the driver and its own test — both of which take the module by path. An accidental // export is a one-way door once released, and this package has never been published, so the // removal costs nobody anything. export { runCliSession, } from './cli-session.js'; //# sourceMappingURL=index.js.map