recommend_poi · git:20260204.239a6a9 · 2026-02-04 · sha256 609a3eb62e6cffd2

recommend_poi git:20260204.239a6a9A

Immutable. This exact content is served forever at /api/v1/blob/609a3eb62e6cffd2.

---
name: recommend_poi
description: Recommend a POI in a city (schema + deterministic result).
---

# recommend_poi

This skill is used by the dynamic structured output demo.

## Output JSON Schema

```json
{
  "type": "object",
  "properties": {
    "poi": {
      "type": "string",
      "description": "Point of interest"
    },
    "city": {
      "type": "string",
      "description": "City name"
    },
    "score": {
      "type": "integer",
      "description": "A deterministic score"
    }
  },
  "required": [
    "poi",
    "city",
    "score"
  ],
  "additionalProperties": false
}
```

## Commands

Print JSON result to stdout:

```bash
cat result.json
```