Health Check

GET /health
Response:
{
  "status": "ok",
  "version": "0.1.0",
  "uptime": 3600
}

List Tools

POST /tools
Response:
{
  "tools": ["memory_search", "memory_store", "task_create", "..."]
}

Execute Tool

POST /tools/memory_search
Content-Type: application/json

{
  "arguments": {
    "query": "hello world"
  }
}

List Plans

GET /plans

Create Plan

POST /plans
Content-Type: application/json

{
  "goal": "Build a landing page"
}