# Send Event Planner to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "event-planner",
    "name": "Event Planner",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/udiedrichsen/event-planner",
    "canonicalUrl": "https://clawhub.ai/udiedrichsen/event-planner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/event-planner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=event-planner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/plan_event.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "event-planner",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T23:34:18.896Z",
      "expiresAt": "2026-05-09T23:34:18.896Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=event-planner",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=event-planner",
        "contentDisposition": "attachment; filename=\"event-planner-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "event-planner"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/event-planner"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/event-planner",
    "downloadUrl": "https://openagent3.xyz/downloads/event-planner",
    "agentUrl": "https://openagent3.xyz/skills/event-planner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/event-planner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/event-planner/agent.md"
  }
}
```
## Documentation

### Event Planner

Plan events by searching venues and generating itineraries with Google Maps links.

### Quick Start

Plan a night out:

uv run {baseDir}/scripts/plan_event.py "night out" \\
  --location "Times Square, NYC" \\
  --party-size 4 \\
  --budget medium \\
  --duration 4h

Plan a weekend day:

uv run {baseDir}/scripts/plan_event.py "weekend day" \\
  --location "Central Park, NYC" \\
  --party-size 2 \\
  --budget "$100 per person" \\
  --preferences "outdoors, casual dining"

Plan a date night:

uv run {baseDir}/scripts/plan_event.py "date night" \\
  --location "SoHo, NYC" \\
  --budget high \\
  --duration 3h

### Event Types

night-out: Dinner + 1-2 bars/lounges (3-4 hours)
weekend-day: Brunch/lunch + activity + dinner (6-8 hours)
date-night: Romantic restaurant + dessert/drinks spot (2-3 hours)
team-event: Group activity + dinner venue (3-5 hours)
lunch: Single restaurant recommendation
dinner: Single restaurant recommendation
trip: Multi-day itinerary with daily plans

### Parameters

--location: City, address, or landmark (required)
--party-size: Number of people (default: 2)
--budget: "low/medium/high" or "$X per person" (default: medium)
--duration: Hours available (e.g., "3h", "full day")
--preferences: Comma-separated (e.g., "vegetarian, outdoor seating, live music")
--start-time: When to start (default: inferred from event type)
--output: text|json (default: text)
--date: Target date in YYYY-MM-DD format for day-specific checks (default: today)

### Output Format

Default (text): Markdown itinerary with timeline, venue details, travel info, and Google Maps link

JSON: Structured data with all venue details, coordinates, and parsed metadata

### Limitations

API limits: Google Places API has usage quotas (check your billing)
Real-time data: Venue hours may change; always confirm before going
Budget estimates: Based on Google's price level (0-4), not exact costs
Travel times: Uses Google Directions API when available; falls back to distance-based estimates with 30% buffer
Opening hours: Places without verified hours will show warnings; do not assume availability
Event venues: Cultural centers, theaters, and event spaces may have variable hours depending on scheduled events

### API Requirements

The event planner uses:

Google Places API (New): Required for venue search
Google Directions API: Optional but recommended for accurate travel times

Both APIs can use the same GOOGLE_PLACES_API_KEY if enabled in Google Cloud Console.

### Error Handling

Invalid location → Returns error with suggestions
No venues found → Relaxes filters and retries
API failures → Retry with exponential backoff (3 attempts)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: udiedrichsen
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T23:34:18.896Z
- Expires at: 2026-05-09T23:34:18.896Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/event-planner)
- [Send to Agent page](https://openagent3.xyz/skills/event-planner/agent)
- [JSON manifest](https://openagent3.xyz/skills/event-planner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/event-planner/agent.md)
- [Download page](https://openagent3.xyz/downloads/event-planner)