meetlarkScheduling polls for humans and their agents. Create polls, share participation links, collect votes, and find the best meeting time. A Doodle alternative built for the age of AI agents.
Install via ClawdBot CLI:
clawdbot install mkelk/meetlarkA Doodle alternative built for the age of AI agents. Create a poll, share a link, collect votes, find the best time.
When you create a poll you get two tokens:
adm_...) β Private. View full results, see who voted, close the poll. Store it in your memory for the poll's lifetime.prt_...) β Shareable. Anyone with the participate URL can vote β humans via the web UI, agents via the API. Multiple people use the same link.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.
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:
```json
{
"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.
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.
```
```
GET https://meetlark.ai/api/v1/polls/{pollId}
Authorization: Bearer adm_...
```
Returns vote counts per time slot and individual votes.
```
POST https://meetlark.ai/api/v1/polls/{pollId}/close
Authorization: Bearer adm_...
```
```
"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"
```
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection