ClawConnect - Universal account connector for AI agents. Send tweets, read/send Gmail, manage calendar, send Slack messages, and more through one API.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clawconnect或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clawconnect⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clawconnect/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clawconnect description: "ClawConnect - Universal account connector for AI agents. Send tweets, read/send Gmail, manage calendar, send Slack messages, and more through one API." ---
Universal account connector for AI agents. One API to access Gmail, Calendar, Twitter, Slack, and Discord.
Authorization: Bearer Base URL: https://clawconnect.dev
List connected accounts:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/connections
Get your Twitter profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/twitter/me
Get timeline:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/twitter/timeline
Post a tweet:
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Hello from ClawConnect!"}' \
https://clawconnect.dev/api/v1/twitter/tweet
List emails (with optional search query and max results):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
"https://clawconnect.dev/api/v1/gmail/messages?q=is:unread&maxResults=10"
Get email by ID:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/gmail/messages/MESSAGE_ID
Send email:
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"to": "[email protected]", "subject": "Hello", "body": "Email body here"}' \
https://clawconnect.dev/api/v1/gmail/send
List events (with optional time range and max results):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
"https://clawconnect.dev/api/v1/calendar/events?timeMin=2025-01-01T00:00:00Z&timeMax=2025-01-31T23:59:59Z&maxResults=20"
List workspace users:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/users
List channels:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/channels
Get your Slack profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/slack/profile
Send a message (channel can be a channel ID or user ID):
curl -X POST -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"channel": "C01234ABCDE", "text": "Hello!"}' \
https://clawconnect.dev/api/v1/slack/send
Get your Discord profile:
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/discord/me
List guilds (servers):
curl -H "Authorization: Bearer $CLAWCONNECT_API_KEY" \
https://clawconnect.dev/api/v1/discord/guilds
q parameter on Gmail to filter (same syntax as Gmail search).timeMin/timeMax accept ISO 8601 timestamps.connection_id to target a specific connection.安装 ClawConnect 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/clawconnect/ 目录(个人级,所有项目可用),或 .claude/skills/clawconnect/(项目级)。重启 AI 客户端后,用 /clawconnect 主动调用,或让 AI 根据上下文自动发现并使用。
ClawConnect 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
ClawConnect 可免费安装使用。请查阅仓库了解许可证信息。
ClawConnect - Universal account connector for AI agents. Send tweets, read/send Gmail, manage calendar, send Slack messages, and more through one API.
ClawConnect 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。