rayclaw 0.1.8

Multi-channel agentic AI runtime with tool-calling, memory, and scheduling
Documentation
{
  "defaultAutoApprove": true,
  "promptTimeoutSecs": 300,
  "acpAgents": {
    "claude": {
      "launch": "npx",
      "command": "@anthropic-ai/claude-code@latest",
      "args": ["--acp"],
      "env": {
        "ANTHROPIC_API_KEY": "your-api-key-here"
      },
      "workspace": "/path/to/projects",
      "auto_approve": true
    },
    "opencode": {
      "launch": "binary",
      "command": "/usr/local/bin/opencode",
      "args": ["acp"],
      "workspace": "/path/to/projects"
    },
    "gemini": {
      "launch": "npx",
      "command": "@google/gemini-cli@latest",
      "args": ["--experimental-acp"],
      "env": {
        "GEMINI_API_KEY": "your-gemini-api-key-here"
      },
      "workspace": "/path/to/projects"
    }
  }
}