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.

19 lines 1.97 kB
export { DRIVERS, DRIVER_LABELS, isDriverName, driverFromImpl, type DriverName } from './driver-names.js'; export { formatFrameworkEvent } from './terminal.js'; export { formatBytes } from './format-bytes.js'; export { errorMessage } from './error-message.js'; export { pickedIds } from './events.js'; export { sessionInfo, agentProgress, agentErrors, handoffState, type SessionInfo, type AgentProgress, type AgentError, type HandoffState, } from './agent-view.js'; export { systemPromptBlock, composeAgentSystem, renderSystemPrompt, SYSTEM_PROMPT_TEMPLATE, type SystemPromptOptions, type AgentSystemOptions, type TfContext, type RenderedSystemPrompt, } from './system-prompt.js'; export { defaultWhat, DEFAULT_WHAT, type PresetRenderContext } from './preset-prompt.js'; export { presets, LAUNCHER_PRESETS, type PresetKey } from './preset-catalog.js'; export { AUTO_PM_ROUTINES, AUTO_PM_JOBS, AUTO_PM_DRAIN_JOB, AUTO_PM_MAINTENANCE_JOB, type AutoPmJob } from './auto-pm.js'; export { interventionKey, activityKey } from './dashboard/keys.js'; export { SeenTracker } from './dashboard/keyed-watcher.js'; export type { ProjectionRead } from './dashboard/projects.js'; export { NOTIFICATION_DEFAULTS, MAX_SPEND_OFFSET, DEFAULT_SPEND_OFFSET, DEFAULT_AUTO_PM_CONCURRENCY, MAX_AUTO_PM_CONCURRENCY, notifies, notifyMethodEnabled, notifyCategoryEnabled, type NotifyMethod, type NotifyCategory } from './preference-defaults.js'; export { agentOptionsFromPreferences, handoffFromPreferences, preferencesFromFileConfig } from './agent-options.js'; export { DEFAULT_HANDOFF, HANDOFF_LEVELS, handoffFromStages, handoffReaches, handoffStages, isHandoffLevel, type HandoffLevel, } from './handoff-level.js'; export { credentialEnvVar, validateCredential, type CredentialSource, type DiscordCredentials, type DiscordCredentialStatus, type DiscordCredentialsPatch, } from './discord-credentials.js'; export { isLoopbackHost } from './loopback-host.js'; //# sourceMappingURL=client.d.ts.map