> For the complete documentation index, see [llms.txt](https://yeasy.gitbook.io/claude_guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yeasy.gitbook.io/claude_guide/fu-lu/12_appendix/12.4_resources.md).

# 附录 D：优质资源清单

一份精选的资源列表，帮助你持续学习。

## 12.4.1 官方文档

最权威的信息来源，建议加入书签。

* **Claude Platform Console**: [console.anthropic.com](https://console.anthropic.com)
  * 管理 API Key，查看用量，使用 Workbench 调试 Prompt。
* **API Documentation**: [platform.claude.com/docs](https://platform.claude.com/docs)
  * 包含所有最新的参数说明和 SDK 用法。
* **Claude Blog**: [anthropic.com/news](https://www.anthropic.com/news)
  * 产品发布、最佳实践和案例分享。
* **Model Context Protocol (MCP)**: [modelcontextprotocol.io](https://modelcontextprotocol.io)
  * MCP 的协议规范、SDK 和官方 Server 列表。
* **Agent Skills (API)**: [platform.claude.com/docs/en/build-with-claude/skills-guide](https://platform.claude.com/docs/en/build-with-claude/skills-guide)
  * 在 Claude API 中使用 Agent Skills 的官方文档。
* **Claude Code Skills**: [code.claude.com/docs/en/skills](https://code.claude.com/docs/en/skills)
  * 在 Claude Code 中创建、管理和共享 Skills 的官方文档。
* **Skills 示例仓库**: [github.com/anthropics/skills](https://github.com/anthropics/skills)
  * 官方 Skills 模板和示例（docx, brand-guidelines, frontend-design 等）。
* **Claude Partner Network / Partner Hub**: [claude.com/partners](https://claude.com/partners)
  * 查找服务伙伴、认证团队和企业实施资源时使用；伙伴层级、认证状态和可用服务以官网为准。
* **Cookbook**: [github.com/anthropics/anthropic-cookbook](https://github.com/anthropics/anthropic-cookbook)
  * 包含大量 Jupyter Notebook 示例代码（如 RAG, Agent, Vision 等）。

## 12.4.2 社区与开源项目

* **LangChain**: [langchain.com](https://www.langchain.com)
  * 最流行的 LLM 编排框架，对 Claude 支持极好。
* **LlamaIndex**: [llamaindex.ai](https://www.llamaindex.ai)
  * 专注于数据连接（Data Ingestion）和 RAG 的框架。
* **Cursor**: [cursor.com](https://cursor.com)
  * 集成了 Claude 的 AI Native 代码编辑器。
* **Cline (Prev. Claude Dev)**: [github.com/cline/cline](https://github.com/cline/cline)
  * 最强的开源 VS Code Agent 插件。

## 12.4.3 必读论文

若需深入理解原理：

* [**Constitutional AI: Harmlessness from AI Feedback**](https://arxiv.org/abs/2212.08073)
  * Anthropic 的立身之本，详细阐述了 CAI 训练方法。
* [**Sleeper Agents: Training Deceptive LLMs that Persist Through Safety Training**](https://arxiv.org/abs/2401.05566)
  * 关于 AI 安全的前沿研究，探讨了后门攻击的持久性。
* [**Scaling Laws for Neural Language Models**](https://arxiv.org/abs/2001.08361)
  * 早期的经典论文，解释了为什么模型越大越聪明。
* [**Many-Shot In-Context Learning**](https://arxiv.org/abs/2404.11018)
  * Google DeepMind（Agarwal et al., 2024），证明了 Many-Shot 上下文学习在部分任务上可媲美监督微调。

## 12.4.4 博客与资讯

* **Anthropic Research Blog**: [anthropic.com/research](https://www.anthropic.com/research)
  * 第一时间发布新模型和安全研究成果。
* **Simon Willison's Weblog**: [simonwillison.net](https://simonwillison.net)
  * AI 领域的知名博主，经常分享关于 Claude 和 Prompt Injection 的深度分析。
* **Ethan Mollick (One Useful Thing)**: [oneusefulthing.org](https://www.oneusefulthing.org)
  * 探讨 AI 对教育和工作的社会影响。
* **Thariq - Lessons from Building Claude Code**: [x.com/trq212/status/2027463795355095314](https://x.com/trq212/status/2027463795355095314)
  * Claude Code 团队成员分享的工具设计与 Agent 架构实战经验，包括工具结构化频谱、Task 系统演进等一手洞察。

## 12.4.5 常用工具

* **Tiktokenizer**: [tiktokenizer.vercel.app](https://tiktokenizer.vercel.app)
  * 可视化 Token 计算器（注意 Claude 使用自有 BPE tokenizer，与 OpenAI 的 `cl100k_base` 不同；建议直接用 Anthropic SDK 的 `count_tokens` API 进行精确估算）。
* **Mermaid Live Editor**: [mermaid.live](https://mermaid.live)
  * 本书中大量流程图都是用 Mermaid 画的，本网站可以在线编辑预览。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://yeasy.gitbook.io/claude_guide/fu-lu/12_appendix/12.4_resources.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
