blitzreels-video-editing▌
blitzreels/agent-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Edit videos via the BlitzReels API: upload media, transcribe, edit timeline, apply captions, add overlays and backgrounds, then export.
BlitzReels Video Editing
Edit videos via the BlitzReels API: upload media, transcribe, edit timeline, apply captions, add overlays and backgrounds, then export.
If the task is specifically long-form to shorts, podcast-to-shorts, suggestion-backed clipping, or public automatic-layout reframe planning, prefer the blitzreels-clipping skill first and come back here for lower-level timeline work.
Important: project preview and visual QA endpoints now exist. Use them when an agent needs to verify framing, caption placement, or layout visually before export.
Quick Start
# Upload a video from URL
bash scripts/editor.sh upload-url PROJECT_ID "https://example.com/video.mp4"
# Add to timeline and transcribe
bash scripts/editor.sh add-media PROJECT_ID MEDIA_ID
bash scripts/editor.sh transcribe PROJECT_ID MEDIA_ID
# Trim, caption, export
bash scripts/editor.sh trim PROJECT_ID ITEM_ID 1.0 -2.0
bash scripts/editor.sh captions PROJECT_ID viral-center
bash scripts/editor.sh export PROJECT_ID --resolution 1080p
Primary Workflow
- Create project —
POST /projects {"name":"...", "aspect_ratio":"9:16"} - Upload media —
editor.sh upload-url(URL import) or 2-step presigned upload - Add to timeline —
editor.sh add-mediaplaces media on the timeline - Transcribe —
editor.sh transcribegenerates word-level captions - Get context —
editor.sh contextto see timeline state - Edit timeline — trim, split, delete, reorder, auto-remove silences
- Apply captions —
editor.sh captions <presetId>for styled subtitles - Add overlays — text overlays, motion code, motion graphics
- Add background — fill layers (gradients, cinematic, patterns)
- Export —
editor.sh exportrenders final video with download URL
Scripts
scripts/editor.sh
Subcommand wrapper for common editing operations.
| Command | Usage | Description |
|---|---|---|
upload-url |
<projectId> <url> [name] |
Upload media from URL |
transcribe |
<projectId> <mediaId> |
Transcribe + poll until done |
context |
<projectId> [mode] |
Get project context (default: timeline) |
timeline-at |
<projectId> <seconds> |
Get items at timestamp |
trim |
<projectId> <itemId> <startDelta> <endDelta> |
Trim item edges |
split |
<projectId> <itemId> <atSeconds> |
Split item at time |
delete-item |
<projectId> <itemId> |
Delete timeline item |
add-media |
<projectId> <mediaId> [startSec] |
Add media to timeline |
add-broll |
<projectId> <JSON> |
Add B-roll clip |
captions |
<projectId> <presetId> |
Apply caption preset |
export |
<projectId> [--resolution R] |
Export + poll + download URL |
Run bash scripts/editor.sh --help for full usage.
scripts/blitzreels.sh
Generic API helper for direct endpoint calls. Use for overlays, effects, and advanced operations where editor.sh doesn't have a shortcut.
bash scripts/blitzreels.sh METHOD /path [JSON_BODY]
Environment Variables
| Variable | Required | Description |
|---|---|---|
BLITZREELS_API_KEY |
Yes | API key (br_live_...) |
BLITZREELS_API_BASE_URL |
No | Override base URL (default: https://www.blitzreels.com/api/v1) |
BLITZREELS_ALLOW_EXPENSIVE |
No | Set to 1 for export calls via blitzreels.sh |
API Endpoint Index
Projects
| Method | Path | Description |
|---|---|---|
| POST | /projects |
Create project |
| GET | /projects/{id} |
Get project details |
| PATCH | /projects/{id} |
Update project settings |
| DELETE | /projects/{id} |
Delete project |
| GET | /projects |
List projects |
Media
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/media |
Import media from URL |
| POST | /projects/{id}/upload/presigned |
Get presigned upload URL |
| POST | /projects/{id}/upload/finalize |
Finalize presigned upload |
Transcription
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/transcribe |
Start transcription job |
| GET | /jobs/{jobId} |
Poll job status |
| GET | /projects/{id}/context?mode=transcript |
Get transcript |
| POST | /projects/{id}/captions/regenerate |
Re-transcribe media |
Captions
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/captions |
Apply caption preset |
| GET | /projects/{id}/captions/style |
Get current style |
| PATCH | /projects/{id}/captions/style |
Update style settings |
| GET | /projects/{id}/captions/presets |
List presets by category |
| PATCH | /projects/{id}/captions/{captionId} |
Update caption words/timing |
| DELETE | /projects/{id}/captions/{captionId} |
Delete caption |
| POST | /projects/{id}/captions/words/emphasis |
Emphasize specific words |
Timeline Editing
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/timeline/media |
Add media to timeline |
| POST | /projects/{id}/timeline/trim |
Trim item by deltas |
| POST | /projects/{id}/timeline/split |
Split item at timestamp |
| DELETE | /projects/{id}/timeline/items/{itemId} |
Delete item |
| PATCH | /projects/{id}/timeline/items/{itemId} |
Update item |
| POST | /projects/{id}/timeline/items/batch-update |
Batch update items |
| PATCH | /projects/{id}/timeline/items/{itemId}/volume |
Set volume |
| PATCH | /projects/{id}/timeline/items/{itemId}/transform |
Set transform |
| POST | /projects/{id}/timeline/pack-clips |
Remove gaps |
| POST | /projects/{id}/timeline/silence-detection |
Detect silences |
| POST | /projects/{id}/timeline/mistake-detection |
AI mistake detection |
| POST | /projects/{id}/timeline/caption-recut |
Caption-based recut plan |
Overlays — Text, Motion Code, Motion Graphics
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/text-overlays |
Add text overlay |
| PATCH | /projects/{id}/text-overlays/{oid} |
Update text overlay |
| DELETE | /projects/{id}/text-overlays/{oid} |
Remove text overlay |
| POST | /projects/{id}/motion-code |
Add animated code block |
| PATCH | /projects/{id}/motion-code/{cid} |
Update code block |
| POST | /projects/{id}/motion-graphics |
Add motion graphic |
| PATCH | /projects/{id}/motion-graphics/{gid} |
Update motion graphic |
Backgrounds
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/fill-layers |
Add fill layer |
| PATCH | /projects/{id}/fill-layers/{lid} |
Update fill layer |
Context & State
| Method | Path | Description |
|---|---|---|
| GET | /projects/{id}/context?mode=... |
Get project context |
| GET | /projects/{id}/timeline/at?time_seconds=X |
Items at timestamp |
| POST | /projects/{id}/preview-frame |
Render one still preview |
| POST | /projects/{id}/preview-frames |
Render multiple still previews |
| POST | /projects/{id}/visual-analysis |
Run structured frame QA |
| GET | /projects/{id}/visual-debug |
Get machine-readable layout geometry |
| POST | /projects/{id}/timeline/undo |
Undo last action |
Media View Repair
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/timeline/media-views/{timelineItemId} |
Upsert source-view crop/canvas state for one item |
| POST | /projects/{id}/timeline/media-views/duplicate |
Duplicate a linked source view to another item |
Clipping / Reframe Preview
| Method | Path | Description |
|---|---|---|
| POST | /workspace/media/assets/{assetId}/reframe-plan/preview |
Generate a reframe plan plus preview stills before apply |
Export & Jobs
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/export |
Start export (expensive) |
| GET | /exports/{exportId} |
Export status + download URL |
| GET | /projects/{id}/exports |
Export history |
| DELETE | /projects/{id}/exports |
Delete all exports |
| GET | /jobs/{jobId} |
Generic job polling |
Effects & Keyframes
| Method | Path | Description |
|---|---|---|
| POST | /projects/{id}/timeline/effects/zoom |
Add zoom effect |
| POST | /projects/{id}/timeline/effects/mask |
Add mask effect |
| POST | /projects/{id}/timeline/effects/color-grade |
Add color grade |
| POST | /projects/{id}/timeline/items/{itemId}/keyframes |
Create keyframe |
Context Modes
Use ?mode= to control what data the context endpoint returns:
| Mode | Returns |
|---|---|
summary |
Project metadata, duration, media count |
assets |
All media assets with metadata |
timeline |
Full timeline with items, layers, timing |
transcript |
Word-level transcript from transcription |
full |
Everything combined |
Default: timeline
bash scripts/editor.sh context PROJECT_ID timeline
bash scripts/editor.sh context PROJECT_ID full
Upload Modes
URL Import (Simpler)
bash scripts/editor.sh upload-url PROJECT_ID "https://example.com/video.mp4"
Presigned 2-Step (For Local Files)
# Step 1: Get presigned URL
PRESIGNED=$(bash scripts/blitzreels.sh POST /projects/PROJECT_ID/upload/presigned \
'{"fileName":"video.mp4","contentType":"video/mp4"}')
# Step 2: Upload to presigned URL
curl -X PUT "$(echo $PRESIGNED | jq -r '.url')" \
-H "Content-Type: video/mp4" \
--data-binary @video.mp4
# Step 3: Finalize
bash scripts/blitzreels.sh POST /projects/PROJECT_ID/upload/finalize \
"{\"storageKey\":\"$(echo $PRESIGNED | jq -r '.key')\"}"
Quick Reference
- Caption presets: 30+ presets across 6 categories — see
references/caption-styles.md - Active word animations: highlight, scale, glow, lift, bounce, punch, slam, elastic, shake, none
- Motion code themes: github-dark, one-dark, dracula, nord, monokai, tokyo-night
- Fill layer presets: 38+ across 7 categories — see
references/fill-layers.md - Timeline layer order: caption(0) → effect(1) → image(2) → video(3) → audio(4) → background(5)
References
references/clipping.md— Long-form to short workflow, podcast QA loop, preview/repair endpointsreferences/caption-styles.md— All 30+ presets, CaptionStyleSettings schema, animationsreferences/overlays.md— Text overlays, motion code, motion graphics schemasreferences/fill-layers.md— 38+ background presets, FillLayerSettings schemareferences/timeline-ops.md— Timeline endpoints, AI features, keyframes, effectsreferences/export-settings.md— Export params, codecs, polling patternexamples/edit-uploaded-video.md— Full upload→edit→export walkthroughexamples/enhance-with-overlays.md— Adding graphics to existing project
Safety & Notes
- Use
https://www.blitzreels.com/api/v1as base URL (avoid redirect from non-www) - Export and B-roll generation are expensive — require
BLITZREELS_ALLOW_EXPENSIVE=1 editor.sh exportsets this automatically;blitzreels.shrequires explicit opt-in- Download URLs are temporary (24h TTL)
- Full OpenAPI spec:
https://www.blitzreels.com/api/openapi.json
Rate Limits
| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 10 | 100 |
| Lite | 30 | 1,000 |
| Creator | 60 | 5,000 |
| Agency | 120 | 20,000 |
How to use blitzreels-video-editing on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add blitzreels-video-editing
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches blitzreels-video-editing from GitHub repository blitzreels/agent-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate blitzreels-video-editing. Access the skill through slash commands (e.g., /blitzreels-video-editing) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★48 reviews- ★★★★★Arya Gill· Dec 20, 2024
blitzreels-video-editing has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Daniel Martinez· Dec 12, 2024
blitzreels-video-editing fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Arya Rao· Nov 11, 2024
Solid pick for teams standardizing on skills: blitzreels-video-editing is focused, and the summary matches what you get after install.
- ★★★★★Chen Smith· Nov 3, 2024
blitzreels-video-editing is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Anaya Srinivasan· Oct 22, 2024
Solid pick for teams standardizing on skills: blitzreels-video-editing is focused, and the summary matches what you get after install.
- ★★★★★Amina Sharma· Oct 2, 2024
blitzreels-video-editing is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sakshi Patil· Sep 21, 2024
Solid pick for teams standardizing on skills: blitzreels-video-editing is focused, and the summary matches what you get after install.
- ★★★★★Aanya Agarwal· Sep 17, 2024
Solid pick for teams standardizing on skills: blitzreels-video-editing is focused, and the summary matches what you get after install.
- ★★★★★Isabella Nasser· Sep 13, 2024
blitzreels-video-editing reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Daniel Sethi· Sep 13, 2024
blitzreels-video-editing is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 48