一、Anthropic 官方资源(最权威)
文档与博客
| 资源 | 链接 | 说明 |
|---|---|---|
| Anthropic 官网 | https://www.anthropic.com | 公司主页 |
| Claude 产品页 | https://www.claude.ai | Web 版入口(需登录) |
| Claude Docs 总入口 | https://docs.anthropic.com | 所有官方文档的根 |
| Agent Skills 文档 | https://docs.claude.com/en/docs/agents-and-tools/agent-skills | Skill 概念与最佳实践 |
| Claude Code 文档 | https://docs.claude.com/en/docs/claude-code | CLI 完整使用指南 |
| Skills 工程博客 | https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills | Skill 设计哲学 |
| Anthropic Cookbook | https://github.com/anthropics/anthropic-cookbook | 各类范例代码 |
| Anthropic Status | https://status.anthropic.com | API/服务可用性监控 |
Anthropic 官方仓库
| 仓库 | 链接 | 内容 |
|---|---|---|
anthropics/skills |
https://github.com/anthropics/skills | 官方 4 大文档 Skill + skill-creator |
anthropics/claude-code |
https://github.com/anthropics/claude-code | Claude Code CLI 源码与 issue |
anthropics/anthropic-quickstarts |
https://github.com/anthropics/anthropic-quickstarts | 各类入门项目脚手架 |
anthropics/courses |
https://github.com/anthropics/courses | 官方系列课程 |
社区与支持
| 渠道 | 链接 | 用途 |
|---|---|---|
| Anthropic Discord | https://www.anthropic.com/discord | 全球开发者交流 |
| Claude Help Center | https://support.anthropic.com | 账号、计费、退款类问题 |
| Anthropic 招聘 | https://www.anthropic.com/jobs | 想去做 Skill 的可以投这里 |
二、Skill 市场与目录
| 站点 | 链接 | 特点 |
|---|---|---|
| Claude Skills Marketplace | https://www.claudeskills.com | 收录最多、按主题归类 |
| PolySkill | https://polyskill.com | 浏览器内可一键预览,UI 友好 |
| SkillsHunt | https://skillshunt.com | 中文 Skill 较多、含中文使用说明 |
| 5tldr/claude-skills | https://github.com/5tldr/claude-skills | 经典社区集合,质量较高 |
| awesome-claude-skills(民间) | https://github.com/topics/claude-skills | GitHub 标签页,按 star 排 |
| Anthropic Skill Plugin Registry | 通过 /plugin marketplace 命令查看 |
在 Claude Code 内浏览 |
三、安装与管理工具
| 工具 | 链接 | 一句话说明 |
|---|---|---|
| Claude Code | https://docs.claude.com/en/docs/claude-code/installation | 官方 CLI |
| Skills CLI(社区) | https://www.npmjs.com/package/claude-skills | npm 安装的 Skill 管理工具 |
| MCP Inspector | https://modelcontextprotocol.io/inspector | 调试 MCP + Skill 联调 |
| Claude Code IDE 插件 | https://docs.claude.com/en/docs/claude-code/ide | VS Code / Cursor 集成 |
| Anthropic API SDK(Python) | https://github.com/anthropics/anthropic-sdk-python | 自建脚本必备 |
| Anthropic API SDK(TypeScript) | https://github.com/anthropics/anthropic-sdk-typescript | 前端/Node 项目 |
四、教学与课程
英文(视频/文章)
| 资源 | 链接 | 说明 |
|---|---|---|
| Anthropic 官方课程 | https://github.com/anthropics/courses | Prompt Engineering / API Fundamentals 等 |
| Latent.Space 播客 | https://www.latent.space | 多次深度对谈 Anthropic 团队 |
| Lex Fridman × Dario Amodei | https://lexfridman.com/dario-amodei | Anthropic CEO 长访谈 |
| AI Engineer 系列大会 | https://www.ai.engineer | Skill / Agent 主题演讲 |
| Cognition AI 博客 | https://www.cognition.ai/blog | Devin 团队,对 Agent 设计有深度文章 |
中文(公众号 / B站 / 知乎)
| 资源 | 链接 | 说明 |
|---|---|---|
| 宝玉 xp(公众号) | 微信搜"宝玉" | 第一手 AI 资讯翻译 |
| 即刻 #AI 圈话题 | https://web.okjike.com | 社区交流、案例分享 |
| B站 "歸藏的 AI 工具箱" | https://space.bilibili.com | Skill 实战视频 |
| B站 "Linus 是程序员"等 | 各 UP 主 | 中文 Claude Code 教程 |
| 量子位 | https://www.qbitai.com | AI 行业资讯 |
| 机器之心 | https://www.jiqizhixin.com | 学术 + 应用并重 |
| 36氪 / 虎嗅 / 极客公园 | 各官网 | AI 商业化报道 |
五、相关协议与规范
| 资源 | 链接 | 说明 |
|---|---|---|
| Model Context Protocol(MCP) | https://modelcontextprotocol.io | Skill 经常配合的标准协议 |
| MCP 官方仓库 | https://github.com/modelcontextprotocol | 所有 MCP 工具源码 |
| OpenAI Function Calling 文档 | https://platform.openai.com/docs/guides/function-calling | 对照学习 |
| OpenAI Custom GPTs | https://help.openai.com/en/articles/8554407 | 对照学习 |
| Conventional Commits | https://www.conventionalcommits.org | commit 规范 |
| Semver | https://semver.org | 版本号规范 |
| SPDX License List | https://spdx.org/licenses | 各种开源许可证速查 |
六、安全与合规
| 资源 | 链接 | 说明 |
|---|---|---|
| Anthropic Usage Policy | https://www.anthropic.com/legal/aup | 哪些用法明令禁止 |
| OWASP LLM Top 10 | https://owasp.org/www-project-top-10-for-large-language-model-applications | LLM 安全风险十大 |
| Prompt Injection 速查 | https://github.com/jthack/PIPE | 注入攻防案例库 |
| Anthropic Trust Center | https://trust.anthropic.com | SOC2 / 数据保护合规说明 |
| GDPR 速查 | https://gdpr-info.eu | 欧盟个人数据法规 |
| 中国《生成式 AI 服务管理暂行办法》 | http://www.cac.gov.cn | 中国合规底线 |
七、推荐周边工具
文件 / 文档处理
| 工具 | 链接 | 用法 |
|---|---|---|
| pandoc | https://pandoc.org | Markdown 转 docx/pdf 万能工具 |
| LibreOffice | https://www.libreoffice.org | 命令行批量转换 office 文件 |
| ImageMagick | https://imagemagick.org | 图片批量处理 |
| ffmpeg | https://ffmpeg.org | 音视频处理 |
| jq | https://jqlang.github.io/jq | JSON 命令行处理 |
| ripgrep | https://github.com/BurntSushi/ripgrep | 代码/文档秒搜 |
开发与协作
| 工具 | 链接 | 用法 |
|---|---|---|
| Cursor IDE | https://cursor.com | 写 SKILL.md 强力辅助 |
| VS Code | https://code.visualstudio.com | 通用 IDE |
| GitHub Desktop | https://desktop.github.com | 图形化 git,新人友好 |
| Notion | https://www.notion.so | 知识库 / 文档协作 |
| Slack | https://slack.com | 团队消息 |
| 飞书 / Lark | https://www.feishu.cn | 国内团队协作首选 |
自动化 / 调度
| 工具 | 链接 | 用法 |
|---|---|---|
| n8n | https://n8n.io | 自托管自动化平台 |
| Zapier | https://zapier.com | SaaS 自动化 |
| Make(前 Integromat) | https://www.make.com | 可视化流程 |
| Apple Shortcuts | https://www.apple.com/shortcuts | iOS / macOS 自动化 |
| cron | 系统自带 | 经典定时任务 |
八、推荐书与文章
入门读物(非技术)
- 《人类简史》(理解 AI 与人类协作的大背景)
- 《思考,快与慢》(理解 AI 决策与你的偏差)
- 《AI 3.0》(梅拉妮·米歇尔,AI 概念入门)
- 《为什么伟大不能被计划》(关于探索与目标)
技术读物
- 《Designing Data-Intensive Applications》(Martin Kleppmann)
- 《The Pragmatic Programmer》(Hunt & Thomas)
- 《System Design Interview》(Alex Xu)
- 《Building LLM-powered Applications》(Valentina Alto)
- 《Hands-On Large Language Models》(Jay Alammar)
高质量博客 / Substack
- Simon Willison's Weblog: https://simonwillison.net (每天一篇 LLM 实战)
- Jay Alammar: https://jalammar.github.io (Transformer 可视化经典)
- Lilian Weng: https://lilianweng.github.io (OpenAI 工程师,深度好文)
- Eugene Yan: https://eugeneyan.com (AI / 推荐系统实战)
九、Skill 相关播客 / YouTube
- Latent Space Podcast
- The Cognitive Revolution(Anthropic 多次嘉宾)
- This Day in AI Podcast
- Lex Fridman Podcast(AI 大佬合集)
- The MAD Podcast(AI Infra 视角)
十、本书相关
| 资源 | 链接 | 说明 |
|---|---|---|
| 本书 GitHub 仓库 | (待发布,敬请关注) | 源 Markdown / Issue 反馈 |
| 本书勘误页 | (待发布) | 错别字与内容更新 |
| 配套示例 Skill 包 | (待发布) | 书中所有 Skill 的可运行版本 |
| 微信交流群 | (扫码加群,链接见仓库 README) | 中文社区 |
| 推特/X | (作者待补充) | 英文社区 |
十一、链接维护说明
互联网链接随时变化。本附录在每次年度版本更新时复查一次。
遇到失效链接,怎么办?
- 先尝试
https://web.archive.org/<原链接>,多半能找到历史快照 - 在本书 GitHub Issue 里搜搜,看看有没有人报过
- 没人报,提一个 Issue:标题写"链接失效:附录 D - XXX"
更可靠的"长期资源" Top 5(基本不会失效):
- https://docs.anthropic.com
- https://github.com/anthropics/skills
- https://github.com/anthropics/claude-code
- https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills
- https://modelcontextprotocol.io
记住这 5 个,其它链接断了你也能从这里反推到现在的官方资源。
十二、最后:给自学者的话
这一附录看起来很多,你不用全看。
第一遍按这个最小路径走:
- 读完 Anthropic Skill 文档
- 浏览一遍 anthropics/skills 仓库
- 加入 Anthropic Discord 看大家在聊什么
- 收藏 Simon Willison 的博客 + Latent Space 播客
够了。其它都是"等遇到具体问题再翻"的资源。
工具是地图,不是目的地。把这本书读厚再读薄,读到只剩 README + 一份你自己的 Skill 列表,你就成了。