xml-pipeline/agentserver/config/__init__.py
dullfig 0fb35da5dd Add /configure command with full-screen editor
- AgentConfigStore: Per-agent YAML configs in ~/.xml-pipeline/agents/
- Full-screen editor using prompt_toolkit with YAML highlighting
- /configure: Edit organism.yaml (swarm wiring)
- /configure @agent: Edit agent config (prompt, model, temperature)

Agent configs separate behavior (prompt, model) from wiring (peers, routing).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 21:17:43 -08:00

23 lines
391 B
Python

"""
Configuration management for xml-pipeline.
Handles:
- Agent configs (~/.xml-pipeline/agents/*.yaml)
- Organism config (organism.yaml)
"""
from .agents import (
AgentConfig,
AgentConfigStore,
get_agent_config_store,
CONFIG_DIR,
AGENTS_DIR,
)
__all__ = [
"AgentConfig",
"AgentConfigStore",
"get_agent_config_store",
"CONFIG_DIR",
"AGENTS_DIR",
]