Coordination and memory.
Added
- Coordinator role: an agent with
role: coordinatordecomposes a goal into subtasks, assigns each to a worker by a capability and budget auction, runs them in parallel, and synthesizes the result. Symbolic HTN planning when methods are provided, otherwise LLM decomposition. Resumable from the last checkpointed subtask. - Agent-editable core memory (the MemGPT model): small blocks the
agent curates as it works, rendered into its context every turn.
Agent-driven recall (
recall_search,recall_timeframe) and a background sleep-time pass that promotes durable facts up into the core blocks. - Automatic context compaction: long conversations summarize toward the model window instead of being snipped, so early context survives.
- OpenAI-compatible servers: point the
openaiprovider at LM Studio, MLX, or vLLM viabase_url, with the agent's model sent per request. Stdio MCP servers now receive their env vars.
Changed
- Tier 3 is now agent-editable core memory; the old shared long-term fact store is retired.
overflow_policyis strictly a spend cap (abortdefault, orwarn); context compaction is automatic and independent of the budget.