/** * roblox-ai-os-creator-skills - Multi-agent orchestration for OpenAI Codex CLI * * This package provides: * - 30+ specialized agent prompts as Codex CLI slash commands * - 35+ workflow skills as SKILL.md files * - AGENTS.md orchestration brain * - MCP servers for state management, project memory, and notepad * - CLI tool (rcs) for setup, diagnostics, and management * - Notification hooks for workflow tracking */ export { setup } from './cli/setup.js'; export { doctor } from './cli/doctor.js'; export { version } from './cli/version.js'; export { mergeConfig } from './config/generator.js'; export { AGENT_DEFINITIONS, getAgent, getAgentsByCategory, getAgentsByPosture, getAgentsByRoutingRole, getAgentNames, listAgents, type AgentDefinition, } from './agents/definitions.js'; export { generateAgentToml, installNativeAgentConfigs } from './agents/native-config.js'; export { readPlatformTargetManifest } from './platform-targets/reader.js'; export type { PlatformTargetEntry, PlatformTargetId, PlatformTargetLane, PlatformTargetManifest, PlatformTargetStatus, RuntimeOwnership, } from './platform-targets/schema.js'; export { hudCommand } from './hud/index.js'; //# sourceMappingURL=index.d.ts.map