OpenClaw gateway plugin for Astro — exposes project/plan/task management as tools available to OpenClaw agents.
| Tool | Description |
|---|---|
astro_list_projects |
List all projects |
astro_get_plan |
Get the plan graph (nodes + edges) for a project |
astro_create_project |
Create a new project |
astro_create_task |
Add a task node to a project's plan |
astro_convert_to_project |
Convert a task into a standalone project |
astro_run_task |
Dispatch a task for execution on an agent runner |
astro_task_status |
Poll execution status and output |
openclaw plugins install @astroanywhere/astro
openclaw config set plugins.entries.astro.config.serverUrl "https://api.astroanywhere.com"
openclaw gateway restartFor local development against a local Astro backend:
openclaw plugins install --link /path/to/openclaw-plugin
openclaw config set plugins.entries.astro.config.serverUrl "http://localhost:3001"
openclaw gateway restartVerify:
openclaw plugins info astroSet via openclaw config set plugins.entries.astro.config.<key>:
| Key | Required | Default | Description |
|---|---|---|---|
serverUrl |
Yes | http://localhost:3001 |
Astro backend URL |
authToken |
No | "" |
Bearer token (empty in local/no-auth mode) |
teamId |
No | "" |
Team ID to scope requests |
src/
index.ts # Plugin entry — register() for gateway, createPlugin() for standalone
client.ts # HTTP client wrapping Astro's /api/* endpoints
types.ts # OpenClaw plugin SDK types (tool definitions, results)
tools/ # One file per tool (list-projects, get-plan, create-task, etc.)
openclaw.plugin.json # Plugin manifest (id, tools, config schema)
npm install
npm run build # TypeScript -> dist/
npm test # VitestThe gateway default export is register(api) which receives the OpenClaw plugin API and registers all tools. For standalone/programmatic use, import createPlugin(config) instead.