-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
154 lines (149 loc) · 4.62 KB
/
Copy pathmkdocs.yml
File metadata and controls
154 lines (149 loc) · 4.62 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
site_name: caw
site_description: One interface for every coding agent — a Python library and CLI for orchestrating Claude Code, Codex, and opencode.
site_url: https://zzjas.github.io/caw/
repo_url: https://github.com/zzjas/caw
repo_name: zzjas/caw
edit_uri: edit/main/docs/
copyright: Apache-2.0
theme:
name: material
logo: assets/logo.svg
favicon: assets/logo.svg
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.footer
- content.code.copy
- content.code.annotate
- content.action.edit
- search.suggest
- search.highlight
- toc.follow
nav:
- Home: index.md
- Getting started:
- Installation: getting-started/installation.md
- Quickstart: getting-started/quickstart.md
- Concepts: getting-started/concepts.md
- Guides:
- Providers: guides/providers.md
- Auto-provider mode: guides/auto-provider.md
- Models & tiers: guides/models-and-tiers.md
- Sessions: guides/sessions.md
- Resuming sessions: guides/resuming.md
- MCP servers: guides/mcp-servers.md
- ToolKit & tools: guides/toolkit.md
- Subagents: guides/subagents.md
- Provider health: guides/health.md
- Persistence: guides/persistence.md
- Display & logging: guides/display-and-logging.md
- Trajectory viewer: guides/trajectory-viewer.md
- Docker credentials: guides/docker-credentials.md
- Reference:
- API:
- Agent & Session: reference/api/agent.md
- Data models: reference/api/models.md
- Providers: reference/api/providers.md
- Health: reference/api/health.md
- Tools & MCP: reference/api/toolkit-mcp.md
- Storage: reference/api/storage.md
- Display & logging: reference/api/display.md
- Trajectory viewer: reference/api/viewer.md
- Auth: reference/api/auth.md
- CLI: reference/cli.md
- Environment variables: reference/environment.md
- About:
- Changelog: about/changelog.md
- License: about/license.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
docstring_style: google
docstring_section_style: table
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
show_source: true
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
merge_init_into_class: true
members_order: source
filters: ["!^_"]
heading_level: 2
- mkdocs-typer2:
pretty: true
- llmstxt:
full_output: llms-full.txt
markdown_description: >-
caw (Coding Agent Wrapper) is a Python library and CLI that wraps multiple
coding-agent CLIs (Claude Code, Codex, opencode) behind one Agent / Session
API, with auto-provider fallback, MCP tool servers, subagents, structured
trajectories, and Docker credential management.
sections:
Getting started:
- index.md
- getting-started/*.md
Guides:
- guides/*.md
Reference:
- reference/environment.md
- reference/cli.md
markdown_extensions:
- admonition
- attr_list
- mkdocs-click
- md_in_html
- def_list
- tables
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.details
- pymdownx.snippets:
base_path: [.]
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/zzjas/caw
- icon: fontawesome/brands/python
link: https://pypi.org/project/coding-agent-wrapper/