Workspace Structure
workspace/
├── servers/ # MCP tools
├── custom_tools/ # User tools
├── skills/ # Openskills
└── utils/ # Agent scripts
Tool Discovery:
Agents explore filesystem, read docstrings, import what they need
execute_command
Central MCP tool that runs agent-written Python scripts
→ Docker execution
→ Timeout & security layers
→ Workspace confinement
# Agent runs their code
execute_command(
"python utils/report.py"
)