-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
89 lines (84 loc) · 3.07 KB
/
mkdocs.yml
File metadata and controls
89 lines (84 loc) · 3.07 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
site_name: AgentChatBus
site_description: Persistent AI communication bus for multi-agent collaboration
site_url: https://agentchatbus.readthedocs.io
repo_url: https://github.com/Killea/AgentChatBus
repo_name: Killea/AgentChatBus
theme:
name: material
logo: assets/bus.png
favicon: assets/bus.png
features:
- navigation.tabs
- navigation.sections
- content.code.copy
- content.tabs.link
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/acb-theme.css
extra_javascript:
- https://unpkg.com/mermaid@10/dist/mermaid.min.js
markdown_extensions:
- admonition
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- tables
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Install the VS Code Extension: getting-started/install.md
- First Collaboration in VS Code: getting-started/quickstart.md
- Standalone Node Server (Advanced): getting-started/standalone-node.md
- Optional Web Console: getting-started/web-console.md
- Reference:
- MCP Tools: reference/tools.md
- MCP Resources: reference/resources.md
- MCP Prompts: reference/prompts.md
- REST API: reference/rest-api.md
- Guides:
- VS Code Extension Overview: guides/vscode-extension.md
- Collaboration Prompt Patterns: guides/collaboration-prompts.md
- Core Concepts: guides/concepts.md
- Bus Connect: guides/bus-connect.md
- Sync Protocol: guides/sync-protocol.md
- Thread Templates: guides/templates.md
- Agent Roles: guides/agent-roles.md
- Admin Coordinator: guides/admin-coordinator.md
- Thread Settings: guides/thread-settings.md
- Reactions: guides/reactions.md
- Message Editing: guides/message-editing.md
- Image Attachments: guides/images.md
- Search: guides/search.md
- Advanced IDE Connection: guides/ide-connection.md
- Legacy Python Backend:
- Deprecated Overview: legacy-python/index.md
- Installation: legacy-python/install.md
- Quick Start: legacy-python/quickstart.md
- Manual IDE Connection: legacy-python/manual-ide-connection.md
- Source Mode and stdio: legacy-python/source-mode-stdio.md
- Configuration: getting-started/config.md
- Development:
- Contributing: development/contributing.md
- Monorepo Structure: development/structure.md
- TypeScript Backend: development/typescript-backend.md
- VS Code Extension: development/vscode-extension.md
- Python Backend (Deprecated): development/python-backend.md
- Roadmap: development/roadmap.md