Skip to main content
ClaudeWave
Skill1.3k repo starsupdated today

recommend_poi

This Claude Code skill recommends a point of interest for a specified city and outputs structured JSON data containing the POI name, city, and a deterministic score. Use it when you need to generate location recommendations in a machine-readable format, particularly for demonstrations of structured output capabilities in agent systems.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/trpc-group/trpc-agent-go /tmp/recommend_poi && cp -r /tmp/recommend_poi/examples/skilldynamicschema/skills/recommend_poi ~/.claude/skills/recommend_poi
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# 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
```