cyxj-subfix — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cyxj-subfix (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
$SKILL_DIR 指本 SKILL.md 所在目录的绝对路径。运行脚本前先确定:
SKILL_DIR="$(dirname "$(readlink -f "$0")")" # 或直接用 SKILL.md 所在目录的绝对路径三层分离:Python 做结构处理,Gemini 做语义初修,Opus 审查把关。
词典定位:词典是"已知陷阱"参考,不是主力。同一个词的错误变体太多,词典永远无法穷举。真正的修正靠 Gemini 的语义理解 + 视频主题上下文。Opus 审查后发现的遗漏会反馈到词典,让系统越来越准。
/字幕修正 ~/Desktop/Timeline1.srt # 完整流程
/字幕修正 ~/Desktop/Timeline1.srt --topic "Claude Code教程" # 指定主题提高修正准确度
/字幕修正 ~/Desktop/Timeline1.srt --no-regroup # 跳过合并拆分
/字幕修正 ~/Desktop/Timeline1.srt --premium # Phase 2a 用高端 Gemini 模型
/字幕修正 --add "错误词" "正确词" # 添加词典条目<steps>
.bak 备份文件 python3 "$SKILL_DIR/srt_cleaner.py" "<input.srt>" --stats如果用户指定 --no-regroup,追加该参数跳过合并拆分。
--topic,以此为语境参考;否则从字幕内容推断主题,向用户确认 python3 "$SKILL_DIR/srt_corrector.py" "<_cleaned.srt>" --topic "主题"如果用户指定 --premium,追加该参数使用高端模型。
_gemini_fixed.srt:Gemini 修正后的完整 SRT_changes.json:修改清单(原文→修正,带原因)_fixed.srtdictionary.json 的 feedback.gemini_missed 字段corrections 中Phase 2b 完成后,运行:
python3 "$SKILL_DIR/srt_cleaner.py" "<_fixed.srt>" --export-txt生成 _script.txt(UTF-8 纯文本),供 DaVinci Resolve IntelliScript 使用。
向用户说明最终输出文件:
_fixed.srt — 最终修正后的字幕文件_script.txt — 纯文本逐字稿(给 IntelliScript 用)中间文件留在同目录供排查:
原文件.bak — 原始备份_cleaned.srt + _cleaned_stats.json — Phase 1 中间产物_gemini_fixed.srt + _changes.json — Phase 2a 中间产物提醒检查 splits_needing_review 和 over_soft_limit 条目。
</steps>
可以做:
绝不可以做:
| 用途 | 模型 ID | 价格 | 说明 |
|---|---|---|---|
| 日常初修 | gemini-3.5-flash | $1.50/$9 per M | 默认(3.5 系列目前仅 flash 一档) |
| 高端初修 | gemini-3.5-flash | $1.50/$9 per M | 与日常同款,--premium 仅保留参数兼容 |
| 审查 | Opus 4.6(对话内) | $15/$75 per M | 只审查 diff |
注意:gemini-3.1-flash-image-preview 和 gemini-3-pro-image-preview 是图片生成专用模型,不用于文本修正。
添加新的错误映射:
/字幕修正 --add "错误词" "正确词"词典结构为"正确词 → 已知错误变体列表",添加时会自动归类到对应的正确词下。
词典路径:$SKILL_DIR/dictionary.json
dictionary.json 的 feedback.gemini_missed 字段记录 Gemini 漏掉但 Opus 审查时发现的错误:
{"original": "错误文字", "correct": "正确文字", "context": "错误类型描述", "date": "2026-03-21"}这些记录用于:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.