Expand description
Universal operator prompt — provider-agnostic orchestration philosophy.
This is the core layer that works with any LLM. It defines what the operator does (plan, delegate, monitor, synthesize) without prescribing how to format tool calls — that is handled by provider-specific layers.
§Compact-first design (OpenClaw pattern)
The prompt is split into two tiers:
OPERATOR_CORE_PROMPT— compact reference (~600 tokens) injected every turnOPERATOR_FULL_REFERENCE— detailed manual (~2,500 tokens) loaded on-demand viaload_skillwhen the agent needs deep orchestration guidance.
Constants§
- OPERATOR_
CORE_ PROMPT - Compact operator instructions injected every turn (~600 tokens).
- OPERATOR_
FULL_ REFERENCE - Detailed operator reference loaded on-demand (~2,500 tokens).