openclaw / read-ai
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/read-ai && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3615" && unzip -o skill.zip -d .claude/skills/read-ai && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/read-ai/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Access meeting summaries, transcripts, and action items from Read.ai. Get AI-powered meeting insights via API.
0 views
0 installs
Skill Content
---
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
```bash
export READAI_API_KEY="xxxxxxxxxx"
```
## List Meetings
```bash
curl "https://api.read.ai/v1/meetings" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Get Meeting Details
```bash
curl "https://api.read.ai/v1/meetings/{meeting_id}" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Get Meeting Transcript
```bash
curl "https://api.read.ai/v1/meetings/{meeting_id}/transcript" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Get Meeting Summary
```bash
curl "https://api.read.ai/v1/meetings/{meeting_id}/summary" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Get Action Items
```bash
curl "https://api.read.ai/v1/meetings/{meeting_id}/action-items" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Get Key Topics
```bash
curl "https://api.read.ai/v1/meetings/{meeting_id}/topics" \
-H "Authorization: Bearer $READAI_API_KEY"
```
## Search Meetings
```bash
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