-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
97 lines (90 loc) · 3.2 KB
/
Copy pathmkdocs.yml
File metadata and controls
97 lines (90 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# MkDocs 配置 - Agent 学习指南文档站
# 使用方法:
# pip install mkdocs mkdocs-material
# mkdocs serve # 本地预览
# mkdocs build # 构建静态站点
# mkdocs gh-deploy # 部署到 GitHub Pages
site_name: Agent 开发学习指南
site_description: 通过深入分析 Claude Code 源代码学习 AI Agent 开发
site_author: Reed Xia
site_url: https://python012.github.io/learn-agent-from-claude-code/
repo_url: https://github.com/python012/learn-agent-from-claude-code
repo_name: python012/learn-agent-from-claude-code
docs_dir: docs-site
site_dir: site
theme:
name: material
language: zh
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: 切换到深色模式
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: 切换到浅色模式
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.extra:
pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- toc:
permalink: true
toc_depth: 3
plugins:
- search:
lang: zh
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/python012/learn-agent-from-claude-code
- icon: fontawesome/brands/python
link: https://python.org
extra_javascript:
- https://unpkg.com/mermaid@11.3.0/dist/mermaid.min.js
- javascripts/mermaid-init.js
nav:
- 首页: README.md
- 学习指南:
- 系列总览: agent-learning-guide/README.md
- 00. 学习路线总览: agent-learning-guide/00-learning-roadmap.md
- 01. LLM 基础与 Agent 概念: agent-learning-guide/01-llm-fundamentals-and-agent-concepts.md
- 02. Agent 架构入门: agent-learning-guide/02-agent-architecture-introduction.md
- 03. 工具系统详解: agent-learning-guide/03-tool-system-explained.md
- 04. 会话与状态管理: agent-learning-guide/04-session-and-state-management.md
- 05. 权限与安全控制: agent-learning-guide/05-permission-and-security-control.md
- 06. MCP 与外部集成: agent-learning-guide/06-mcp-and-external-integration.md
- 07. 多 Agent 协作系统: agent-learning-guide/07-multi-agent-collaboration-system.md
- 08. 实战:构建自己的 Agent: agent-learning-guide/08-build-your-own-agent.md
- 示例代码:
- TypeScript 版本: https://github.com/python012/learn-agent-from-claude-code/tree/main/examples/simple-agent
- Python 版本: https://github.com/python012/learn-agent-from-claude-code/tree/main/examples/simple-agent-python