Meetlark - coordinate a meeting

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only scheduling skill is coherent and purpose-aligned, but it uses Meetlark’s API and asks the agent to keep a private poll admin token while the poll is active.

This skill appears suitable for creating Meetlark scheduling polls. Before using it, be aware that poll details and votes are handled by Meetlark, the participation link lets anyone vote, and the private admin token should be kept confidential and removed from memory when the poll is finished.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent can create a poll and later close it through Meetlark when acting on the user’s request.

Why it was flagged

The skill uses external API calls to create and close scheduling polls. This is central to the stated purpose, but it mutates state on an outside service.

Skill content
POST https://meetlark.ai/api/v1/polls?autoVerify=true ... POST https://meetlark.ai/api/v1/polls/{pollId}/close
Recommendation

Confirm poll details before creation and get clear user approval before closing a poll.

What this means

Anyone with the admin token can view individual poll responses and close the poll; anyone with the participation URL can vote.

Why it was flagged

The skill relies on bearer-style poll tokens: the admin token grants management and result-viewing access, while the participation URL grants voting access.

Skill content
Admin token (`adm_...`) — Private. View full results, see who voted, close the poll. ... Anyone with the participate URL can vote
Recommendation

Keep the admin token private, share only the participation URL, and treat both links as access credentials.

What this means

If retained too broadly or too long, the admin token could be reused later to view results or close the poll.

Why it was flagged

The artifact explicitly asks the agent to persist the private admin token so it can manage the poll later.

Skill content
Store it in your memory for the poll's lifetime.
Recommendation

Store the token only for the specific poll, avoid exposing it in shared conversation text, and delete it after the poll is closed or no longer needed.