Architecture decision guides for Kailash SDK including framework selection (Core SDK vs DataFlow vs Nexus vs Kaizen), runtime selection (Async vs Sync), database selection (PostgreSQL vs SQLite), node selection, and test tier selection. Use when asking about 'which framework', 'choose framework', 'which runtime', 'which database', 'which node', 'architecture decision', 'when to use', 'Core SDK vs DataFlow', 'PostgreSQL vs SQLite', 'AsyncLocalRuntime vs LocalRuntime', or 'test tier selection'.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Architecture decision guides for Kailash SDK including framework selection (Core SDK vs DataFlow vs Nexus vs Kaizen), runtime selection (Async vs Sync), database selection (PostgreSQL vs SQLite), node selection, and test tier selection. Use when asking about 'which framework', 'choose framework', 'which runtime', 'which database', 'which node', 'architecture decision', 'when to use', 'Core SDK vs DataFlow', 'PostgreSQL vs SQLite', 'AsyncLocalRuntime vs LocalRuntime', or 'test tier selection'.
Kailash Architecture Decisions
Decision guides for selecting the right frameworks, runtimes, databases, nodes, and testing strategies.
Unit (fast), Integration (real infra), E2E (full system)
Framework Selection Matrix
Need
Framework
Why
Custom workflows
Core SDK
Full control, 140+ nodes
Database CRUD
DataFlow
Auto-generated nodes
Multi-channel API
Nexus
API + CLI + MCP instantly
AI agents
Kaizen
Signature-based agents
All of above
Combine them
They work together
Runtime Selection Flow
Deploying to Docker/async/Kubernetes?
YES -> AsyncLocalRuntime (async-first, no threads)
NO -> CLI/script?
YES -> LocalRuntime (sync execution)
NO -> Use get_runtime() for auto-detection
Database Selection Flow
Production deployment? -> PostgreSQL (scalable, enterprise)
Development/testing? -> SQLite (simple, fast setup)
High concurrency? -> PostgreSQL (better concurrency)