66★by mrgoodb
read-ai – OpenClaw Skill
read-ai is an OpenClaw Skills integration for data analytics workflows. Access meeting summaries, transcripts, and action items from Read.ai. Get AI-powered meeting insights via API.
Skill Snapshot
| name | read-ai |
| description | Access meeting summaries, transcripts, and action items from Read.ai. Get AI-powered meeting insights via API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/read-ai |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/read-ai |
| last updated | Feb 7, 2026 |
Maintainer

name: read-ai description: Access meeting summaries, transcripts, and action items from Read.ai. Get AI-powered meeting insights via API. metadata: {"clawdbot":{"emoji":"🎙️","requires":{"env":["READAI_API_KEY"]}}}
Read.ai
AI meeting assistant with transcription and summaries.
Environment
export READAI_API_KEY="xxxxxxxxxx"
List Meetings
curl "https://api.read.ai/v1/meetings" \
-H "Authorization: Bearer $READAI_API_KEY"
Get Meeting Details
curl "https://api.read.ai/v1/meetings/{meeting_id}" \
-H "Authorization: Bearer $READAI_API_KEY"
Get Meeting Transcript
curl "https://api.read.ai/v1/meetings/{meeting_id}/transcript" \
-H "Authorization: Bearer $READAI_API_KEY"
Get Meeting Summary
curl "https://api.read.ai/v1/meetings/{meeting_id}/summary" \
-H "Authorization: Bearer $READAI_API_KEY"
Get Action Items
curl "https://api.read.ai/v1/meetings/{meeting_id}/action-items" \
-H "Authorization: Bearer $READAI_API_KEY"
Get Key Topics
curl "https://api.read.ai/v1/meetings/{meeting_id}/topics" \
-H "Authorization: Bearer $READAI_API_KEY"
Search Meetings
curl "https://api.read.ai/v1/meetings/search?query=project%20update" \
-H "Authorization: Bearer $READAI_API_KEY"
Features
- Automatic transcription for Zoom, Teams, Meet
- AI-generated summaries
- Action item extraction
- Speaker identification
- Sentiment analysis
Links
- Dashboard: https://app.read.ai
- Docs: https://docs.read.ai
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install read-ai?
Run openclaw add @mrgoodb/read-ai in your terminal. This installs read-ai into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/read-ai. Review commits and README documentation before installing.
