Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/uzairayed/lc-editor/lc-editornpx skills add uzairayed/lc-editor --skill lc-editorgit clone --depth 1 https://github.com/uzairayed/lc-editorWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00818 |
| Opus 5 | $0.00000 | $0.00409 |
| Sonnet 5 | $0.00000 | $0.00164 |
| Haiku 4.5 | $0.00000 | $0.00082 |
Grade A, and why
lc-editor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
lc-editor
Use this skill when asked to cut 9:16 vertical reels from raw video clips. The lc-editor MCP server gives you tool calls to build a timeline; ffmpeg does the rendering.
When to use
- User asks you to edit video clips into a short reel
- User asks for 9:16 vertical video editing
- User mentions cutting, trimming, or assembling footage
Quick start
The MCP server is lc-editor. Call its tools to build and export your reel.
Workflow
-
Analyze footage first. Use
import_folderorimport_fileto bring in media, thenmedia_analyzeandshots_list/shots_rankto find the strongest shots. Look at keyframes withthumbnailorcontact_sheetbefore deciding what to cut. -
Ask about sound before touching the timeline. Sound is the owner's call, not yours. Ask: "Do you want music or natural audio only?" Do not assume either way.
- If music: call
project_set(allow_music=true), import the track,music_add,beat_analyze, showbeat_sync_preview, thenbeat_sync_applyonly after the user confirms. - If natural audio: proceed without music tools.
- If music: call
-
Match subjects to scene cards. When you look at keyframes or set clip durations/roles, consult
context/INDEX.mdand read only the matching scene cards. The process is incontext/HOW.md. -
Build the timeline. Use
clip_add, trim, split, reorder, motion, and transitions. An occasional two-up iscontext/scenes/pair.md. A reel that is mostly stacks iscontext/scenes/collage.md. Two ride POVs iscontext/scenes/ride-pair.md. Add layers or apply a template if needed. -
Run
review_reportbefore export. Fix every warning it returns. -
Show preview stills at each pass. Use
preview_stillsso the user can see progress.
Key constraints
- Canvas: 1080×1920, 30fps
- Captions: stroke-and-shadow text only, never a box
- Templates:
editorialandkarachi(apply expands to ordinary layers) - Music is opt-in only via
project_set(allow_music=true) - Engine rules in
specs/craft.mdare floors; scene-card judgment can raise them but never lower them
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 60 lines · 0 tokens per session scan A 667603983e26
lc-editor is a skill published in the GitHub repository uzairayed/lc-editor (0 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 818 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…