Agent skill
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/loom
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83c\udfa5", "requires": { "env": [ "LOOM_API_KEY" ] } }
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?