一键导入
meeting-video-grounding
Convert a meeting video into an audio-first transcript bundle, then use meeting-grounding to produce structured meeting grounding outputs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert a meeting video into an audio-first transcript bundle, then use meeting-grounding to produce structured meeting grounding outputs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Unpack a ZIP archive, inventory its files, run the corresponding child grounding skill for each supported child file, and then write a real archive-level grounded.md.
Convert a raw document into a structured grounding note for downstream research and summarization.
Run focused literature and web research from a grounded note. Use when a grounded note already exists and you want targeted research results, opened-link evidence, deeper per-paper analysis materials, optional downloaded literature, and a two-stage literature output (`lit_initial.md` then refined `lit.md`).
Review a research report draft with a structured scoring rubric, run a bounded repair loop when needed, and produce the final deliverable report.
Create a rich, evidence-preserving research report draft from a grounded note and its follow-up literature result. This is the main report-writing stage of the middle pipeline, not a compression memo.
Use the input path to select the correct downstream grounding pipeline and continue execution until the selected grounding workflow is completed.
| name | meeting-video-grounding |
| description | Convert a meeting video into an audio-first transcript bundle, then use meeting-grounding to produce structured meeting grounding outputs. |
Convert a meeting video into structured meeting grounding outputs by:
audio_structuring skill to produce meeting_transcript.txtmeeting-grounding skill to turn that transcript into meeting grounding outputsThis skill is for meeting videos where the primary information comes from speech. It is intentionally audio-first. It does not attempt full visual understanding of the video.
Use this skill when:
Do not use this skill when:
A single meeting video file.
Typical examples:
.mp4.mkv.mov.webmOptional input:
transcription_language: language code such as en or zhFor each input video, create one bundle directory:
data/grounded_notes/<ground_id>/
Inside that bundle, the expected outputs are always:
<bundle_dir>/
├─ extracted.md
├─ extracted_meta.json
├─ grounded.md
├─ audio/
│ └─ meeting_audio.wav
└─ transcript/
└─ meeting_transcript.txt
If the meeting contains multiple independent topics that should be researched separately downstream, the bundle may also contain:
<bundle_dir>/
├─ topic_manifest.json
└─ child_outputs/
├─ topic_01/
│ └─ grounded.md
├─ topic_02/
│ └─ grounded.md
└─ ...
scripts/run.sh is responsible for:
audio_structuring skillaudio/meeting_audio.wavtranscript/meeting_transcript.txtextracted.mdextracted_meta.jsonmeeting-grounding skillgrounded.mdtopic_manifest.jsonchild_outputs/topic_xx/grounded.mdgrounded.md must be a real grounding note.
It must not remain a placeholder scaffold.
scripts/run.sh entrypoint for this skill.extracted.mdextracted_meta.jsonaudio/meeting_audio.wavtranscript/meeting_transcript.txttranscript/meeting_transcript.txt as the primary grounding evidence.meeting-grounding skill on that transcript.grounded.md inside the same bundle directory.topic_manifest.jsonchild_outputs/topic_xx/grounded.mdThis skill currently treats meeting videos as audio-first inputs.
That means:
The final grounded.md must follow the existing meeting-grounding schema exactly.
If topic children are created, each child grounded note must also follow the same meeting-grounding schema.
Do not invent a new schema here.
audio_structuring skill for transcription.meeting-grounding skill for transcript grounding.meeting_transcript.txt is not produced, fail clearly./meeting-video-grounding