Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yehyakin/hermes-skills/jianying-editor)<a href="https://agentmods.dev/skills/yehyakin/hermes-skills/jianying-editor"><img src="https://agentmods.dev/badge/skills/yehyakin/hermes-skills/jianying-editor/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yehyakin/hermes-skills/jianying-editor"><img src="https://agentmods.dev/badge/skills/yehyakin/hermes-skills/jianying-editor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00052 | $0.01568 |
| Opus 5 | $0.00026 | $0.00784 |
| Sonnet 5 | $0.00010 | $0.00314 |
| Haiku 4.5 | $0.00005 | $0.00157 |
Grade A, and why
jianying-editor scanned grade A with 1 finding 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 12d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
不能用 git clone(认证问题),用 GitHub API + curl 下载: How it starts
The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
剪映编辑器 Skill(Mac 版)
状态
⚠️ 草稿能生成,但存在素材导入 bug(2026-04-28 实测更新)
- 草稿 JSON 文件生成成功,路径正确,剪映 5.9 能识别
- 真正问题:skill 创建了时间线引用(
material_id),但没有把视频文件真正导入草稿素材库draft_materials数组是空的Resources/目录是空的- 结果:时间线上有片段,但剪映里看不到任何内容("幽灵引用")
- 草稿路径:
/Users/yehya/Movies/JianyingPro/User Data/Projects/com.lveditor.draft
剪映 5.9 真实草稿结构
草稿文件夹/
├── draft_meta_info.json ✅ JSON
├── draft_content.json ✅ JSON(时间线)
├── draft_info.json ✅ JSON
├── draft_cover.jpg ✅ 封面图
├── draft_settings/ ✅ 配置文件
├── Resources/ ✅ 素材二进制(视频/音频)
└── common_attachment/ ✅ 附件
草稿文件格式对比
| 文件 | skill 生成 | 真实剪映 5.9 | 状态 |
|---|---|---|---|
draft_info.json |
JSON ✅ | JSON ✅ | 兼容 |
draft_content.json |
JSON ✅ | JSON ✅ | 兼容 |
draft_meta_info.json |
JSON ✅ | JSON ✅ | 兼容 |
Resources/ |
空 ❌ | 有视频文件 ✅ | bug |
draft_materials |
空 ❌ | 有素材列表 ✅ | bug |
当前结论
skill 的 jy_wrapper.py 有素材导入缺陷 — 草稿框架完整,但视频文件从未被复制到草稿的 Resources/ 目录,也没有写入 draft_materials 素材库。需要深入研究 pyJianYingDraft 的 material 相关操作来修复此问题。
Mac 安装要点
1. 剪映 5.9 下载地址
夸克网盘:https://pan.quark.cn/s/81566e9c6e08 (6.0+ 弹窗太多,自动化脚本会失效)
2. Skill 安装(GitHub: luoluoluo22/jianying-editor-skill)
不能用 git clone(认证问题),用 GitHub API + curl 下载:
# 目录结构
~/.hermes/skills/jianying-editor/
├── SKILL.md
├── requirements.txt
├── scripts/
│ ├── jy_wrapper.py
│ ├── utils/ # 注意:必须有 skill_path.py, media_normalizer.py
│ ├── core/
│ └── vendor/
│ └── pyJianYingDraft/
│ ├── metadata/ # 注意:17个文件在 metadata/ 子目录下
│ │ ├── __init__.py
│ │ ├── effect_meta.py
│ │ ├── filter_meta.py
│ │ └── ...(共17个)
│ └── assets/
│ ├── draft_content_template.json
│ └── draft_meta_info.json
└── examples/
3. 必须修复的问题
问题1:Mac 路径未支持
- 文件:
scripts/utils/formatters.py - 问题:
get_default_drafts_root()只支持 Windows,不识别 Mac - 修复:添加 Darwin 分支检测
~/Movies/JianyingPro/User Data/Projects/com.lveditor.draft
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .gitignore 286 B
- CHANGELOG.md 743 B
- data/cloud_music_library.csv 256 KB
- docs/agent-playbook.md 2.2 KB
- docs/minimal-command-sop.md 1.7 KB
- examples/_bootstrap.py 1.9 KB runs code
- examples/all_elements_regen.py 2.4 KB runs code
- examples/auto_exposure_align_demo.py 1.5 KB runs code
- examples/cloud_video_music_tts_demo.py 2.0 KB runs code
- examples/compound_clip_demo.py 1.9 KB runs code
- examples/my_first_vlog.py 1.3 KB runs code
- examples/robust_auto_export.py 20 KB runs code
- examples/simple_clip_demo.py 1.3 KB runs code
- examples/video_transcribe_and_match.py 6.1 KB runs code
- examples/web_to_video_intro_demo.py 3.2 KB runs code
- pyproject.toml 262 B
- README.md 9.5 KB
- requirements.txt 191 B
- rules/audio-voice.md 1.9 KB
- rules/cli.md 1.3 KB
- rules/core.md 3.0 KB
- rules/effects.md 2.0 KB
- rules/generative.md 1.4 KB
- rules/keyframes.md 2.2 KB
- rules/media.md 3.1 KB
- rules/recording.md 1.7 KB
- rules/setup.md 1.7 KB
- rules/text.md 3.7 KB
- rules/web-vfx.md 2.4 KB
- scripts/core/__init__.py 1 B runs code
- scripts/core/media_ops.py 8.8 KB runs code
- scripts/core/mocking_ops.py 4.7 KB runs code
- scripts/core/project_base.py 8.1 KB runs code
- scripts/core/text_ops.py 7.4 KB runs code
- scripts/core/vfx_ops.py 2.5 KB runs code
- scripts/generate_draft.py 6.3 KB runs code
- scripts/jy_wrapper.py 2.5 KB runs code
- scripts/utils/__init__.py 1 B runs code
- scripts/utils/constants.py 1.2 KB runs code
- scripts/utils/env_setup.py 1.3 KB runs code
- scripts/utils/formatters.py 6.7 KB runs code
- scripts/utils/media_normalizer.py 2.0 KB runs code
- scripts/utils/skill_path.py 2.1 KB runs code
- scripts/vendor/pyJianYingDraft/__init__.py 9.3 KB runs code
- scripts/vendor/pyJianYingDraft/animation.py 5.1 KB runs code
- scripts/vendor/pyJianYingDraft/assets/__init__.py 1.1 KB runs code
- scripts/vendor/pyJianYingDraft/assets/draft_content_template.json 3.2 KB
- scripts/vendor/pyJianYingDraft/assets/draft_meta_info.json 1.3 KB
- scripts/vendor/pyJianYingDraft/audio_ops.py 14 B runs code
- scripts/vendor/pyJianYingDraft/audio_segment.py 8.5 KB runs code
- scripts/vendor/pyJianYingDraft/caption.py 14 B runs code
- scripts/vendor/pyJianYingDraft/data_util.py 14 B runs code
- scripts/vendor/pyJianYingDraft/draft_entity.py 14 B runs code
- scripts/vendor/pyJianYingDraft/draft_folder.py 5.9 KB runs code
- scripts/vendor/pyJianYingDraft/draft_ops.py 14 B runs code
- scripts/vendor/pyJianYingDraft/effect_segment.py 1.2 KB runs code
- scripts/vendor/pyJianYingDraft/effect.py 14 B runs code
- scripts/vendor/pyJianYingDraft/exceptions.py 679 B runs code
- scripts/vendor/pyJianYingDraft/filter.py 14 B runs code
- scripts/vendor/pyJianYingDraft/jianying_controller.py 9.9 KB runs code
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.
- 12d ago First seen · 158 lines · 52 tokens per session scan A 07463aaa9bc8
jianying-editor is a skill published in the GitHub repository yehyakin/hermes-skills (9 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 1,568 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.