Skill1.3k estrellas del repoactualizado 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.
Instalar en Claude Code
Copiargit 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_poiDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
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
```Del mismo repositorio
blogSkill
enSkill
zhSkill
artifact_demoSkill
Demo skill that writes an output file and persists it as an artifact.
news-query-agentSubagent
Answer news queries with a fixed demo response.
weather-querySkill
Answer weather queries with a fixed demo response.
contact-lookup-agentSubagent
Look up contact phone numbers with fixed demo data.
write-okSkill
Write a deterministic OK file to out/ok.txt.