{
  "schemaVersion": "1.0",
  "item": {
    "slug": "coordinate-meeting",
    "name": "Coordinate a Meeting",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/mkelk/coordinate-meeting",
    "canonicalUrl": "https://clawhub.ai/mkelk/coordinate-meeting",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/coordinate-meeting",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coordinate-meeting",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/coordinate-meeting"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/coordinate-meeting",
    "agentPageUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Schedule a Meeting",
        "body": "A Doodle alternative built for the age of AI agents. Create a scheduling poll via meetlark.ai, collect votes from humans and agents, and find the best time — without the back-and-forth."
      },
      {
        "title": "Workflow",
        "body": "Ask the user who needs to meet and when they're generally available.\nCreate a scheduling poll with the proposed time slots.\nShare the participation link — give it to the user to forward, or suggest a message they can send.\nWait for votes to come in. Check back when the user asks.\nReport the results and recommend the best time.\nClose the poll once a time is chosen."
      },
      {
        "title": "Creating the Poll",
        "body": "POST https://meetlark.ai/api/v1/polls?autoVerify=true\n\nYou'll receive:\n\nAn admin token (adm_...) — store this privately to check results and close the poll later.\nA participate URL — this is the shareable link for voters."
      },
      {
        "title": "First-Time Verification",
        "body": "The user's email must be verified once (valid 30 days). With ?autoVerify=true, a verification email is sent automatically if needed. Tell the user to check their inbox and click the link, then retry.\n\nCheck status: GET /api/v1/auth/status?email=..."
      },
      {
        "title": "Distributing the Poll",
        "body": "Suggest a ready-to-send message:\n\nHi [names],\n\nWe're finding a time for [meeting purpose]. Please vote on the times that work for you:\n\n[participate URL]\n\nThe user can share this via email, Slack, WhatsApp, or any channel."
      },
      {
        "title": "Checking Results",
        "body": "GET https://meetlark.ai/api/v1/polls/{pollId}\nAuthorization: Bearer adm_...\n\nSummarize: how many voted, which times have the most votes, any clear winner."
      },
      {
        "title": "Closing the Poll",
        "body": "POST https://meetlark.ai/api/v1/polls/{pollId}/close\nAuthorization: Bearer adm_...\n\nReport the final result and suggest the user send a confirmation to participants."
      },
      {
        "title": "Quick Examples",
        "body": "\"Find a time for a team retro next week\"\n\"Set up a meeting with Tom, Dick and Jane\"\n\"Check if everyone has voted on the standup poll\"\n\"Close the poll and announce the winning time\"\n\"Schedule a 30-minute demo with the client sometime next week\""
      },
      {
        "title": "API Reference",
        "body": "OpenAPI spec: https://meetlark.ai/api/v1/openapi.json\nInteractive docs: https://meetlark.ai/docs"
      },
      {
        "title": "Website",
        "body": "meetlark.ai: https://meetlark.ai"
      }
    ],
    "body": "Schedule a Meeting\n\nA Doodle alternative built for the age of AI agents. Create a scheduling poll via meetlark.ai, collect votes from humans and agents, and find the best time — without the back-and-forth.\n\nWorkflow\nAsk the user who needs to meet and when they're generally available.\nCreate a scheduling poll with the proposed time slots.\nShare the participation link — give it to the user to forward, or suggest a message they can send.\nWait for votes to come in. Check back when the user asks.\nReport the results and recommend the best time.\nClose the poll once a time is chosen.\nCreating the Poll\nPOST https://meetlark.ai/api/v1/polls?autoVerify=true\n\n\nYou'll receive:\n\nAn admin token (adm_...) — store this privately to check results and close the poll later.\nA participate URL — this is the shareable link for voters.\nFirst-Time Verification\n\nThe user's email must be verified once (valid 30 days). With ?autoVerify=true, a verification email is sent automatically if needed. Tell the user to check their inbox and click the link, then retry.\n\nCheck status: GET /api/v1/auth/status?email=...\n\nDistributing the Poll\n\nSuggest a ready-to-send message:\n\nHi [names],\n\nWe're finding a time for [meeting purpose]. Please vote on the times that work for you:\n\n[participate URL]\n\n\nThe user can share this via email, Slack, WhatsApp, or any channel.\n\nChecking Results\nGET https://meetlark.ai/api/v1/polls/{pollId}\nAuthorization: Bearer adm_...\n\n\nSummarize: how many voted, which times have the most votes, any clear winner.\n\nClosing the Poll\nPOST https://meetlark.ai/api/v1/polls/{pollId}/close\nAuthorization: Bearer adm_...\n\n\nReport the final result and suggest the user send a confirmation to participants.\n\nQuick Examples\n\"Find a time for a team retro next week\"\n\"Set up a meeting with Tom, Dick and Jane\"\n\"Check if everyone has voted on the standup poll\"\n\"Close the poll and announce the winning time\"\n\"Schedule a 30-minute demo with the client sometime next week\"\n\nAPI Reference\nOpenAPI spec: https://meetlark.ai/api/v1/openapi.json\nInteractive docs: https://meetlark.ai/docs\nWebsite\nmeetlark.ai: https://meetlark.ai"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mkelk/coordinate-meeting",
    "publisherUrl": "https://clawhub.ai/mkelk/coordinate-meeting",
    "owner": "mkelk",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/coordinate-meeting",
    "downloadUrl": "https://openagent3.xyz/downloads/coordinate-meeting",
    "agentUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coordinate-meeting/agent.md"
  }
}