skills$openclaw/loom
mrgoodb1.2k

by mrgoodb

loom – OpenClaw Skill

loom is an OpenClaw Skills integration for data analytics workflows. Manage Loom video recordings - list, share, and get analytics via Loom API.

1.2k stars6.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameloom
descriptionManage Loom video recordings - list, share, and get analytics via Loom API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/loom
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/loom
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains loom in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
261 B
SKILL.md
1.2 KB
SKILL.md

name: loom description: Manage Loom video recordings - list, share, and get analytics via Loom API. metadata: {"clawdbot":{"emoji":"🎥","requires":{"env":["LOOM_API_KEY"]}}}

Loom

Video messaging platform.

Environment

export LOOM_API_KEY="xxxxxxxxxx"

List Videos

curl "https://api.loom.com/v1/videos" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Get Video Details

curl "https://api.loom.com/v1/videos/{video_id}" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Get Video Transcript

curl "https://api.loom.com/v1/videos/{video_id}/transcript" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Update Video

curl -X PATCH "https://api.loom.com/v1/videos/{video_id}" \
  -H "Authorization: Bearer $LOOM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title": "Updated Title", "privacy": "public"}'

Delete Video

curl -X DELETE "https://api.loom.com/v1/videos/{video_id}" \
  -H "Authorization: Bearer $LOOM_API_KEY"
curl "https://api.loom.com/v1/videos/{video_id}/insights" \
  -H "Authorization: Bearer $LOOM_API_KEY"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install loom?

Run openclaw add @mrgoodb/loom in your terminal. This installs loom into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/loom. Review commits and README documentation before installing.