skills/integrations/amie/amie-connect/SKILL.md
Work with Amie calendar and meeting notes. Load when user mentions "amie", "meeting notes", "get transcript", "save transcript to file", "export transcript", "action items from meeting", or wants to access Amie data.
npx skillsauth add beam-ai-team/beam-next-skills amie-connectInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Access your Amie calendar, meeting notes, transcripts, and action items.
ALWAYS run before any operation:
python 00-system/skills/amie/amie-master/scripts/check_amie_config.py --json
| ai_action | What to Do |
|-----------|------------|
| proceed_with_operation | Config OK, continue |
| prompt_for_api_token | Ask user for PAT, add to .env |
Triggers: "list notes", "show meeting notes", "my meetings", "amie notes"
python 00-system/skills/amie/amie-master/scripts/list_notes.py [--limit N]
Returns all meeting notes with IDs for further queries.
Triggers: "get note", "show meeting", "note details"
python 00-system/skills/amie/amie-master/scripts/get_note.py --id NOTE_ID
Triggers: "get transcript", "meeting transcript", "what was said"
python 00-system/skills/amie/amie-master/scripts/get_transcript.py --id NOTE_ID
Returns transcript with speaker identification.
Triggers: "save transcript to file", "export transcript", "fetch transcript into a file", "download transcript"
# Save as JSON (full API response)
python 00-system/skills/amie/amie-master/scripts/get_transcript.py --id NOTE_ID --output PATH
# Save as readable text (speaker: line)
python 00-system/skills/amie/amie-master/scripts/get_transcript.py --id NOTE_ID --output PATH --format text
02-resources/ or 04-outputs/ with note title and date in filename.Triggers: "action items", "todos from meeting", "follow ups"
python 00-system/skills/amie/amie-master/scripts/get_action_items.py --id NOTE_ID
On error, check:
AMIE_API_TOKEN set in .env?For setup issues, run config check:
python 00-system/skills/amie/amie-master/scripts/check_amie_config.py --json
Version: 1.0 Created: 2026-02-03
testing
Audit registry.yaml against disk, validate SKILL.md frontmatter, find duplicates and orphans. Load when user says 'audit skills registry', 'validate beam-next-skills', 'registry drift', 'skills catalog audit', 'check registry yaml'.
tools
All Workable ATS operations — fetch JDs, search candidates, post assessments/reviews. Load when user says "fetch JD", "search workable", "push to workable", "post review", "rate candidate", "workable", "push assessment", "list jobs", or after interview-coach completes an evaluation. Replaces workable-fetch-jd and workable-push-assessment.
data-ai
Load when user mentions "tavily research", "market intelligence", "competitive research", "GTM research", or needs real-time market data for sales, marketing, or vertical strategy.
development
Shared resource library for Slack integration skills. DO NOT load directly - provides common references (setup, API docs, error handling, authentication) and scripts used by slack-connect and individual Slack skills.