-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
78 lines (72 loc) · 2.2 KB
/
mkdocs.yml
File metadata and controls
78 lines (72 loc) · 2.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
# MkDocs configuration for Phased Agent Workflow documentation
#
# Build locally: mkdocs build
# Serve locally: mkdocs serve (then visit http://localhost:8000)
# Deploy to GH Pages: mkdocs gh-deploy --force
#
# See https://www.mkdocs.org/user-guide/configuration/ for options
# See https://squidfunk.github.io/mkdocs-material/ for Material theme docs
site_name: Phased Agent Workflow (PAW)
site_url: https://lossyrob.github.io/phased-agent-workflow
site_description: VS Code extension for coordinating multi-stage AI agent workflows
site_author: PAW Contributors
repo_url: https://github.com/lossyrob/phased-agent-workflow
repo_name: lossyrob/phased-agent-workflow
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- search.suggest
- search.highlight
- content.code.copy
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
markdown_extensions:
- attr_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- admonition
- pymdownx.details
- toc:
permalink: true
nav:
- Home: index.md
- User Guide:
- Getting Started: guide/index.md
- VS Code Extension: guide/vscode-extension.md
- CLI Installation: guide/cli-installation.md
- Workflow Modes: guide/workflow-modes.md
- Workflow Presets: guide/workflow-presets.md
- Stage Transitions: guide/stage-transitions.md
- Workflows: guide/two-workflows.md
- Society-of-Thought Review: guide/society-of-thought-review.md
- Specification:
- Overview: specification/index.md
- Implementation Workflow: specification/implementation.md
- Review Workflow: specification/review.md
- Reference:
- Agents: reference/agents.md
- Artifacts: reference/artifacts.md