n8n:loom-transcript
Fetch and display the full transcript from a Loom video URL. Use when the user wants to get or read a Loom transcript.
Install
Install this Claude and Codex skill with the command below. The command stays visible even when copy support is unavailable.
git clone https://github.com/n8n-io/n8n /tmp/n8n && ln -s /tmp/n8n/.agents/skills/loom-transcript ~/.claude/skills/n8n:loom-transcript
From README
Loom Transcript Fetcher Fetch the transcript from a Loom video using Loom's GraphQL API. Instructions Given the Loom URL: $ARGUMENTS Extract the Video ID Parse the Loom URL to extract the 32-character hex video ID. Supported URL formats: https://www.loom.com/share/ https://www.loom.com/embed/ https://www.loom.com/share/ ?sid= The video ID is the 32-character hex string after /share/ or /embed/. Fetch Video Metadata Use the WebFetch tool to POST to https://www.loom.com/graphql to get the video title and details. Use this curl command via Bash: Fetch the Transcript URLs Use curl via Bash to call the GraphQL API: Replace with the actual video ID extracted in step 1. The response contains: sourceurl — JSON transcript URL captionssourceurl — VTT (WebVTT) captions URL Download and Parse the Transcript Fetch both URLs returned from step 3 (if available): VTT captions (captionssourceurl): Download with curl -sL " ". This is a WebVTT file with timestamps and text.