@0xMulight: 用Codex+HyperFrames+Remotion结合一支约 75秒的中文UFO科普视频。 基于GIT上的公开仓库,讲解这个仓库如何把解密 UAP/UFO 文件整理成可读报。 这次我把它们分工成这样: HyperFrames:负责真正…
摘要
作者演示了如何利用Codex、HyperFrames和Remotion工具协作制作一支关于UFO解密文件的中文科普视频。同时介绍了GitHub上的一个Claude Code技能仓库,该仓库可自动化整理和分析公开的UAP/UFO政府解密文档。
查看缓存全文
缓存时间: 2026/05/09 16:12
用Codex+HyperFrames+Remotion结合一支约 75秒的中文UFO科普视频。 基于GIT上的公开仓库,讲解这个仓库如何把解密 UAP/UFO 文件整理成可读报。 这次我把它们分工成这样: HyperFrames:负责真正出片,用 index.html写画面、文字、转场、动画时间线,然后用 HyperFrames检查画面有没有溢出、对比度够不够,最后渲染成 MP4。你现在看到的成片就是 HyperFrames做出来的。 Remotion:负责视频结构参考,用 Remotion规划每一个镜头多久、怎么接转场、如果以后要转成 React/Remotion 项目应该怎么组织。当前项目里我也放了一个 Remotion参考骨架,但这次没有用Remotion来渲染最终视频。 感兴趣的同学可以看看这个UFO集合仓库: https://github.com/ckpxgfnksd-max/uap-release-analyzer…
ckpxgfnksd-max/uap-release-analyzer
Source: https://github.com/ckpxgfnksd-max/uap-release-analyzer
uap-release-analyzer
A Claude Code / Claude.ai skill that turns a folder of declassified UAP/UFO documents — war.gov “PURSUE” releases, FBI Vault tranches, NARA boxes, AARO publications — into a structured analytic report.
What it does
Run it against a release directory (e.g. ~/Documents/UFO/release_01/) and it produces:
inventory.csv— one row per file: agency (inferred from filename prefix), document type, page count, sizetext/*.txt— extracted text via pdfplumber, with empty files flagged for the (often majority) of files that are scanned with no text layeranalytics/top_terms.csv,terms_by_agency.csv— token frequenciesentities.json— locations, agencies, phenomena vocabulary, year clusters, names appearing in 5+ filesper_file_digest.csv— top terms / locations / redactions / 2-sentence summary per filecross_doc.json— redaction patterns, agency totals, scanned-vs-text split
REPORT.md— 11-section human-readable analytic writeup
The four scripts are idempotent and incremental — re-running on the same folder skips work that’s already done.
Installation
# Inside Claude Code (per-user skills directory)
git clone https://github.com/ckpxgfnksd-max/uap-release-analyzer.git \
~/.claude/skills/uap-release-analyzer
Or package via skill-creator:
python -m scripts.package_skill /path/to/uap-release-analyzer
# produces uap-release-analyzer.skill — install via Claude Code UI
Dependencies: pdfplumber, pypdf. Install via pip install pdfplumber pypdf.
Layout
uap-release-analyzer/
├── SKILL.md # frontmatter + workflow
├── scripts/
│ ├── inventory.py
│ ├── extract_text.py
│ ├── analyze.py
│ ├── build_report.py
│ └── run_all.py # convenience: run the four in order
├── references/
│ ├── agency_vocab.md # filename-prefix → agency rules
│ ├── foia_codes.md # FOIA exemptions and classification stamps
│ └── war_gov_quirks.md # how war.gov/UFO/ is structured + scraping notes
├── evals/evals.json # 4 test cases used to iterate the skill
├── ARTICLE.md # development notes (English)
├── ARTICLE_CN.md # 中文版开发笔记
└── LICENSE.txt
Usage
# One-shot: full pipeline
python scripts/run_all.py ~/Documents/UFO/release_01/
# Or step-by-step (inventory and extract are the slow parts; both are idempotent)
python scripts/inventory.py ~/Documents/UFO/release_01/
python scripts/extract_text.py ~/Documents/UFO/release_01/ # all files
python scripts/extract_text.py ~/Documents/UFO/release_01/ 0 25 # chunked
python scripts/analyze.py ~/Documents/UFO/release_01/
python scripts/build_report.py ~/Documents/UFO/release_01/
Example dataset
The May 2026 war.gov “PURSUE” release this skill was tuned against is mirrored at ckpxgfnksd-max/uap-release-01 (Git LFS, ~2.4 GB / 132 files / 4,157 PDF pages). Clone it as your release_01/ to reproduce the eval scoreboard:
git lfs install # one-time
git clone https://github.com/ckpxgfnksd-max/uap-release-01.git ~/Documents/UFO/release_01
python scripts/run_all.py ~/Documents/UFO/release_01
Or fetch only the buckets you care about (e.g., the text-bearing DOW mission reports):
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/ckpxgfnksd-max/uap-release-01.git ~/Documents/UFO/release_01
cd ~/Documents/UFO/release_01
git lfs pull --include "dow-*"
Video is not mirrored — link to https://www.war.gov/UFO/ for any video material.
Eval scoreboard (iteration-1)
| Eval | with skill | baseline | Δ |
|---|---|---|---|
| Full-tranche walkthrough | 100% | 60% | +40 |
| Single-file summary | 100% | 100% | 0 |
| Scanned-tranche honest caveats | 100% | 88% | +12 |
| Fresh-tranche bootstrap | 88% | 50% | +38 |
| Mean | 97% | 74% | +23 |
See ARTICLE.md for the build story and the bugs the eval surfaced.
Honest caveats
- Entity extraction is keyword-list + regex, not full NER. Year mentions ≠ incident dates.
- Scanned PDFs (no text layer) produce 0-char
.txtfiles by design — the analyzer treats them as “OCR needed” rather than running OCR (multi-hour). Run Tesseract as a follow-up if you need that content searchable. - The agency vocabulary is tuned to the May 2026 war.gov tranche. New tranches with new prefixes should be added to
references/agency_vocab.mdandscripts/inventory.py PREFIX_RULES.
License
MIT. See LICENSE.txt.
相似文章
@seekjourney: 挖到宝了,还有大量 codex 实战案例库!关键步骤都有截图。 https://codexguide.ai/recipes/ https://github.com/freestylefly/CodexGuide…
分享了一个包含16个Codex实战案例的案例库,覆盖PPT生成、MCP、浏览器自动化、知识库等功能,并提供截图和步骤指南。
@0xQiYan: 装完 Codex 不搞钱?难道等着吃灰? 很多人装完 Codex,只会让它改代码、写脚本。 但我觉得更有想象力的玩法,是让它参与整条视频制作流程。 给 Codex 装上这 6 个 GitHub 上的视频 Skills,它就不只是写代码的工…
介绍如何为 Codex 安装6个 GitHub 视频技能,用于脚本、分镜、剪辑、渲染等完整视频制作流程,并推荐搭配方案。
@FuSheng_0306: 又试了Codex的另一个插件:Remotion Codex+Remotion,马上做了一个15秒科技感视频 做完最大的感受就是,Remotion比Hyperframes更能精确到帧画面的调整,但是Hyperframes听懂大白话的能力更强…
A user compared two Codex plugins for video creation, noting Remotion offers more precise frame-level control while Hyperframes better understands natural language instructions.
@Crypto_QianXun: Codex 这两个 GitHub 项目一接上,资料归档直接起飞。 一个管微信,一个管飞书: 微信本地资料库: https://github.com/mcncarl/yichen-skills/tree/main/wechat-local-…
介绍了一个名为 yichen-skills 的 GitHub 仓库,包含多个技能工具,能连接 Codex 与微信、飞书等平台,实现资料归档和工作流自动化。
@Easycompany333: Open AI 曾官方点名的Codex 视频 值得收藏,不到 2 小时,把 Codex + GPT-5.5 这套组合讲得很实: - 技能怎么配。 - 插件怎么用。 - 自动化工作流怎么搭。 - 多任务怎么并行跑。 - 以及最关键的,怎么把…
推荐一个OpenAI官方点名的Codex视频教程,详细讲解如何配置技能、使用插件、搭建自动化工作流,将Codex变成持续工作的开发系统。