We published an OpenClaw skill for Hedy on ClawHub. Install it and your AI agent can pull meeting transcripts, session summaries, highlights, action items, and more through the Hedy REST API.

OpenClaw has become one of the go-to ways to extend what AI agents can do. With over 13,000 skills on ClawHub, there are tools for everything from code review to calendar management. But until now, there hasn't been a good way for an OpenClaw agent to access meeting intelligence.
The Hedy skill fills that gap. If you use OpenClaw, you can install this skill and your agent gets access to your full meeting history: session transcripts, AI-generated summaries, highlights with analytical insights, open todos, topic groupings, and webhook configuration.
Instead of copy-pasting meeting notes into your agent or pulling data manually, your agent queries Hedy on its own. Ask it what happened in yesterday's standup. Have it pull your open action items. Let it cross-reference a client call with your project notes.
The skill wraps the Hedy REST API into the standard OpenClaw skill format. Once installed, your agent can:
All requests run through authenticated API calls. Your meeting data stays secure, and the agent only accesses what your Hedy API key permits.
Setting up the skill takes a few minutes.
Open the Hedy app and go to Settings > API. Your key will start with hedy_live_.
Open ~/.openclaw/openclaw.json and add the following under skills.entries:
{
"skills": {
"entries": {
"hedy": {
"enabled": true,
"apiKey": "hedy_live_YOUR_KEY_HERE",
"config": {
"region": "us"
}
}
}
}
}If your Hedy account uses EU data residency, change "region" to "eu".
The API key from openclaw.json is injected into the host process only. You'll need to add it to your sandbox environment separately:
{
"agents": {
"defaults": {
"sandbox": {
"docker": {
"env": {
"HEDY_API_KEY": "hedy_live_YOUR_KEY_HERE"
}
}
}
}
}
}Start a new session so the skill gets picked up. Your agent will have access to your Hedy meeting data right away.
The Hedy OpenClaw skill is released under the MIT-0 license, which is about as permissive as it gets. Use it, modify it, redistribute it. No attribution required. We wanted to make it as easy as possible for the OpenClaw community to build on top of Hedy's meeting intelligence.
The full source and documentation are on ClawHub: clawhub.ai/JulianPscheid/hedy
The OpenClaw skill joins a growing set of integration options. Hedy also connects through no-code automation platforms like Zapier, n8n, ActivePieces, viaSocket, and Pabbly Connect. For developers who want direct access, there's the Hedy REST API, webhooks for real-time meeting events, and an MCP server for tools like Claude Desktop and Cursor.
See the full list at hedy.ai/integrations.
Questions? Reach out to our support team or join the community on Slack. We'd love to hear what you build with it.