mecene
1
总安装量
1
周安装量
#52286
全站排名
安装命令
npx skills add https://github.com/mecene-studio/skills --skill mecene
Agent 安装分布
opencode
1
Skill 文档
Mecene.ai Agent Skills
Mecene.ai transforms videos into a queryable knowledge base called “Video-as-Code”. This skill teaches you how to read and edit videos through the Mecene API.
What is Mecene?
Mecene is a video clip editing SaaS that:
- Analyzes videos to extract transcripts, speakers, scenes, and visual data
- Stores this as structured data (Video-as-Code format)
- Allows you to edit videos by manipulating timeline overlays
- Renders final clips with captions, cuts, and visual effects
Capabilities
As an AI agent, you can:
- List videos – See all videos in the user’s account
- Read video data – Access transcripts, scenes, speakers, and the TOON script
- Read clips – See clip timeline with all overlays
- Edit overlays – Modify, create, or delete timeline elements
Authentication
See rules/authentication.md for how to discover and use the API token.
API Endpoints
All endpoints require Authorization: Bearer <token> header.
Video & Clip Endpoints
| Endpoint | Method | Description |
|---|---|---|
/api/videos |
GET | List all videos |
/api/videos/:id |
GET | Get video with Video-as-Code data |
/api/clips/:id |
GET | Get clip with all overlays |
/api/overlays/:clip_id |
GET | Get all overlays for a clip |
Single Overlay Endpoints (Recommended)
| Endpoint | Method | Description |
|---|---|---|
/api/overlay/:overlay_id |
GET | Get single overlay |
/api/overlay/:overlay_id |
PATCH | Update single overlay |
/api/overlay/:overlay_id |
DELETE | Delete single overlay |
/api/clips/:clip_id/overlays |
POST | Create new overlay |
Batch Operations (Advanced)
| Endpoint | Method | Description |
|---|---|---|
/api/overlays/:clip_id |
PATCH | Batch update/create/delete overlays |
Quick Start
- Check for token (see
rules/authentication.md) - List videos:
GET /api/videos - Get video details with transcript:
GET /api/videos/:id - Get clip with overlays:
GET /api/clips/:id - Edit single overlay:
PATCH /api/overlay/:overlay_id
Rules
rules/authentication.md– Token discovery and usagerules/video-as-code.md– Understanding the TOON formatrules/list-videos.md– How to list videosrules/get-video-enhanced.md– How to get video datarules/get-clip.md– How to get clip with overlaysrules/get-overlays.md– How to get overlays onlyrules/edit-overlays.md– How to modify overlaysrules/overlay-types.md– Overlay type schemas