返回顶部
a

agentmeet

Agent-to-agent meeting coordination over email. Read Google Calendar, generate available slots, send protocol-formatted emails. Recipients click a time slot to reply — no server, no account, pure p2p over email.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
89
下载量
0
收藏
概述
安装方式
版本历史

agentmeet

# AgentMeet — Agent-to-Agent Meeting Coordination An open protocol for AI agents to coordinate meetings over email. No server. No domain. No account. Pure p2p. ## How It Works 1. Agent reads user's Google Calendar -> generates available slots 2. Agent sends an HTML email where each time slot is a clickable mailto: link 3. Recipient clicks a slot -> opens pre-filled reply with machine-readable payload 4. Sender's agent detects the reply -> creates calendar events for both parties Every invite email also includes an "Add AgentMeet" link for viral adoption. ## Setup ```bash cd ~/Dropbox/Dev/agentmeet && npm install ``` Requires Google Calendar and Gmail access (OAuth or MCP). ## Usage ### Send a meeting invite ```bash bun run -e ' import { buildInvite } from "~/Dropbox/Dev/agentmeet/src/invite"; import { writeFileSync } from "fs"; const result = await buildInvite({ from: { name: "YOUR_NAME", email: "YOUR_EMAIL" }, to: "RECIPIENT_EMAIL", meeting: { title: "Meeting Title", duration_minutes: 30, notes: "Optional description", }, slots: [ { start: "2026-03-25T10:00:00+08:00", end: "2026-03-25T10:30:00+08:00" }, ], }); // result.subject = email subject line // result.html = email body (HTML with embedded protocol payload) // Send via Gmail API or any email service ' ``` ### Parse an incoming agentmeet email ```typescript import { parseAgentMeetEmail, isAgentMeetSubject } from "agentmeet"; // Check subject line if (isAgentMeetSubject(emailSubject)) { const payload = parseAgentMeetEmail(emailHtmlBody); if (payload) { console.log(payload.type); // INVITE | COUNTER | SELECT | CONFIRM console.log(payload.request_id); // am_xxx console.log(payload.selected_slots); // for SELECT type } } ``` ### Generate available slots from calendar ```typescript import { getBusyPeriods, generateAvailableSlots, DEFAULT_PREFERENCES } from "agentmeet"; const busy = await getBusyPeriods(oauth2Client, startISO, endISO); const slots = generateAvailableSlots(busy, startDate, endDate, 30, DEFAULT_PREFERENCES); ``` ## Protocol Four message types, embedded as HTML comments in email body: | Type | Direction | Purpose | |------|-----------|---------| | INVITE | A -> B | Sender's available slots | | COUNTER | B -> A | Recipient's alternative slots | | SELECT | B -> A | Recipient picks one or more slots | | CONFIRM | A -> B | Calendar events created | Detection: subject starts with `[AgentMeet]`, body contains `<!-- agentmeet/v1`. Payload format: ```html <!-- agentmeet/v1 { "protocol": "agentmeet", "version": "0.1", "type": "SELECT", "request_id": "am_abc123", "selected_slots": [{ "start": "ISO8601", "end": "ISO8601" }] } --> ``` ## Multi-Party Scheduling Send INVITE to multiple recipients. Each responds with their available slots. The initiating agent finds the intersection and proposes the best overlap. ## Email Format Each slot in the invite email is a mailto: link. Clicking it opens a pre-filled reply email with the SELECT payload. For group scheduling, a separate "I'm available for all of these" link lets recipients select multiple slots and delete the ones that don't work. ## Configuration Default preferences (override per-invite): ```yaml working_hours: start: "09:00" end: "18:00" timezone: "Asia/Taipei" buffer_minutes: 15 max_slots_to_share: 5 blocked_days: ["saturday", "sunday"] ``` ## Source Protocol spec: `PROTOCOL.md` Implementation: `src/` (TypeScript) License: Apache-2.0

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agentmeet-1776110373 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agentmeet-1776110373 技能

通过命令行安装

skillhub install agentmeet-1776110373

下载 Zip 包

⬇ 下载 agentmeet v0.1.0

文件大小: 2.48 KB | 发布时间: 2026-4-14 10:44

v0.1.0 最新 2026-4-14 10:44
Initial release: agent-to-agent meeting coordination over email. No server, no domain, pure p2p. Ships with Google Calendar integration and mailto-based slot picker.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部