skills$openclaw/read-ai
mrgoodb66

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.

66 stars4.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameread-ai
descriptionAccess meeting summaries, transcripts, and action items from Read.ai. Get AI-powered meeting insights via API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/read-ai
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/read-ai
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains read-ai in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
1.5 KB
SKILL.md

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"
  • Automatic transcription for Zoom, Teams, Meet
  • AI-generated summaries
  • Action item extraction
  • Speaker identification
  • Sentiment analysis
README.md

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.