learning-notes-automation

learning-notes-automation is a skill for Claude Code, Codex from chubbyguan/chubbyskills. It costs 58 tokens per session (1,843 once invoked), scanned A, original, MIT.

A workflow for turning videos, podcasts, and articles into structured learning notes. It extracts key ideas and creates flashcards that can be imported into Anki, a spaced-repetition study app.

In plain words
What is it for?
Use it with YouTube, Bilibili, podcasts, Douyin videos, and WeChat articles. It produces Markdown notes, related knowledge, and Anki-compatible CSV flashcards.
Why use it?
It removes the manual work of transcribing content, finding the important points, and writing review questions. The result turns passive watching or listening into material you can actively practise.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is python3 ../youtube-transcribe/scripts/transcribe.py "https://youtube.com/watch?v=xxx" -o ./.

Good fit Use it with YouTube, Bilibili, podcasts, Douyin videos, and WeChat articles. It produces Markdown notes, related knowledge, and Anki-compatible CSV flashcards.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/chubbyguan/chubbyskills
agentmods
npx agentmods add skills/chubbyguan/chubbyskills/learning-notes-automation

Made for: Claude Code, Codex.

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.

agentmods badge for learning-notes-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/chubbyguan/chubbyskills/learning-notes-automation.svg)](https://agentmods.dev/skills/chubbyguan/chubbyskills/learning-notes-automation)
Your own site
<a href="https://agentmods.dev/skills/chubbyguan/chubbyskills/learning-notes-automation"><img src="https://agentmods.dev/badge/skills/chubbyguan/chubbyskills/learning-notes-automation.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,843 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00058 $0.01843
Opus 5 $0.00029 $0.00922
Sonnet 5 $0.00012 $0.00369
Haiku 4.5 $0.00006 $0.00184

Measured 8d ago against content hash 6a4ac496c461, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

learning-notes-automation scanned grade A with 0 findings 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/make_notes.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

learning-notes-automation/SKILL.md · 260 lines

How it starts

The opening of the file, as written. The whole thing — 260 lines — stays where its author put it; the contents beside it link to each section on GitHub.

学习笔记自动化

核心价值

被动学习 → 主动记忆:看视频 ≠ 学会,生成闪卡 = 记住

输入源

输入类型 工具 输出格式
YouTube 视频 youtube-transcribe 转录文本
B站视频 bilibili-transcribe 转录文本
播客 podcast-transcribe 转录文本
抖音 douyin-transcribe 转录文本
公众号文章 wechat-article-ingest Markdown

工作流程

Phase 1: 内容转录

复用本仓库的转录 skill(相对路径,按需替换为你的安装位置):

# YouTube(自动翻译)
python3 ../youtube-transcribe/scripts/transcribe.py "https://youtube.com/watch?v=xxx" -o ./

# B站
python3 ../bilibili-transcribe/scripts/transcribe.py "https://bilibili.com/video/xxx" ./

# 播客
python3 ../podcast-transcribe/scripts/transcribe.py "https://xiaoyuzhoufm.com/episode/xxx" ./

输出是一份转录 Markdown,作为 Phase 2 的输入。

Phase 2 + 3: 知识点提取 + 闪卡生成(一步到位)

把转录稿交给 make_notes.py,自动提取知识点并生成 Anki 兼容闪卡:

export DEEPSEEK_API_KEY=***
python3 scripts/make_notes.py 转录稿.md --output ./notes --max-cards 20
# 产出:<标题>-学习笔记.md(核心要点+闪卡+关联知识) 和 <标题>-闪卡.csv(直接导入 Anki)

脚本用 DeepSeek 输出结构化 JSON,再渲染成下面约定的笔记与闪卡格式。 下面是各维度的设计说明,供理解和手动微调时参考。

提取维度

  1. 核心概念(必须掌握)

    • 定义
    • 原理
    • 应用场景
  2. 关键事实(需要记忆)

    • 数据
    • 时间线
    • 人物/公司
  3. 方法论(可以复用)

    • 步骤
    • 框架
    • 最佳实践
  4. 金句/洞察(值得引用)

    • 精辟总结
    • 独特观点

Phase 3: 闪卡生成

闪卡格式(Anki 兼容):

## 闪卡类型

### 1. 概念卡(Cloze Deletion)
Q: {{c1::Transformer}} 架构的核心机制是 {{c2::自注意力(Self-Attention)}}
A: Transformer, 自注意力(Self-Attention)

### 2. 问答卡(Basic)
Q: 什么是 RAG?
A: Retrieval-Augmented Generation,检索增强生成。通过检索外部知识库来增强 LLM 的回答能力,解决幻觉问题。

### 3. 对比卡(Comparison)
Q: Fine-tuning vs RAG 的区别?
A: 
| 维度 | Fine-tuning | RAG |
|------|-------------|-----|
| 成本 | 高(需要训练) | 低(只检索) |
| 更新 | 需要重新训练 | 实时更新 |
| 适用 | 特定任务 | 知识问答 |

### 4. 步骤卡(Process)
Q: 如何构建一个 RAG 系统?
A: 
1. 文档分块(Chunking)
2. 向量化(Embedding)
3. 存入向量数据库
4. 检索相关片段
5. 拼接 Prompt
6. LLM 生成回答

Phase 4: 知识图谱更新

实体提取

  • 人物(Who)
  • 概念(What)
  • 工具/产品(Tool)
  • 方法论(How)
  • 时间(When)

关系映射

  • 发明了:人物 → 概念/工具
  • 属于:概念 → 领域
  • 替代了:新工具 → 旧工具
  • 依赖于:概念 → 概念

Read the full file on GitHub · 260 lines

Files

What ships with it

1 file 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.

Changes

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.

  1. 8d ago First seen · 260 lines · 58 tokens per session scan A 6a4ac496c461

Subscribe to this mod's changes

learning-notes-automation is a skill published in the GitHub repository chubbyguan/chubbyskills (661 stars, last pushed 19d ago), licensed MIT. It adds 58 tokens to every session and 1,843 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

transformer-attention

Use when reasoning about Transformer self-attention, multi-head attention, positional encoding, masked decoder attention, or why attention replaced recurrence/convolutions in sequence models; not for generic NLP or unrelated attention topics.

VectifyAI/OpenKB · 46 tokens

knowledge-absorber

A tool that deeply examines links, documents, code, or images and turns them into teaching notes and knowledge posters. It supports formats such as PDF, Word, Markdown, source code, and images, and can save the results to a knowledge base.

wwwzhouhui/skills_collection · 171 tokens

learning-visualization-skill

Generate single-file HTML visual explanations for learning and review. Use this skill when the user wants concept maps, process diagrams, principle demos, comparison diagrams, timelines, AI/ML model visualizations, or animated teaching pages that make a topic easier to understand,复习, or present.

mingchen666/Reviva · 64 tokens

layered-first-principles-teaching

Use when explaining complex concepts to others, designing training materials, or preparing technical presentations with progressive disclosure.

Dqz00116/skill-lib · 28 tokens

maieutic-deepseek-adapter

An adaptation of the Maieutic prompt package for DeepSeek and other commonly available Chinese AI platforms. Maieutic uses Socratic questions to help people learn, explore, reflect, and create.

Mr-Salticidae/knowledge-base · 99 tokens

knowledge-absorber

A Chinese-language workflow for deeply analysing links, documents, or code and turning them into teaching notes for beginners through advanced readers. It also checks claims against source material and flags possible hallucinations or outdated information.

YuJunZhiXue/StudyAnalysis-Skills · 74 tokens