重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
study-notes-creator by szeyu/vibe-study-skills
npx skills add https://github.com/szeyu/vibe-study-skills --skill study-notes-creator将原始资料转化为结构清晰、视觉化的学习笔记,包含主题文件夹、丰富的图表和基于示例的学习内容。
flowchart LR
A[原始资料] --> B[提取主题]
B --> C[规划结构]
C --> D[创建笔记]
D --> E[添加图表 + 示例]
E --> F[构建索引]
subject/
├── README.md # 主索引
├── concepts/ # 核心理论
│ ├── 01-introduction.md
│ └── 02-fundamentals.md
├── techniques/ # 操作步骤
│ ├── 01-method-a.md
│ └── 02-method-b.md
├── examples/ # 已解决的问题
│ ├── 01-basic-examples.md
│ └── 02-advanced-examples.md
└── practice/ # 练习题
└── 01-exercises.md
# [主题标题]
一句话总结。
## 概述
[Mermaid 图表展示核心概念]
## 核心概念
### 概念 1
简要解释。
**示例:**
[包含真实场景的具体示例]
## 总结表格
| 术语 | 定义 | 示例 |
|------|------------|---------|
| A | A 是什么 | 实际用例 |
## 练习题
1. 问题描述
<details>
<summary>解答</summary>
分步解答
</details>
## 相关内容
- [[other-note]] - 关联说明
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
flowchart LR
A[开始] --> B[处理]
B --> C{决策}
C -->|是| D[操作]
C -->|否| E[结束]
适用于: 流程、决策树、算法、工作流
flowchart TB
A[主要主题] --> B[分支 A]
A --> C[分支 B]
A --> D[分支 C]
B --> E[细节 1]
B --> F[细节 2]
C --> G[细节 3]
适用于: 分类法、分类、组织结构图、主题分解
sequenceDiagram
participant A as 参与者
participant S as 系统
A->>S: 请求
S-->>A: 响应
A->>S: 后续操作
适用于: 交互、对话、API 调用、因果链
stateDiagram-v2
[*] --> 空闲
空闲 --> 活跃 : 开始
活跃 --> 成功 : 完成
活跃 --> 错误 : 失败
错误 --> 空闲 : 重试
成功 --> [*]
适用于: 生命周期、状态变化、阶段、状态机
flowchart LR
A[阶段 1] --> B[阶段 2]
B --> C[阶段 3]
C --> D[阶段 4]
D --> A
适用于: 水循环、反馈循环、迭代过程、生命周期
timeline
title 历史事件
1800 : 事件 A
1850 : 事件 B
1900 : 事件 C
1950 : 事件 D
适用于: 历史时间线、项目阶段、概念演变
mindmap
root((主题))
分支 A
细节 1
细节 2
分支 B
细节 3
细节 4
适用于: 头脑风暴、主题概览、概念关系
仅在以下情况使用 ASCII:
┌─────────────────────────────────────────────────────────────────────────────┐
│ 主题标题 │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ 关键点 1 关键点 2 关键点 3 │
│ │ │ │ │
│ [细节] [细节] [细节] │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────────────────┐
│ 第 4 层(顶部) │
├─────────────────────────────────────────────────────────────────────────────┤
│ 第 3 层 │
├─────────────────────────────────────────────────────────────────────────────┤
│ 第 2 层 │
├─────────────────────────────────────────────────────────────────────────────┤
│ 第 1 层(底部) │
└─────────────────────────────────────────────────────────────────────────────┘
Corners: ┌ ┐ └ ┘ Lines: ─ │ T-joints: ├ ┤ ┬ ┴ Arrows: ▶ ▼ ◀ ▲
## [概念名称]
**定义:** 简要解释。
**示例:**
[具体的、真实世界的场景]
**变体:**
如果 [不同条件] 会怎样? → [不同结果]
跨学科示例:
| 学科 | 概念 | 示例 | 变体 |
|---|---|---|---|
| 生物学 | 渗透作用 | 红细胞在盐水中收缩 | 在纯水中? → 细胞膨胀 |
| 经济学 | 供需关系 | OPEC 减产导致油价上涨 | 发现新油田? → 价格下跌 |
| 物理学 | 动量 | 保龄球与网球以相同速度运动 | 质量相同,速度不同? |
| 历史学 | 因果关系 | 工业革命 → 城市化 | 没有蒸汽机? |
**问题:** [具体问题]
**解答:**
步骤 1: [操作]
步骤 2: [操作]
结果: [答案]
**原理:** [底层原理]
| 方面 | 主题 A | 主题 B |
|---|---|---|
| 特性 1 | ... | ... |
| 特性 2 | ... | ... |
相似点: 两者都... 关键区别: A 是... 而 B 是...
# [学科名称]
简要描述。
## 快速导航
### 📚 核心概念
- [[concepts/01-topic|主题名称]] - 简要描述
### 🔧 技术/方法
- [[techniques/01-method|方法名称]] - 简要描述
### 💡 示例
- [[examples/01-basic|基础示例]] - 从此开始
---
*最后更新:YYYY-MM-DD*
每周安装量
72
仓库
GitHub 星标数
6
首次出现
2026 年 1 月 29 日
安全审计
安装于
gemini-cli68
opencode67
kimi-cli66
cursor66
github-copilot65
amp65
Transform source materials into organized, visual study notes with themed folders, rich diagrams, and example-based learning.
flowchart LR
A[Source Materials] --> B[Extract Topics]
B --> C[Plan Structure]
C --> D[Create Notes]
D --> E[Add Diagrams + Examples]
E --> F[Build Index]
subject/
├── README.md # Master index
├── concepts/ # Core theory
│ ├── 01-introduction.md
│ └── 02-fundamentals.md
├── techniques/ # How-to procedures
│ ├── 01-method-a.md
│ └── 02-method-b.md
├── examples/ # Worked problems
│ ├── 01-basic-examples.md
│ └── 02-advanced-examples.md
└── practice/ # Exercises
└── 01-exercises.md
# [Topic Title]
One sentence summary.
## Overview
[Mermaid diagram showing the main concept]
## Key Concepts
### Concept 1
Brief explanation.
**Example:**
[Concrete example with real-world scenario]
## Summary Table
| Term | Definition | Example |
|------|------------|---------|
| A | What A is | Real use case |
## Practice Problems
1. Problem statement
<details>
<summary>Solution</summary>
Step-by-step solution
</details>
## Related
- [[other-note]] - Connection
flowchart LR
A[Start] --> B[Process]
B --> C{Decision}
C -->|Yes| D[Action]
C -->|No| E[End]
Use for: Processes, decision trees, algorithms, workflows
flowchart TB
A[Main Topic] --> B[Branch A]
A --> C[Branch B]
A --> D[Branch C]
B --> E[Detail 1]
B --> F[Detail 2]
C --> G[Detail 3]
Use for: Taxonomies, classifications, org charts, topic breakdowns
sequenceDiagram
participant A as Actor
participant S as System
A->>S: Request
S-->>A: Response
A->>S: Follow-up
Use for: Interactions, conversations, API calls, cause-effect chains
stateDiagram-v2
[*] --> Idle
Idle --> Active : Start
Active --> Success : Complete
Active --> Error : Fail
Error --> Idle : Retry
Success --> [*]
Use for: Lifecycles, status changes, phases, state machines
flowchart LR
A[Stage 1] --> B[Stage 2]
B --> C[Stage 3]
C --> D[Stage 4]
D --> A
Use for: Water cycle, feedback loops, iterative processes, life cycles
timeline
title Historical Events
1800 : Event A
1850 : Event B
1900 : Event C
1950 : Event D
Use for: Historical timelines, project phases, evolution of concepts
mindmap
root((Topic))
Branch A
Detail 1
Detail 2
Branch B
Detail 3
Detail 4
Use for: Brainstorming, topic overviews, concept relationships
Use ASCII only for:
┌─────────────────────────────────────────────────────────────────────────────┐
│ TOPIC TITLE │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ Key Point 1 Key Point 2 Key Point 3 │
│ │ │ │ │
│ [details] [details] [details] │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────────────────┐
│ Layer 4 (Top) │
├─────────────────────────────────────────────────────────────────────────────┤
│ Layer 3 │
├─────────────────────────────────────────────────────────────────────────────┤
│ Layer 2 │
├─────────────────────────────────────────────────────────────────────────────┤
│ Layer 1 (Bottom) │
└─────────────────────────────────────────────────────────────────────────────┘
Corners: ┌ ┐ └ ┘ Lines: ─ │ T-joints: ├ ┤ ┬ ┴ Arrows: ▶ ▼ ◀ ▲
## [Concept Name]
**Definition:** Brief explanation.
**Example:**
[Concrete, real-world scenario]
**Variation:**
What if [different condition]? → [Different outcome]
Cross-discipline examples:
| Subject | Concept | Example | Variation |
|---|---|---|---|
| Biology | Osmosis | Red blood cells in salt water shrink | In pure water? → Cells swell |
| Economics | Supply/Demand | Oil price rises when OPEC cuts production | New oil discovered? → Price falls |
| Physics | Momentum | Bowling ball vs tennis ball at same speed | Same mass, different speed? |
| History | Cause/Effect | Industrial Revolution → urbanization | No steam engine? |
**Problem:** [Specific question]
**Solution:**
Step 1: [Action]
Step 2: [Action]
Result: [Answer]
**Why it works:** [Underlying principle]
| Aspect | Topic A | Topic B |
|---|---|---|
| Feature 1 | ... | ... |
| Feature 2 | ... | ... |
Similarities: Both... Key Difference: A is... while B is...
# [Subject Name]
Brief description.
## Quick Navigation
### 📚 Core Concepts
- [[concepts/01-topic|Topic Name]] - Brief description
### 🔧 Techniques/Methods
- [[techniques/01-method|Method Name]] - Brief description
### 💡 Examples
- [[examples/01-basic|Basic Examples]] - Start here
---
*Last updated: YYYY-MM-DD*
Weekly Installs
72
Repository
GitHub Stars
6
First Seen
Jan 29, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
gemini-cli68
opencode67
kimi-cli66
cursor66
github-copilot65
amp65
营销技能集合:23项SEO、CRO、文案撰写与增长策略工具
7,900 周安装