fireflies
Fireflies.ai API for meeting transcription. Use when user mentions "Fireflies", "meeting notes", "transcription", or "meeting summary".
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name FIREFLIES_TOKEN` or `zero doctor check-connector --url https://api.fireflies.ai/graphql --method POST`
## How to Use
All examples below assume you have `FIREFLIES_TOKEN` set.
Endpoint: `https://api.fireflies.ai/graphql`
The Fireflies API is **GraphQL-based**. All requests are `POST` to a single endpoint. Write the GraphQL query to `/tmp/fireflies_request.json`, then execute with curl.
## 1. Get Current User
Fetch details for the API key owner. Omit the `userId` variable to get the current user.
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query { user { user_id name email num_transcripts minutes_consumed is_admin integrations } }"
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.user'
```
## 2. List Transcripts
Fetch a list of recent meeting transcripts.
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query { transcripts(limit: 10) { id title date duration organizer_email participants host_email } }"
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcripts'
```
### Search by Keyword
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcripts($keyword: String) { transcripts(keyword: $keyword, limit: 10) { id title date duration } }",
"variables": { "keyword": "product roadmap" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcripts'
```
### Filter by Date Range
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcripts($fromDate: DateTime, $toDate: DateTime) { transcripts(fromDate: $fromDate, toDate: $toDate, limit: 20) { id title date duration } }",
"variables": { "fromDate": "2025-01-01T00:00:00.000Z", "toDate": "2025-12-31T23:59:59.000Z" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcripts'
```
### Filter by Participant
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcripts($participants: [String]) { transcripts(participants: $participants, limit: 10) { id title date participants } }",
"variables": { "participants": ["[email protected]"] }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcripts'
```
**Transcripts Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| `keyword` | String | Search in title and spoken words (max 255 chars) |
| `fromDate` / `toDate` | DateTime | ISO 8601 date range filter |
| `host_email` | String | Filter by host email |
| `organizers` | [String] | Filter by organizer emails |
| `participants` | [String] | Filter by participant emails |
| `mine` | Boolean | Only meetings owned by API key owner |
| `limit` | Int | Max results (default 50) |
| `skip` | Int | Pagination offset |
## 3. Get Single Transcript
Fetch full details for a specific transcript.
### Basic Info
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcript($transcriptId: String!) { transcript(id: $transcriptId) { id title date duration host_email organizer_email participants transcript_url audio_url } }",
"variables": { "transcriptId": "your_transcript_id" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcript'
```
### With Summary and Action Items
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcript($transcriptId: String!) { transcript(id: $transcriptId) { id title summary { keywords action_items outline overview short_summary topics_discussed } } }",
"variables": { "transcriptId": "your_transcript_id" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcript.summary'
```
### With Sentences (Full Transcript)
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcript($transcriptId: String!) { transcript(id: $transcriptId) { id title sentences { index speaker_name text start_time end_time } } }",
"variables": { "transcriptId": "your_transcript_id" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcript.sentences'
```
### With Analytics
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query Transcript($transcriptId: String!) { transcript(id: $transcriptId) { id title analytics { sentiments { negative_pct neutral_pct positive_pct } speakers { name duration word_count words_per_minute questions filler_words } } } }",
"variables": { "transcriptId": "your_transcript_id" }
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.transcript.analytics'
```
## 4. Upload Audio for Transcription
Upload an audio file URL for Fireflies to transcribe. The file must be publicly accessible via HTTPS. Supported formats: mp3, mp4, wav, m4a, ogg.
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "mutation($input: AudioUploadInput) { uploadAudio(input: $input) { success title message } }",
"variables": {
"input": {
"url": "https://example.com/meeting-recording.mp3",
"title": "Team Standup 2025-01-15"
}
}
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.uploadAudio'
```
### Upload with Attendees
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "mutation($input: AudioUploadInput) { uploadAudio(input: $input) { success title message } }",
"variables": {
"input": {
"url": "https://example.com/meeting-recording.mp3",
"title": "Product Review",
"attendees": [
{ "displayName": "Alice", "email": "[email protected]" },
{ "displayName": "Bob", "email": "[email protected]" }
]
}
}
}
```
Then run:
```bash
curl -s -X POST "https://api.fireflies.ai/graphql" --header "Content-Type: application/json" --header "Authorization: Bearer $FIREFLIES_TOKEN" -d @/tmp/fireflies_request.json | jq '.data.uploadAudio'
```
**Upload Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| `url` | String | Public HTTPS URL of audio/video file (required) |
| `title` | String | Title for the meeting |
| `attendees` | [Object] | Array of `{ displayName, email, phoneNumber }` |
| `webhook` | String | URL to notify when transcription completes |
| `custom_language` | String | Language code (e.g., `es`, `de`, `ja`) |
| `save_video` | Boolean | Retain video file |
| `client_reference_id` | String | Custom identifier for the upload |
## 5. List Team Users
Fetch all users in the team.
Write to `/tmp/fireflies_request.json`:
```json
{
"query": "query { users { user_id name email is_admin num_transRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.