plan-route

star 1.3k

Plan a route and return distance + ETA (schema + deterministic result).

trpc-group By trpc-group schedule Updated 2/4/2026

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

{
  "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:

cat result.json
Install via CLI
npx skills add https://github.com/trpc-group/trpc-agent-go --skill plan-route
Repository Details
star Stars 1,307
call_split Forks 159
navigation Branch main
article Path SKILL.md
More from Creator