# plan_route > Plan a route and return distance + ETA (schema + deterministic result). - Author: goodliu - Repository: ijkbytes/trpc-agent-go - Version: 20260205103045 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/ijkbytes/trpc-agent-go - Web: https://mule.run/skillshub/@@ijkbytes/trpc-agent-go~plan_route:20260205103045 --- --- name: plan_route description: Plan a route and return distance + ETA (schema + deterministic result). --- # plan_route This skill is used by the dynamic structured output demo. ## Output JSON Schema ```json { "type": "object", "properties": { "route": { "type": "string", "description": "Route name" }, "distance_km": { "type": "number", "description": "Distance in kilometers" }, "eta_min": { "type": "integer", "description": "ETA in minutes" } }, "required": [ "route", "distance_km", "eta_min" ], "additionalProperties": false } ``` ## Commands Print JSON result to stdout: ```bash cat result.json ```