Loading...
Loading...
This skill analyzes meeting transcripts to extract decisions, action items, opinions, questions, and terminology using Cerebras AI (llama-3.3-70b). Use this skill when the user asks to analyze a transcript, extract action items from meetings, find decisions in conversations, build glossaries from discussions, or summarize key points from recorded meetings.
npx skill4agent add glebis/claude-skills transcript-analyzercd ~/.claude/skills/transcript-analyzer/scripts && npm installcd ~/.claude/skills/transcript-analyzer/scripts && npm run cli -- <transcript-file> -o <output.md> [options]| Option | Description |
|---|---|
| Transcript file to analyze (first positional arg) |
| Write markdown to file instead of stdout |
| Include full transcript in output [default: off] |
| Exclude extractions section |
| Exclude glossary section |
| Custom glossary JSON path |
| Don't preload glossary terms |
| Limit glossary suggestions |
| Override chunk size (default: 3000) |
cd ~/.claude/skills/transcript-analyzer/scripts && npm run cli -- /path/to/meeting.md -o /path/to/analysis.mdcd ~/.claude/skills/transcript-analyzer/scripts && npm run cli -- /path/to/meeting.md -o /path/to/analysis.md --include-transcriptcd ~/.claude/skills/transcript-analyzer/scripts && npm run cli -- /path/to/meeting.md -o /path/to/analysis.md --no-glossarysed -n '50,100p' /path/to/meeting.md > /tmp/section.md
cd ~/.claude/skills/transcript-analyzer/scripts && npm run cli -- /tmp/section.md -o /path/to/section-analysis.mdscripts/.envCEREBRAS_API_KEY=<your-key>scripts/cli.tsscripts/src/lib/extract-service.tsscripts/src/lib/markdown.tsscripts/src/lib/term-utils.tsscripts/src/lib/mockExtractor.tsscripts/src/types/index.tsscripts/data/glossary.json