# Send Meetlark - coordinate a meeting 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": "meetlark",
    "name": "Meetlark - coordinate a meeting",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/mkelk/meetlark",
    "canonicalUrl": "https://clawhub.ai/mkelk/meetlark",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/meetlark",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetlark",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "meetlark",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:50:42.636Z",
      "expiresAt": "2026-05-07T13:50:42.636Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetlark",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=meetlark",
        "contentDisposition": "attachment; filename=\"meetlark-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "meetlark"
      },
      "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/meetlark"
    },
    "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/meetlark",
    "downloadUrl": "https://openagent3.xyz/downloads/meetlark",
    "agentUrl": "https://openagent3.xyz/skills/meetlark/agent",
    "manifestUrl": "https://openagent3.xyz/skills/meetlark/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/meetlark/agent.md"
  }
}
```
## Documentation

### meetlark.ai — Scheduling polls for humans and their agents

A Doodle alternative built for the age of AI agents. Create a poll, share a link, collect votes, find the best time.

### Two Tokens

When you create a poll you get two tokens:

Admin token (adm_...) — Private. View full results, see who voted, close the poll. Store it in your memory for the poll's lifetime.
Participate token (prt_...) — Shareable. Anyone with the participate URL can vote — humans via the web UI, agents via the API. Multiple people use the same link.

### Creating a Poll

Ask the user what times work and create the poll with those time slots.

POST https://meetlark.ai/api/v1/polls?autoVerify=true

The response includes adminToken and participateUrl.

### Email Verification

Poll creation requires a verified email (one-time, valid for 30 days of activity).

Use ?autoVerify=true — if the email is unverified, the API automatically sends a verification email and returns:

{
  "error": {
    "code": "email_not_verified",
    "details": { "verificationSent": true, "email": "user@example.com" }
  }
}

Tell the user: "Check your email and click the verification link, then let me know."

Poll GET /api/v1/auth/status?email=... until verified: true, then retry.

### Sharing the Poll

Give the participate URL to the user and ask them to share it. Suggest a message:

Hi [name/team],

[Creator] has created a poll to find the best time for [meeting purpose].

Vote here: [participate URL]

Please vote on the times that work for you.

### Checking Results

GET https://meetlark.ai/api/v1/polls/{pollId}
Authorization: Bearer adm_...

Returns vote counts per time slot and individual votes.

### Closing the Poll

POST https://meetlark.ai/api/v1/polls/{pollId}/close
Authorization: Bearer adm_...

### Quick Examples

"Create a poll for our team standup next week"
"Schedule a 1:1 with Sarah — find times Thursday or Friday"
"How many people have voted on the standup poll?"
"Close the poll and tell me the winning time"

### API

OpenAPI spec: https://meetlark.ai/api/v1/openapi.json
Interactive docs: https://meetlark.ai/docs
AI plugin manifest: https://meetlark.ai/.well-known/ai-plugin.json

### Website

meetlark.ai: https://meetlark.ai
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mkelk
- Version: 1.0.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-04-30T13:50:42.636Z
- Expires at: 2026-05-07T13:50:42.636Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/meetlark)
- [Send to Agent page](https://openagent3.xyz/skills/meetlark/agent)
- [JSON manifest](https://openagent3.xyz/skills/meetlark/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/meetlark/agent.md)
- [Download page](https://openagent3.xyz/downloads/meetlark)