save_route
Update a route by providing its UUID and optional controller, method, path, and context fields to wire it to a controller method.
Instructions
Update a route/page. Wire to controller with both controller and controller_method UUIDs. For significant routes, include context fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | UUID of the route to update | |
| controller | No | Controller file UUID. Requires controller_method. | |
| controller_method | No | Method UUID. Requires controller. | |
| path | No | URL path (e.g., "/api/notes") | |
| name | No | Route name | |
| type | No | ||
| method | No | ||
| middleware | No | ||
| public | No | Public route (no auth) | |
| summary | No | Context: What this endpoint does | |
| rationale | No | Context: Why built this way | |
| references | No | Context: Related entities [{uuid, type, relationship, note}] | |
| decisions | No | Context: Design decisions |