Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Training Lecture Recap

ASecurity

Turn a video file or transcript into a reader-friendly lecture recap structured into five fixed sections — Summary, Theme, Q&A, Tools, Call to Action — while strictly avoiding any reference-outline detail leakage.

20 stars
0 votes
0 copies
1 views
Added 9/19/2026
content-marketinggobashgitapi

Works with

claude codecliapimcp

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add peter-tu-zynkr/zynkr-skill-builder --skill training-lecture-recap --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Training Lecture Recap?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Training Lecture Recap
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/peter-tu-zynkr-training-lecture-recap/badge)](https://www.skillsdirectory.com/skills/peter-tu-zynkr-training-lecture-recap)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: training-lecture-recap
description: "Turn a video file or transcript into a reader-friendly lecture recap structured into five fixed sections — Summary, Theme, Q&A, Tools, Call to Action — while strictly avoiding any reference-outline detail leakage."
category: training
project: training-lecture-recap
platform: claude
status: Done
author: Peter Tu
sheetId: "4.08"
originalName: "處理影片回顧"
input: "A Fireflies meeting (id/URL/title — preferred, already transcribed), a video file, a video URL, or the verbatim transcript of a recorded lecture/livestream."
process: "Transcribe the video (if not already a transcript), remove filler words, map the cleaned content to the reference outline structure, then render the recap"
output: "A reader-friendly recap document with five sections: Summary, Theme, Q&A, Tools, Call to Action"
synergy: []
house-style: bound

---

# Lecture Recap Writer

```bash
npx skills add https://github.com/peter-tu-zynkr/zynkr-skill-builder --skill training-lecture-recap
```

Turn a recorded lecture, livestream, or workshop into a publishable five-section recap. Use this skill when you have a video or transcript and need a reader-friendly summary in the canonical Zynkr recap format. **Different from sibling skills**:
- `training-lecture-transcript` polishes the raw transcript itself (preserves every line).
- `training-process-video` produces four parallel workstreams (slides, social posts, etc.) — not a single doc.
- `training-lecture-recap` (this skill) produces **one** narrative recap doc with five fixed sections.

---

## Step 1 — Collect inputs

Ask the user for:
1. **Source** — one of:
   - **A Fireflies meeting (prefer this)** — a meeting id, an
     `app.fireflies.ai/view/<id>` URL, or just the title and roughly when it ran
     ("上週那場 Claude Code 講座"). Anything Fred sat in on is already transcribed,
     so this skips the whole transcription step below. Resolve with
     `mcp__fireflies__fireflies_search(query="keyword:\"Claude Code\" from:2026-09-01")`
     and confirm the row by title + date before fetching.
   - Video file (`.mp4`, `.mov`, `.m4a`, `.wav`)
   - Video URL (YouTube, Vimeo, etc.)
   - Transcript text (paste or file path)
2. **Lecture context** — speaker name, topic, target audience (1–2 sentences)
3. **Recap outline** (optional) — a reference structure or session outline if available

Store as `SOURCE`, `CONTEXT`, `OUTLINE_REF` (may be empty).

---

## Step 2 — Get a clean transcript

Branch by input type:

- **Fireflies meeting** → `mcp__fireflies__fireflies_get_transcript(transcriptId="<id>")`.
  Returns speaker-labelled, timestamped sentences already — no ASR pass needed, so
  go straight to the cleanup below. `mcp__fireflies__fireflies_get_summary` also
  gives keywords and action items, handy for the Q&A and Call-to-Action sections.
  ⚠️ Free plan = **50 API requests per day**, one per call — search once, fetch once.
  ⚠️ `audio_url` / `video_url` come back empty on the free plan; text only. If the
  recap genuinely needs the media, fall back to the Video file branch.
- **Already a transcript** → proceed to Step 3
- **Video file** → transcribe locally or via the user's preferred ASR tool (suggest `whisper` or `training-lecture-transcript` skill for the cleanup pass)
- **Video URL** → ask the user to download or provide the transcript; this skill does not fetch external media

Once you have raw transcript text:
1. Remove obvious filler words (嗯、啊、那個、就是, "um", "uh", "like")
2. Normalize speaker labels if present
3. Preserve direct quotes from the speaker — these become Q&A material

Store as `CLEAN_TRANSCRIPT`.

---

## Step 3 — Map content to the five sections

Walk through `CLEAN_TRANSCRIPT` and bucket content into the five canonical sections. Strict rule: **if a reference outline was provided in `OUTLINE_REF`, use it only to structure section order — never copy detail text from the outline**. Detail comes from the transcript only.

### Section structure

**1. Summary (摘要)** — 2–3 sentences capturing the lecture's central message. Reader-friendly, third-person.

**2. Theme (主題)** — The lecture's argument or framework. 3–5 bullets, each one main point with a one-sentence explanation drawn from the transcript.

**3. Q&A** — Either:
   - Actual audience Q&A from the recording, OR
   - Inferred Q&A: pull 3–5 questions a reader would likely ask, then answer them using direct quotes from the speaker.
   Format: `Q: ... / A: <quote or paraphrase from the lecture>`

**4. Tools (工具)** — Concrete tools, frameworks, books, or references the speaker mentioned. Bullet list with one-line context per item.

**5. Call to Action (行動呼籲)** — 1–2 sentences. What does the lecture invite the reader to do next? Pull from the speaker's actual closing remarks if present; otherwise infer the most natural reader action.

---

## Step 4 — Output

Render in zh-TW unless the lecture is in English (then English). Use this template:

```
# 講座回顧:<lecture title>

> Speaker: <name>  ·  Audience: <audience>

## 摘要 / Summary
<2–3 sentences>

## 主題 / Theme
- **<point 1>** — <explanation>
- **<point 2>** — <explanation>
- **<point 3>** — <explanation>

## Q&A
**Q:** <question>
**A:** <answer drawn from transcript>

(repeat 3–5 times)

## 工具 / Tools
- **<tool name>** — <one-line context>

## 行動呼籲 / Call to Action
<1–2 sentences>
```

---

## Step 5 — Quality checks before delivery

Before handing the recap to the user, verify:
- [ ] Summary is under 80 words
- [ ] Theme has 3–5 bullets, no overlap with Summary
- [ ] Q&A pulls from actual transcript content, not invented
- [ ] No detail copied verbatim from `OUTLINE_REF`
- [ ] All speaker quotes are accurate (paraphrase if you can't preserve verbatim)
- [ ] CTA is concrete and actionable, not generic

---

## Rules

- Never invent statements the speaker did not make
- Never copy reference outline text into the body — outline is for ordering only
- Always preserve the speaker's voice — if they're casual, the recap is casual; if formal, formal
- Filler-word removal is editorial — do not change meaning
- When uncertain about a fact mentioned in the lecture, mark with `[unclear in source]` rather than guessing

## House style

Writing style is **not owned by this file**. The house voice lives in two Google Docs under
`[@] 寫作指南` (`12DBdFz3SK22ie9im_ThFMI7IBRXsTZsV`), read at runtime:

- 《[2.0] Zynkr 通用風格指南 House Voice》 `10bOIQwRm9Pxwgct4hlwCwK_B4Pipai1HqBPZKzyRHSE` —
  the universal core, plus the addendum for this surface
- 《[3.2] 禁用詞清單 Forbidden Words》 `1N5sHLP4qzmmhpCGsi6KElxi1z0MFe4QZ0Q_35T10Uyg`

Read both before producing client- or reader-facing text, and scan the draft against 《[3.2]》
before handing it over. If Drive is unreachable, say so in the output rather than proceeding
unchecked. Never re-implement either list inside this file.

Attribution

peter-tu-zynkrpeter-tu-zynkr
View sourceMore from peter-tu-zynkr →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Postiz

Postiz is a tool to schedule social media and chat posts to 28+ channels X, LinkedIn, LinkedIn Page, Reddit, Instagram, Facebook Page, Threads, YouTube, Google My Business, TikTok, Pinterest, Dribbble, Discord, Slack, Kick, Twitch, Mastodon, Bluesky, Lemmy, Farcaster, Telegram, Nostr, VK, Medium, Dev.to, Hashnode, WordPress, ListMonk

21281 votes

Serp Analysis

SERP analysis techniques for intent classification, feature identification, and competitive intelligence. Use when analyzing search results for content strategy.

2831 votes

On Page Seo Auditor

This skill performs detailed on-page SEO audits to identify issues and optimization opportunities. It analyzes all on-page elements that affect search rankings and provides actionable recommendations.

1821 votes

Brand

Brand voice, visual identity, messaging frameworks, asset management, brand consistency. Activate for branded content, tone of voice, marketing assets, brand compliance, style guides.

1289240 votes

Release Announcement

Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.

805540 votes
View all in content-marketing →