openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Loom

Loom — manage video recordings, transcripts, and folders via Developer API

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 177 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:aiwithabidi/loom

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill appears to implement a Loom API CLI and mostly matches its description, but the runtime script reads a workspace .env file (and the WORKSPACE env var) that SKILL.md doesn't declare, which is a proportionality/scope mismatch worth noting before install.

目的

Name/description, commands in SKILL.md, and the included Python script all align: the tool calls the Loom Developer API endpoints and requires a LOOM_ACCESS_TOKEN.

说明范围

SKILL.md documents CLI operations against the Loom API only, but the script's get_env() will read a .env file under WORKSPACE (defaulting to ~/.openclaw/workspace/.env) to find LOOM_ACCESS_TOKEN. The README/metadata do not mention reading workspace files.

安装机制

No install spec; this is an instruction-only skill with a small standalone Python script that uses only the standard library — low install risk.

证书

Declared requirement is a single LOOM_ACCESS_TOKEN (primary credential), which is appropriate. However, the script also reads the WORKSPACE environment variable (if present) and the .env file in that workspace directory to retrieve the token. That file may contain unrelated secrets; reading it is not declared in SKILL.md and increases the chance of accidental exposure of other variables.

持久

No elevated privileges requested. always is false, the skill does not modify other skills or global agent config, and it does not request persistent installation.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Loom」。简介:Loom — manage video recordings, transcripts, and folders via Developer API。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/loom/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: loom
description: "Loom — manage video recordings, transcripts, and folders via Developer API"
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🎥", "requires": {"env": ["LOOM_ACCESS_TOKEN"]}, "primaryEnv": "LOOM_ACCESS_TOKEN", "homepage": "https://www.agxntsix.ai"}}
---

# 🎥 Loom

Loom — manage video recordings, transcripts, and folders via Developer API

## Requirements

| Variable | Required | Description |
|----------|----------|-------------|
| `LOOM_ACCESS_TOKEN` | ✅ | Developer API access token |

## Quick Start

```bash
# List videos
python3 {{baseDir}}/scripts/loom.py videos --per_page <value>

# Get video
python3 {{baseDir}}/scripts/loom.py video-get id <value>

# Update video
python3 {{baseDir}}/scripts/loom.py video-update id <value> --title <value> --description <value>

# Delete video
python3 {{baseDir}}/scripts/loom.py video-delete id <value>

# Get transcript
python3 {{baseDir}}/scripts/loom.py video-transcript id <value>

# List comments
python3 {{baseDir}}/scripts/loom.py video-comments id <value>

# List folders
python3 {{baseDir}}/scripts/loom.py folders

# Get folder
python3 {{baseDir}}/scripts/loom.py folder-get id <value>
```

## All Commands

| Command | Description |
|---------|-------------|
| `videos` | List videos |
| `video-get` | Get video |
| `video-update` | Update video |
| `video-delete` | Delete video |
| `video-transcript` | Get transcript |
| `video-comments` | List comments |
| `folders` | List folders |
| `folder-get` | Get folder |
| `folder-videos` | List folder videos |
| `user` | Get current user |
| `members` | List workspace members |

## Output Format

All commands output JSON by default. Add `--human` for readable formatted output.

```bash
python3 {{baseDir}}/scripts/loom.py <command> --human
```

## Script Reference

| Script | Description |
|--------|-------------|
| `{{baseDir}}/scripts/loom.py` | Main CLI — all commands in one tool |

## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.

📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)