Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add rumotion/ai-agent-project-template --skill sharepoint-teams-video-transcript-downloadergit clone --depth 1 https://github.com/rumotion/ai-agent-project-templateWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader)<a href="https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader"><img src="https://agentmods.dev/badge/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader"><img src="https://agentmods.dev/badge/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00076 | $0.01315 |
| Opus 5 | $0.00038 | $0.00658 |
| Sonnet 5 | $0.00015 | $0.00263 |
| Haiku 4.5 | $0.00008 | $0.00131 |
Grade A, and why
sharepoint-teams-video-transcript-downloader scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SharePoint / Teams Video & Transcript Downloader
Use this skill when a user wants to download a Microsoft Teams meeting recording or video hosted on SharePoint / Stream, along with its complete, full-length speaker-annotated transcript and subtitles.
Technical Overview & Solutions Solved
- Authentication & Session Persistence:
- Stream requires SharePoint session authentication (
rtFaandFedAuthNetscape cookies) or Chrome CDP / Playwright context.
- Stream requires SharePoint session authentication (
- Lossless Video Download & Playback Speed Preservation:
- When direct download buttons are disabled or DASH manifests (
videomanifest?provider=spo...) use DRM / 12-second token expirations, direct segment concatenation can fail or require decryption. - Automated Fallback: Uses a headless Playwright Chromium browser context with
MediaRecorder(video.captureStream()). - CRITICAL SPEED REQUIREMENT: Playback rate MUST be set to STRICT 1.0x native normal speed (
v.playbackRate = 1.0;). SettingplaybackRate > 1.0(e.g. 4x or 16x) causes the output stream to encode at accelerated playback rates, making the resulting video play back in fast-forward! - Chunks are streamed incrementally to disk every 5 seconds to prevent browser memory exhaustion on long recordings.
- Converted to
.mp4container viaffmpeg -i temp.webm -c:v copy -c:a copy output.mp4.
- When direct download buttons are disabled or DASH manifests (
- Complete 100% Transcript Extraction (No Missing Cues):
- Direct GET requests to
/_api_cached/v2.1/.../cdnmedia/transcriptsreturn raw compressed Brotli stream bytes (b'B\x1c') which fail plain text decoding. - Microsoft Stream renders transcript cues inside a virtualized Fluent UI container (
.ms-FocusZone/divwithscrollHeight > 5000px) that unmounts offscreen DOM nodes as you scroll. - Solution: Automated Playwright browser context in MUTED MODE (
--mute-audioflag) that navigates to the video page, opens the Transcript side panel, and programmatically scrolls down the virtualized container from0pxto max height (~60,000px), harvesting 100% of speaker cues and timestamps.
- Direct GET requests to
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 99 lines · 76 tokens per session scan A f456ce34257d
sharepoint-teams-video-transcript-downloader is a skill published in the GitHub repository rumotion/ai-agent-project-template (1 stars, last pushed 21d ago), licensed MIT. It adds 76 tokens to every session and 1,315 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
data-analysis
DuckDB-powered analytical engine for large data dumps (JSON, CSV, Parquet). Ingest → Profile → Query → File insights.
documentation-standards
KB conventions: YAML frontmatter, 10-category taxonomy (reference/howto/procedures/troubleshooting/best-practices/decisions/runbooks/planning/business/templates). Triggers: kb/, SOP, runbook, howto, frontmatter, knowledge base.
docs
Generates/updates README, API docs, architecture notes. Triggers: docs, README, API docs, architecture note, documentation.
pptx-to-md
Convert a PPTX slide deck into per-slide markdown that preserves both the verbatim text and the meaning of embedded screenshots, diagrams and charts in their original layout positions. Use this skill (over pptx or liteparse) whenever the deliverable is markdown of a deck's content including interpreted visuals.
glean-cli
Provides knowledge on using the glean CLI tool to access company knowledge and documents through Glean. Use when the user asks you to use Glean to search, read or otherwise access knowledge from their company's Confluence, Slack, Google Drive Files (Slides, Documents, Sheets) etc.
liteparse
Provides fast document to markdown extraction. Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally.