Architecture Overview
Layer model
Section titled “Layer model”ClawOS separates the system into four practical layers:
- Channel layer — Web and Telegram surfaces
- Agent layer — orchestration and session-aware routing
- Skills layer — workflow engines such as CareerClaw
- Platform layer — auth, billing, telemetry, and shared guarantees
Why this structure exists
Section titled “Why this structure exists”This separation keeps the skill logic focused while preventing identity, billing, and channel behavior from leaking into every workflow implementation.
Request shape
Section titled “Request shape”A typical request passes through this chain:
- user sends a message through a channel
- platform resolves identity and session context
- agent layer determines the next action
- skill engine executes and returns structured output
- platform saves state and returns the result through the active channel