원클릭으로
dubai-guide
Manage the Dubai Lifestyle Database. Log places (with Google data), recommend spots based on weather/vibe, and track visits.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage the Dubai Lifestyle Database. Log places (with Google data), recommend spots based on weather/vibe, and track visits.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Spoiler-free book recommendations with reading order, cover images, and a JSON-based reading tracker.
TV show tracking and recommendations backed by a local SQLite database and TVMaze metadata.
Daily journaling with deep Wikipedia/encyclopedia research. Builds a wikilinked knowledge graph over time.
Manage your personal City Lifestyle Database. Log places (with Google data), recommend spots based on weather/vibe, and track visits. Works for any city worldwide.
| name | dubai-guide |
| description | Manage the Dubai Lifestyle Database. Log places (with Google data), recommend spots based on weather/vibe, and track visits. |
| requires | ["goplaces"] |
⚠️ API Key Required: This skill requires the
goplacesskill and a Google Places API key. Set upgoplacesfirst and configure your API key viagoplaces author environment variable.
This skill manages memory/dubai-tracker.json. Use it to log new visits, update entries, or ask for recommendations.
memory/dubai-tracker.jsongoplaces CLI (for fetching address, rating, location data).If memory/dubai-tracker.json doesn't exist, the skill will create it with this structure:
{
"city": "Dubai",
"places": []
}
Trigger: "Log [Place Name]", "I went to [Place]", "Add [Place]" Procedure:
memory/dubai-tracker.json exists. If not, create it with the structure above.goplaces search "[Place Name] Dubai" --limit 1 --json.memory/dubai-tracker.json.places array using the Schema below.
types), Environment (Indoor/Outdoor based on type/photos if available, or ask user).memory/dubai-tracker.json.Trigger: "We went back to [Place]", "Visited [Place] again" Procedure:
memory/dubai-tracker.json.visits array with date (YYYY-MM-DD) and notes.Trigger: "Where should I go?", "Suggest a place for [activity]", "Dinner spot?" Procedure:
memory/dubai-tracker.json.
environment: "Indoor" or seasonality: "Summer Safe".environment: "Outdoor" or seasonality: "Winter Only".{
"name": "string (Official Name)",
"area": "string (e.g. Jumeirah, DIFC)",
"type": "string (Cafe, Beach, Mall, Dinner, Activity)",
"environment": "Indoor ❄️ | Outdoor ☀️ | Hybrid 🌓",
"seasonality": "Summer Safe 🛡️ | Winter Only ❄️ | All Year 🗓️",
"vibe": "comma-separated tags (e.g. work, date-night, loud, quiet)",
"status": "Visited ✅ | Wishlist 📌",
"google_place_id": "string",
"details": {
"rating": number,
"address": "string",
"location": { "lat": number, "lng": number }
},
"visits": [
{
"date": "YYYY-MM-DD",
"notes": "User comments (parking, food, service)",
"companions": ["names"]
}
]
}