ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Search, retrieve, and summarize Fathom meeting recordings — transcripts, summaries, action items, and team info. Use this skill whenever the user mentions meetings, calls, recordings, meeting notes, transcripts, action items, follow-ups from calls, or anything related to Fathom.
$ npx -y skills add evolution-foundation/evo-nexus --skill int-fathom --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/int-fathomContext preview
The summary Claude sees to decide when to auto-load this skill.
Search, retrieve, and summarize Fathom meeting recordings — transcripts, summaries, action items, and team info. Use this skill whenever the user mentions meetings, calls, recordings, meeting notes, transcripts, action items, follow-ups from calls, or anything related to Fathom.
name: int-fathom
description: Search, retrieve, and summarize Fathom meeting recordings — transcripts, summaries, action items, and team info. Use this skill whenever the user mentions meetings, calls, recordings, meeting notes, transcripts, action items, follow-ups from calls, or anything related to Fathom. Also trigger on "o que foi discutido na reuniao", "resumo da call", "quem participou", "proximos passos da reuniao", "meeting recap", or any reference to past conversations/calls that might be recorded.
homepage: https://fathom.video
metadata: {"clawdis":{"emoji":"🎙️","requires":{"config":["skills.entries.fathom.apiKey"]}}}Retrieve meeting recordings, transcripts, summaries, and action items from Fathom.
The skill needs a Fathom API key configured in `openclaw.json` under `skills.entries.fathom`:
{
"skills": {
"entries": {
"fathom": {
"apiKey": "your-fathom-api-key",
"env": {
"FATHOM_API_KEY": "your-fathom-api-key"
}
}
}
}
}The API key is available at https://fathom.video/settings/api (requires Fathom Team or Enterprise plan).
# List recent meetings
{baseDir}/scripts/fathom.sh meetings
# List meetings with summaries included
{baseDir}/scripts/fathom.sh meetings --include-summary
# List meetings with action items
{baseDir}/scripts/fathom.sh meetings --include-actions
# List meetings with full transcript
{baseDir}/scripts/fathom.sh meetings --include-transcript
# Filter by date range
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01" --before "2026-03-11"
# Filter by participant domain (e.g. external meetings only)
{baseDir}/scripts/fathom.sh meetings --domains-type one_or_more_external
# Filter by recorder email
{baseDir}/scripts/fathom.sh meetings --recorded-by "alice@company.com"
# Filter by team
{baseDir}/scripts/fathom.sh meetings --team "Engineering"
# Get summary for a specific recording
{baseDir}/scripts/fathom.sh summary <recording_id>
# Get transcript for a specific recording
{baseDir}/scripts/fathom.sh transcript <recording_id>
# List teams
{baseDir}/scripts/fathom.sh teams
# List team members (optionally filter by team)
{baseDir}/scripts/fathom.sh members [--team "TeamName"]# Get yesterday's meetings with summaries and action items
{baseDir}/scripts/fathom.sh meetings --after "$(date -d 'yesterday' +%Y-%m-%d)" --include-summary --include-actions# Find meetings with a specific company/domain
{baseDir}/scripts/fathom.sh meetings --domains "acme.com" --include-summary --include-actions# First find the meeting
{baseDir}/scripts/fathom.sh meetings --after "2026-03-01"
# Then get the full transcript
{baseDir}/scripts/fathom.sh transcript 123456789# All meetings from the past week with summaries
{baseDir}/scripts/fathom.sh meetings --after "$(date -d '7 days ago' +%Y-%m-%d)" --include-summary --include-actionsWhen presenting meeting data to the user, follow these guidelines:
The API returns JSON. Key fields per meeting:
The meetings endpoint uses cursor-based pagination. The script handles this automatically when you pass `--all` to fetch every page. Without `--all`, it returns the first page only (default limit from API).
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the…
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in…
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a…
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake…
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description,…