-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
executable file
·126 lines (118 loc) · 4.03 KB
/
mkdocs.yml
File metadata and controls
executable file
·126 lines (118 loc) · 4.03 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Amplifier Tutorial
# Simple config using built-in theme (no extra packages needed)
site_name: Amplifier Tutorial
site_description: Learn Amplifier - The Modular AI Agent Framework
# Point to our content directory
docs_dir: content
# Use direct file links (concepts/index.html instead of concepts/)
# This allows browsing locally via file:// protocol
use_directory_urls: false
# Output to docs/ for GitHub Pages compatibility
site_dir: docs
# Use built-in readthedocs theme (works out of box)
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- yaml
- python
- bash
# Built-in plugins only
plugins:
- search
# Standard markdown extensions (no extra packages)
markdown_extensions:
- admonition
- toc:
permalink: true
- codehilite:
guess_lang: false
# Navigation structure
nav:
- Home: index.md
- Getting Started:
- Overview: quickstart/index.md
- What is Amplifier?: quickstart/what-is-amplifier.md
- How It's Different: quickstart/how-its-different.md
- Installation: quickstart/installation.md
- Your First Conversation: quickstart/first-conversation.md
- Key Commands: quickstart/key-commands.md
- Your First Bundle: quickstart/first-bundle.md
- Core Concepts:
- Overview: concepts/index.md
- Architecture: concepts/architecture.md
- Modules: concepts/modules.md
- Bundles: concepts/bundles.md
- Agents: concepts/agents.md
- Recipes: concepts/recipes.md
- Skills: concepts/skills.md
- Hooks: concepts/hooks.md
- Modes: concepts/modes.md
- Model Routing: concepts/routing.md
- Shadow Environments: concepts/shadows.md
- Tools Reference:
- Overview: tools/index.md
- Filesystem: tools/filesystem.md
- Bash: tools/bash.md
- Search (grep & glob): tools/search.md
- Web Tools: tools/web.md
- Delegate (Sub-Agents): tools/task.md
- LSP (Code Intelligence): tools/lsp.md
- Recipes Tool: tools/recipes-tool.md
- Todo: tools/todo.md
- Python Check: tools/python-check.md
- DOT Graph: tools/dot-graph.md
- Mode: tools/mode.md
- Projector: tools/projector.md
- Bundles:
- Overview: bundles/index.md
- Foundation: bundles/foundation.md
- Recipes: bundles/recipes.md
- Python Dev: bundles/python-dev.md
- Design Intelligence: bundles/design-intelligence.md
- Superpowers: bundles/superpowers.md
- DOT Graph: bundles/dot-graph.md
- Browser Tester: bundles/browser-tester.md
- Team Knowledge: bundles/team-knowledge.md
- Dev Memory: bundles/dev-memory.md
- Projector: bundles/projector.md
- Stories: bundles/stories.md
- Providers:
- Overview: providers/index.md
- Anthropic (Claude): providers/anthropic.md
- OpenAI (GPT): providers/openai.md
- Google Gemini: providers/gemini.md
- Azure OpenAI: providers/azure.md
- Ollama (Local): providers/ollama.md
- Community Providers: providers/community.md
- Applications:
- Overview: apps/index.md
- CLI App: apps/cli.md
- Chat App: apps/chat.md
- Building Your Own: apps/building-apps.md
- MCP Integration: apps/mcp.md
- Skills:
- Overview: skills/index.md
- Power Skills: skills/power-skills.md
- Playwright: skills/playwright.md
- Curl: skills/curl.md
- Image Vision: skills/image-vision.md
- Contributing:
- Overview: contributing/index.md
- Writing Modules: contributing/writing-modules.md
- Writing Bundles: contributing/writing-bundles.md
- Writing Skills: contributing/writing-skills.md
- Writing Agents: contributing/writing-agents.md
- Community: community/index.md
- Advanced:
- Overview: advanced/index.md
- Custom Bundles: advanced/custom-bundle.md
- Custom Tools: advanced/custom-tool.md
- Custom Recipes: advanced/custom-recipe.md
- MCP Integration: advanced/mcp-integration.md
- Developer Setup:
- Overview: dev-setup/index.md
- CLI Tools: dev-setup/cli-tools.md
- Shadow Workspace: dev-setup/shadow-workspace.md
- Remote Development: dev-setup/remote-dev.md
- Debugging: dev-setup/debugging.md