-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (68 loc) · 1.98 KB
/
mkdocs.yml
File metadata and controls
72 lines (68 loc) · 1.98 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
site_name: Code-Swarm Documentation
site_description: Multi-Agent AI Swarm for Software Engineering with LangGraph + Simone-MCP
site_url: https://opensincode.github.io/Code-Swarm
repo_url: https://github.com/OpenSIN-Code/Code-Swarm
repo_name: Code-Swarm
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: blue
- scheme: slate
primary: indigo
accent: cyan
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- search.suggest
- search.highlight
nav:
- Home: index.md
- Getting Started: getting-started.md
- Architecture:
- Overview: architecture/overview.md
- Agents & Personas: architecture/agents.md
- LangGraph Pipeline: architecture/langgraph.md
- Simone-MCP Integration: architecture/simone-mcp.md
- API Reference:
- REST API: api/rest.md
- gRPC API: api/grpc.md
- WebSocket Streaming: api/websocket.md
- Agents Endpoint: api/agents.md
- Tasks Endpoint: api/tasks.md
- Guides:
- Installation: guides/installation.md
- Configuration: guides/configuration.md
- CLI Usage: guides/cli.md
- Deployment to Vercel: guides/deployment-vercel.md
- Kubernetes Deployment: guides/deployment-kubernetes.md
- Docker Setup: guides/deployment-docker.md
- Development:
- Setup Dev Environment: development/setup.md
- Running Tests: development/testing.md
- Contributing Guide: development/contributing.md
- Security Best Practices: development/security.md
- Migration Guide: migration.md
- FAQ: faq.md
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- admonition
- codehilite
- toc:
permalink: true
plugins:
- search
- minify:
minify_html: true