1.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
| name | loom |
| description | Manage Loom video recordings - list, share, and get analytics via Loom API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/loom |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/loom |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
261 BSKILL.md
1.2 KBSKILL.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"
Get Analytics
curl "https://api.loom.com/v1/videos/{video_id}/insights" \
-H "Authorization: Bearer $LOOM_API_KEY"
Links
- Dashboard: https://www.loom.com/looms
- Docs: https://dev.loom.com
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.
