Skip to content

Commit da2d100

Browse files
committed
docs: 加 resources.md 延伸学习资源聚合(中英双语)
新增 resources.md / .en.md,精选 20+ 高质量外部资源,分 7 类: - 📝 Prompt 工程(Anthropic 交互教程 / DAIR 指南 / 吴恩达课中文版 / phodal) - 🛠️ 工具专项 Awesome 列表(cursorrules / awesome-claude / copilot / gemini-cli / windsurf) - 🤖 CLI Agent 进阶(官方仓库 / 课程 / cookbook / hooks-mastery) - 🔌 MCP 生态(官方 servers / awesome-mcp-servers) - 🏗️ Agent 工程化(12-factor-agents / 系统 Prompt 泄露合集 / openai-cookbook) - 🇨🇳 中文优秀资源(Datawhale / LangChain 中文 / phodal / AutoDev) - 📡 博客 / 播客 / Newsletter(Anthropic / Simon Willison / Latent Space / 宝玉) 每个条目三要素:链接 + 量级 + "什么场景值得看"。 定位:不重复造轮子,外部讲原理和通用方法,本项目讲具体工具用法。 README 加"延伸学习"章节指向 resources.md(中英双语)。
1 parent c3ca4bf commit da2d100

4 files changed

Lines changed: 373 additions & 1 deletion

File tree

README.en.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,15 @@ Most AI coding resources fall into two camps: shallow "getting started" posts, o
119119

120120
---
121121

122+
## 📚 Further Learning
123+
124+
This project covers "how to use the 9 tools well." Want to go deeper? See **[Further Learning Resources](resources.en.md)** — a curated list of **20+ high-quality GitHub repos / blogs / podcasts** organized by topic (Prompt Engineering / MCP Ecosystem / Claude Code Deep Dive / Agent Engineering / Chinese Resources / Official Blogs).
125+
126+
---
127+
122128
## Contributing
123129

124-
Contributions welcome! See [CONTRIBUTING.md](./CONTRIBUTING.md).
130+
Contributions welcome! See [CONTRIBUTING.en.md](./CONTRIBUTING.en.md).
125131

126132
In short: add tips, fix outdated content, share workflow experiences — Issues and PRs both work.
127133

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@
126126

127127
---
128128

129+
## 📚 延伸学习
130+
131+
本项目讲"怎么用好 9 款工具",要继续深入推荐看 **[延伸学习资源](resources.md)**——精选了 **20+ 个高质量 GitHub 仓库 / 博客 / 播客**,按主题分类(Prompt 工程 / MCP 生态 / Claude Code 进阶 / Agent 工程 / 中文优秀资源 / 官方博客)。
132+
133+
---
134+
129135
## 致谢
130136

131137
本指南参考了以下优秀的开源项目:

resources.en.md

Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
1+
[简体中文](./resources.md) | **English**
2+
3+
# Further Learning Resources
4+
5+
> This project covers "how to use the 9 tools well." To go deeper, here's a curated external resource list. **Quality over completeness** — every entry states **when it's worth your time**.
6+
>
7+
> Snapshot date: **2026-04**. Report dead links via Issue.
8+
9+
---
10+
11+
## 🧭 Quick Navigation
12+
13+
| What you want | Go here |
14+
|--------------|---------|
15+
| Learn prompt engineering systematically | [Interactive tutorial / DeepLearning.AI / DAIR guide](#-prompt-engineering) |
16+
| Best-practice collections per tool | [Awesome lists](#%EF%B8%8F-awesome-lists-per-tool) |
17+
| Claude Code deep dive | [Official repo / Hooks / Cookbook](#-claude-code-deep-dive) |
18+
| MCP server ecosystem | [Official MCP + awesome-mcp-servers](#-mcp-ecosystem) |
19+
| Chinese-language references | [Datawhale / phodal / AutoDev](#-chinese-resources) |
20+
| Track new tools | [Blogs / Podcasts / Newsletters](#-blogs--podcasts--newsletters) |
21+
22+
---
23+
24+
## 📝 Prompt Engineering
25+
26+
- [anthropics/prompt-eng-interactive-tutorial](https://github.com/anthropics/prompt-eng-interactive-tutorial) · ⭐ high · EN
27+
- Anthropic's official **9-chapter interactive prompt tutorial**, runnable Jupyter
28+
- Fastest systematic onboarding to prompt engineering (2-3 hours)
29+
30+
- [dair-ai/Prompt-Engineering-Guide](https://github.com/dair-ai/Prompt-Engineering-Guide) · ⭐ 60k+ · EN (with Chinese translation)
31+
- The prompt-engineering encyclopedia: CoT, ReAct, RAG, tool-use patterns
32+
- Go here to understand terminology and which technique fits which scenario
33+
34+
- [datawhalechina/prompt-engineering-for-developers](https://github.com/datawhalechina/prompt-engineering-for-developers) · ⭐ 13k+ · ZH
35+
- Datawhale's Chinese translation of **DeepLearning.AI prompt engineering courses** with notes
36+
- Best combo for Chinese learners: video + code
37+
38+
- [phodal/prompt-patterns](https://github.com/phodal/prompt-patterns) · ⭐ 1k+ · ZH
39+
- Prompt patterns and DSL design guide by prominent Chinese architect Phodal Huang
40+
- Advanced reference for building complex AI coding workflows and reusable prompts
41+
42+
---
43+
44+
## 🛠️ Awesome Lists per Tool
45+
46+
- [PatrickJS/awesome-cursorrules](https://github.com/PatrickJS/awesome-cursorrules) · ⭐ 30k+ · EN
47+
- Community collection of `.cursorrules` files, categorized by tech stack
48+
- Copy a matching stack's rules when starting a new project
49+
50+
- [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) · ⭐ high · EN
51+
- Most comprehensive Claude Code community resources: tips, Skills, Hooks, workflows
52+
- Go here when you want community best practices beyond the basics
53+
54+
- [github/awesome-copilot](https://github.com/github/awesome-copilot) · ⭐ high · EN
55+
- GitHub's official Copilot resource collection
56+
- Look up instruction / Chat mode / Agent examples
57+
58+
- [addyosmani/gemini-cli-tips](https://github.com/addyosmani/gemini-cli-tips) · ⭐ medium · EN
59+
- Google DevRel Addy Osmani's **30 Gemini CLI tips**
60+
- Gemini CLI users: just copy these
61+
62+
- [detailobsessed/awesome-windsurf](https://github.com/detailobsessed/awesome-windsurf) · ⭐ medium · EN
63+
- Windsurf community resources (rules, workflows, MCP)
64+
- Find community patterns for Cascade
65+
66+
---
67+
68+
## 🤖 Claude Code Deep Dive
69+
70+
- [anthropics/claude-code](https://github.com/anthropics/claude-code) · Official · EN
71+
- **Official repo**. Issues and Discussions are the primary source for new features and techniques
72+
- Track new features (slash commands / hooks / skills)
73+
74+
- [anthropics/courses](https://github.com/anthropics/courses) · ⭐ high · EN
75+
- Anthropic's official course collection: Prompt, Tool use, RAG, MCP
76+
- The full Anthropic syllabus in one place
77+
78+
- [anthropics/anthropic-cookbook](https://github.com/anthropics/anthropic-cookbook) · ⭐ high · EN
79+
- Claude API practical examples: multimodal, tool use, RAG, Agent patterns
80+
- Reference when building custom AI coding tools on top of Claude
81+
82+
- [disler/claude-code-hooks-mastery](https://github.com/disler/claude-code-hooks-mastery) · ⭐ medium · EN
83+
- Deep practical work on Claude Code Hooks
84+
- Copy when building automation (quality gates, notifications, checks)
85+
86+
---
87+
88+
## 🔌 MCP Ecosystem
89+
90+
- [modelcontextprotocol/servers](https://github.com/modelcontextprotocol/servers) · Official · EN
91+
- **Official MCP server collection**: filesystem, databases, Git, Slack, and more
92+
- First stop when adding external capabilities to Claude Code / Cursor
93+
94+
- [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) · ⭐ high · EN
95+
- Community-maintained MCP server list, updated frequently
96+
- Find third-party MCPs (browser, PostgreSQL, domain-specific APIs)
97+
98+
---
99+
100+
## 🏗️ Agent Engineering
101+
102+
- [humanlayer/12-factor-agents](https://github.com/humanlayer/12-factor-agents) · ⭐ high · EN
103+
- **12 principles for building production-grade LLM Agents**, the 2025 engineering benchmark
104+
- Required reading when going from "toy agent" to "production-ready agent"
105+
106+
- [x1xhlol/system-prompts-and-models-of-ai-tools](https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools) · ⭐ high · EN
107+
- Compiled **system prompts** of Cursor, Windsurf, v0, Devin, and more
108+
- Learn top AI coding tools by reverse-engineering their prompts
109+
110+
- [openai/openai-cookbook](https://github.com/openai/openai-cookbook) · ⭐ high · EN
111+
- OpenAI official examples: tool calling, structured output, Agent patterns
112+
- Cross-LLM reference for Copilot / Codex users
113+
114+
---
115+
116+
## 🇨🇳 Chinese Resources
117+
118+
- [datawhalechina/llm-cookbook](https://github.com/datawhalechina/llm-cookbook) · ⭐ 22k+ · ZH
119+
- Datawhale's Chinese LLM development cookbook collection
120+
- Chinese reference manual for embedding LLM capabilities into your project
121+
122+
- [liaokongVFX/LangChain-Chinese-Getting-Started-Guide](https://github.com/liaokongVFX/LangChain-Chinese-Getting-Started-Guide) · ⭐ 8k+ · ZH
123+
- LangChain Chinese getting-started guide: Agent / Chain / Memory
124+
- Foundation for building your own AI coding tools / Agent assistants
125+
126+
- [phodal/aigc](https://github.com/phodal/aigc) · ⭐ 1k+ · ZH
127+
- Phodal Huang's book "Building LLM Applications"
128+
- AI coding architect's perspective, engineering and team adoption
129+
130+
- [unit-mesh/auto-dev](https://github.com/unit-mesh/auto-dev) · ⭐ 3k+ · ZH/EN
131+
- **Domestic Chinese JetBrains AI coding plugin** with custom Agent + Chinese DevIns scripts
132+
- AI coding option for IDEA/PyCharm ecosystem
133+
134+
---
135+
136+
## 📡 Blogs / Podcasts / Newsletters
137+
138+
- [Anthropic Engineering Blog](https://www.anthropic.com/engineering) · EN
139+
- Official engineering blog; Claude Code features and best practices debut here
140+
- Monthly updates, **subscribe**
141+
142+
- [Simon Willison's Weblog](https://simonwillison.net/) · EN
143+
- The most prolific independent LLM blogger, near-daily AI tool reviews
144+
- Track new tools and CLI-level techniques
145+
146+
- [Latent Space](https://www.latent.space/) · EN
147+
- swyx's AI engineering podcast + newsletter
148+
- Interviews with core teams at Cursor / Anthropic / GitHub
149+
150+
- [baoyu.io](https://baoyu.io/) · ZH
151+
- Baoyu's translations and curated Chinese versions of top AI coding articles
152+
- High-quality middleman when you don't want to read English originals
153+
154+
---
155+
156+
## 📌 This Project vs External Resources
157+
158+
This project's scope is **"practical Chinese AI coding guide"** — covering the 9 tools in depth. External resources complement, not duplicate:
159+
160+
```
161+
External: teaches principles and generic methods
162+
163+
Prompt engineering / Agent design / LLM app architecture / MCP
164+
165+
This project: teaches tool-specific usage
166+
167+
66 Claude Code tips / Cursor configs / Pitfalls and real-world scripts
168+
```
169+
170+
No wheel reinvention. Good external resources are linked, not rewritten.
171+
172+
---
173+
174+
## Contributing
175+
176+
Spot a good resource? PR to the right section. **Quality bar**:
177+
- At least 500 stars, or clearly official/authoritative
178+
- Continuously updated (one-off blog posts don't qualify)
179+
- Must state **"when worth your time"**, not just the name
180+
- Not accepted: paid courses, paid communities, personal contact links
181+
182+
See [CONTRIBUTING.en.md](./CONTRIBUTING.en.md).

resources.md

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
# 延伸学习资源
2+
3+
> 本项目讲"9 款工具怎么用好"。要继续深入,这里是精选外部资源。**不求全,只求高质量**——每个条目都说清楚"什么情况值得看"。
4+
>
5+
> 信息截止:**2026-04**。链接失效请提 Issue。
6+
7+
---
8+
9+
## 🧭 快速导航
10+
11+
| 想解决什么 | 去哪看 |
12+
|-----------|--------|
13+
| 系统学 Prompt 工程 | [官方交互教程 / 吴恩达课 / DAIR 指南](#-prompt-工程) |
14+
| 找工具的最佳实践集 | [awesome 列表系列](#%EF%B8%8F-工具专项-awesome-列表) |
15+
| Claude Code 进阶 | [官方仓库 / Hooks / Cookbook](#-claude-code-进阶) |
16+
| MCP 服务器生态 | [MCP 官方 + awesome-mcp-servers](#-mcp-生态) |
17+
| 中文高质量参考 | [Datawhale / 黄峰达 / AutoDev](#-中文优秀资源) |
18+
| 追新工具动态 | [博客 / 播客 / Newsletter](#-博客--播客--newsletter) |
19+
20+
---
21+
22+
## 📝 Prompt 工程
23+
24+
- [anthropics/prompt-eng-interactive-tutorial](https://github.com/anthropics/prompt-eng-interactive-tutorial) · ⭐ 高 · 英
25+
- Anthropic 官方 **9 章交互式 Prompt 教程**,可运行 Jupyter
26+
- 系统入门 Prompt 工程最快的路径,2-3 小时能跑完
27+
28+
- [dair-ai/Prompt-Engineering-Guide](https://github.com/dair-ai/Prompt-Engineering-Guide) · ⭐ 60k+ · 英(有中文翻译)
29+
- Prompt 工程百科全书:CoT、ReAct、RAG、Tool-use 各种 pattern
30+
- 想深入原理、看各种技术名词对应什么场景时翻
31+
32+
- [datawhalechina/prompt-engineering-for-developers](https://github.com/datawhalechina/prompt-engineering-for-developers) · ⭐ 13k+ · 中
33+
- Datawhale 翻译的**吴恩达 Prompt 工程系列**+ 中文注解
34+
- 中文用户看视频 + 跟代码的最佳组合
35+
36+
- [phodal/prompt-patterns](https://github.com/phodal/prompt-patterns) · ⭐ 1k+ · 中
37+
- 国内知名架构师黄峰达写的 Prompt 模式与 DSL 设计指南
38+
- 写复杂 AI 编程工作流、设计可复用 Prompt 时的进阶参考
39+
40+
---
41+
42+
## 🛠️ 工具专项 Awesome 列表
43+
44+
- [PatrickJS/awesome-cursorrules](https://github.com/PatrickJS/awesome-cursorrules) · ⭐ 30k+ · 英
45+
- 社区收集的 `.cursorrules` 文件大全,按技术栈分类
46+
- 新项目起手抄一份对应技术栈的 rules
47+
48+
- [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) · ⭐ 高 · 英
49+
- Claude Code 社区最全资源:技巧、Skills、Hooks、工作流
50+
- Claude Code 进阶后想找社区最佳实践
51+
52+
- [github/awesome-copilot](https://github.com/github/awesome-copilot) · ⭐ 高 · 英
53+
- GitHub 官方维护的 Copilot 资源集合
54+
- 查 Copilot 的 instruction / Chat mode / Agent 示例
55+
56+
- [addyosmani/gemini-cli-tips](https://github.com/addyosmani/gemini-cli-tips) · ⭐ 中 · 英
57+
- Google 开发者 Addy Osmani 整理的 **30 个 Gemini CLI 技巧**
58+
- Gemini CLI 用户直接抄作业
59+
60+
- [detailobsessed/awesome-windsurf](https://github.com/detailobsessed/awesome-windsurf) · ⭐ 中 · 英
61+
- Windsurf 社区资源集合(规则、工作流、MCP)
62+
- 用 Windsurf Cascade 找社区模式
63+
64+
---
65+
66+
## 🤖 Claude Code 进阶
67+
68+
- [anthropics/claude-code](https://github.com/anthropics/claude-code) · 官方 · 英
69+
- **官方仓库**,Issues 和 Discussions 是新功能 / 新技巧的一手信息源
70+
- 追 Claude Code 新特性(slash command / hooks / skill 新能力)
71+
72+
- [anthropics/courses](https://github.com/anthropics/courses) · ⭐ 高 · 英
73+
- Anthropic 官方课程合集:Prompt、Tool use、RAG、MCP 全套
74+
- 想系统吃透 Anthropic 全家桶
75+
76+
- [anthropics/anthropic-cookbook](https://github.com/anthropics/anthropic-cookbook) · ⭐ 高 · 英
77+
- Claude API 实战示例:多模态、工具调用、RAG、Agent 模式
78+
- 用 Claude API 做定制化 AI 编程工具时的参考
79+
80+
- [disler/claude-code-hooks-mastery](https://github.com/disler/claude-code-hooks-mastery) · ⭐ 中 · 英
81+
- Claude Code Hooks 深度实战
82+
- 做自动化 Hook 工作流(质量门禁、通知、检查)时直接抄
83+
84+
---
85+
86+
## 🔌 MCP 生态
87+
88+
- [modelcontextprotocol/servers](https://github.com/modelcontextprotocol/servers) · 官方 · 英
89+
- **MCP 官方服务器合集**:文件系统、数据库、Git、Slack 等
90+
- 给 Claude Code / Cursor 加外部能力时第一站
91+
92+
- [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) · ⭐ 高 · 英
93+
- 社区维护的 MCP 服务器列表,更新频繁
94+
- 找第三方 MCP(浏览器、PostgreSQL、特定 API)
95+
96+
---
97+
98+
## 🏗️ Agent 工程化
99+
100+
- [humanlayer/12-factor-agents](https://github.com/humanlayer/12-factor-agents) · ⭐ 高 · 英
101+
- 构建**生产级 LLM Agent 的 12 条原则**,2025 工程化标杆
102+
- 从"玩票 Agent"进阶到"能上线的 Agent"必读
103+
104+
- [x1xhlol/system-prompts-and-models-of-ai-tools](https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools) · ⭐ 高 · 英
105+
- 整理的 Cursor、Windsurf、v0、Devin 等工具的**系统 Prompt**
106+
- 想逆向学习顶级 AI 编程工具怎么写 Prompt
107+
108+
- [openai/openai-cookbook](https://github.com/openai/openai-cookbook) · ⭐ 高 · 英
109+
- OpenAI 官方示例:工具调用、结构化输出、Agent 模式
110+
- 跨 LLM 参考,Copilot / Codex 用户交叉看
111+
112+
---
113+
114+
## 🇨🇳 中文优秀资源
115+
116+
- [datawhalechina/llm-cookbook](https://github.com/datawhalechina/llm-cookbook) · ⭐ 22k+ · 中
117+
- Datawhale 的 LLM 开发中文指南合集
118+
- 把 LLM 能力嵌入自己项目时的中文参考手册
119+
120+
- [liaokongVFX/LangChain-Chinese-Getting-Started-Guide](https://github.com/liaokongVFX/LangChain-Chinese-Getting-Started-Guide) · ⭐ 8k+ · 中
121+
- LangChain 中文入门指南:Agent / Chain / Memory
122+
- 自己造 AI 编程工具、Agent 型助手的基础
123+
124+
- [phodal/aigc](https://github.com/phodal/aigc) · ⭐ 1k+ · 中
125+
- 黄峰达《构筑大语言模型应用》电子书
126+
- AI 编程架构师视角,适合看工程化与团队落地
127+
128+
- [unit-mesh/auto-dev](https://github.com/unit-mesh/auto-dev) · ⭐ 3k+ · 中英
129+
- **国产 JetBrains AI 编程插件**,支持自定义 Agent + 中文 DevIns 脚本
130+
- IDEA/PyCharm 生态里的 AI 编程选择
131+
132+
---
133+
134+
## 📡 博客 / 播客 / Newsletter
135+
136+
- [Anthropic Engineering Blog](https://www.anthropic.com/engineering) · 英
137+
- Anthropic 官方工程博客,Claude Code 新特性和最佳实践首发
138+
- 每月更新,**必订**
139+
140+
- [Simon Willison's Weblog](https://simonwillison.net/) · 英
141+
- LLM 圈最勤奋独立博主,几乎每天更新 AI 工具实测
142+
- 追新工具发布和 CLI 级技巧
143+
144+
- [Latent Space](https://www.latent.space/) · 英
145+
- swyx 主持的 AI 工程播客 + newsletter
146+
- 采访 Cursor / Anthropic / GitHub 核心团队的第一手观点
147+
148+
- [宝玉的分享](https://baoyu.io/) · 中
149+
- 宝玉翻译整理的大量 AI 编程英文好文**中文版**
150+
- 不想读英文原文时的高质量中转站
151+
152+
---
153+
154+
## 📌 本项目与外部资源的关系
155+
156+
这个项目定位**"中文 AI 编程工具实战指南"**——覆盖 9 款工具的具体使用。外部资源是补充:
157+
158+
```
159+
外部资源教原理和通用方法 → 本项目教具体工具怎么用
160+
↓ ↓
161+
Prompt 工程 / Agent 设计 Claude Code 66 技巧
162+
LLM 应用架构 Cursor 配置模板
163+
MCP 生态 陷阱合集与实战脚本
164+
```
165+
166+
不重复造轮子,有外部好资源就指过去。
167+
168+
---
169+
170+
## 贡献
171+
172+
发现好资源请提 PR 加到对应分类。**质量要求**
173+
- 仓库至少 500 star,或明确为官方/权威资源
174+
- 持续更新(一次性博文不收录)
175+
- 说清楚"什么场景值得看",不能只有名字
176+
- 不收录:付费课程、付费社群、个人微信号
177+
178+
详见 [CONTRIBUTING.md](./CONTRIBUTING.md)

0 commit comments

Comments
 (0)