技能详情(站内镜像,无评论)
作者:Anil Chandra Naidu Matcha @anil-matcha
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 102 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:anil-matcha/muapi-edit
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's scripts generally match its stated media-editing purpose, but the package metadata omits required credentials and binaries and the scripts reference missing helper commands, which indicates packaging incoherence and sloppy / surprising behavior you should review before installing.
目的
The skill advertises muapi.ai image/video editing and the scripts call https://api.muapi.ai, which is consistent. However the registry metadata declares no required env vars or binaries while SKILL.md and the scripts require MUAPI_KEY and tools (curl, jq, python3) — a clear mismatch. edit-image.sh also expects an external 'muapi' CLI and calls ../media/upload.sh and check-result.sh (not present in the bundle), so the shipped files + metadata a…
说明范围
The runtime scripts do what the README says: upload files and POST to muapi.ai endpoints for edits, upscales, face-swap, lipsync, etc. They will auto-upload local files when you pass --file and will save a provided API key into a .env file in the current directory. They do not attempt to read unrelated system files or other credentials, but they do transmit user media (including face images/videos) to an external API — this is expected for the…
安装机制
There is no install spec (instruction-only with shell scripts). No downloads or remote installers are performed by the skill itself. The scripts make network requests to api.muapi.ai (expected), which is the primary runtime network activity.
证书
The scripts require MUAPI_KEY (used in x-api-key header) but the registry metadata did not declare any required env vars or primary credential. The skill writes MUAPI_KEY into a .env file when run with --add-key, which is persistent on disk and may be surprising. Aside from MUAPI_KEY and typical CLI tools, no unrelated secrets are requested.
持久
always:false (normal). The scripts persist the API key to a local .env file in the current working directory — a modest persistence and privacy consideration but not a global privilege escalation. The skill does not modify other skills or system-wide configuration.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「muapi-media-editing」。简介:Edit and enhance images and videos with AI via muapi.ai — prompt-based editing,…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/anil-matcha/muapi-edit/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
slug: muapi-edit
name: muapi-media-editing
version: "0.1.0"
description: Edit and enhance images and videos with AI via muapi.ai — prompt-based editing, upscaling, background removal, face swap, lipsync, video effects, and more
acceptLicenseTerms: true
---
# ✏️ MuAPI Media Editing & Enhancement
**Advanced editing and enhancement operations for images and videos.**
Apply AI-powered edits, enhancements, and effects to existing media. Supports prompt-based editing with Flux Kontext, GPT-4o, and Midjourney, plus one-click operations like upscaling and background removal.
## Available Scripts
| Script | Description |
| :--- | :--- |
| `edit-image.sh` | Prompt-based image editing (Flux Kontext, GPT-4o, Midjourney, Qwen, and more) |
| `enhance-image.sh` | One-click operations: upscale, background removal, face swap, colorize, Ghibli style, product shots |
| `lipsync.sh` | Sync video lip movement to audio (Sync Labs, LatentSync, Creatify, Veed) |
| `video-effects.sh` | Video/image effects: Wan AI, face swap, dance, dress change, Luma modify/reframe |
## Quick Start
```bash
# Edit an image with a prompt
bash edit-image.sh --image-url "https://..." --prompt "add sunglasses" --model flux-kontext-pro
# Upscale an image
bash enhance-image.sh --op upscale --image-url "https://..."
# Remove background
bash enhance-image.sh --op background-remove --image-url "https://..."
# Lipsync a video
bash lipsync.sh --video-url "https://..." --audio-url "https://..." --model sync
# Apply dance effect
bash video-effects.sh --op dance --image-url "https://..." --audio-url "https://..."
```
## Common Flags
All scripts support: `--async`, `--json`, `--timeout N`, `--help`
## Requirements
- `MUAPI_KEY` environment variable (set via `core/platform/setup.sh`)
- `curl`, `jq`, `python3`