-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_pkgdown.yml
More file actions
262 lines (235 loc) · 6.21 KB
/
Copy path_pkgdown.yml
File metadata and controls
262 lines (235 loc) · 6.21 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
url: https://kaipingyang.github.io/codeagent
template:
bootstrap: 5
home:
title: codeagent — R-native coding agent
description: >
An R-native agentic coding assistant built on ellmer and btw. Full-featured
harness with streaming, tool execution, permissions, compaction, skills,
multi-agent coordination, a CLI REPL, and a Shiny app.
navbar:
structure:
left: [intro, reference, articles, news]
right: [github]
reference:
- title: "Core Client"
desc: "Create and run the agent."
contents:
- codeagent_client
- codeagent_client_config
- codeagent
- agent_loop
- use_codeagent_settings
- use_codeagent_setup
- title: "Shiny App"
desc: "Interactive chat interface."
contents:
- codeagent_app
- title: "IDE Addins"
desc: "RStudio / Positron keyboard-shortcut integration."
contents:
- codeagent_addin
- codeagent_addin_selection
- title: "CLI"
desc: "Terminal REPL and command-line interface."
contents:
- codeagent_console
- install_codeagent_cli
- title: "Core tools"
desc: "Built-in tool factories registered on the Chat."
contents:
- bash_tool
- read_tool
- write_tool
- edit_tool
- multi_edit_tool
- glob_tool
- grep_tool
- ls_tool
- run_r_tool
- explore_data_tool
- register_builtin_tools
- register_explore_data_tool
- title: "Permissions"
desc: "Seven-mode permission gate and rule system."
contents:
- check_permission
- PermissionMode
- PermissionRule
- title: "Session Management"
desc: "Save, load, and navigate conversation history."
contents:
- list_sessions
- save_session
- restore_session_into_chat
- get_session_messages
- fork_session
- rename_session
- tag_session
- truncate_chat_turns
- title: "Memory"
desc: "Persistent cross-session memory."
contents:
- write_memory
- list_memories
- recall_memories
- recall_memories_relevant
- delete_memory
- read_todos
- title: "Multi-Agent Teams"
desc: "Parallel agent coordination."
contents:
- team_run
- team_coordinate
- board_create
- board_add_task
- board_claim
- board_complete
- board_status
- board_send_message
- board_messages
- team_lead
- team_dashboard
- board_reclaim_stale
- board_watch
- title: "Skills"
desc: "Skill discovery and loading."
contents:
- list_skills_meta
- load_skill_prompt
- build_skill_hint
- install_ds_skills
- title: "MCP"
desc: "Model Context Protocol client and server."
contents:
- codeagent_mcp_server
- register_mcp_client
- r_mcp_server
- title: "RAG"
desc: "Codebase semantic retrieval."
contents:
- build_codebase_store
- register_rag_tool
- title: "Hooks"
desc: "Lifecycle event hooks."
contents:
- HookRegistry
- HookEvent
- title: "Utilities"
desc: "Miscellaneous helpers."
contents:
- switch_model
- update_model_prices
- verify_r_tests
- verify_r_lints
- codeagent_otel_status
- use_codeagent_md
- title: "Additional tools & registration"
desc: "Tool factories and registration."
contents:
- agent_tool
- ask_user_tool
- notebook_edit_tool
- notebook_read_tool
- todo_write_tool
- web_fetch_tool
- web_search_tool
- register_agent_tool
- register_ask_user_tool
- register_btw_file_tools
- register_notebook_tools
- register_r_tools
- register_task_tools
- register_web_tools
- enable_btw_file_tools
- register_tool_meta
- tool_result
- install_permission_gate
# --- Data Shield: engine + lifecycle ---
- DataShield
- refresh_data_shield_context
# --- Data Shield: strategies (compose via codeagent_client(data_shield=)) ---
- shield_describe
- shield_egress
- shield_regex
- shield_ingress
- shield_tool_policy
- shield_sandbox
- shield_reviewer
# --- Data Shield: ready-made strategy-combination presets ---
- shield_preset
- shield_preset_strict
- shield_preset_balanced
- shield_preset_clinical
# --- Data Shield: optional scanners / code-safety auditors ---
- data_shield_ocr_scanner
- audit_code_tool
- title: "Data exploration (WEAR)"
desc: "Interactive data exploration and reporting."
contents:
- wear_explore
- generate_wear_report
- title: "Sessions & settings"
desc: "Session storage and settings helpers."
contents:
- delete_session
- get_session_info
- migrate_sessions
- load_settings
- save_user_settings
- migrate_config_dir
- title: "Harness internals"
desc: "R6 controllers and content/permission types (advanced)."
contents:
- BudgetTracker
- CompactionController
- ContentReplacementState
- DenialTracker
- StreamingToolExecutor
- PreToolHook
- PostToolHook
- PermissionResultAllow
- PermissionResultDeny
- TextBlock
- ThinkingBlock
- ToolResultBlock
- ToolUseBlock
- title: "Streaming"
desc: "Per-turn streaming primitives with typed content callbacks."
contents:
- codeagent_stream
- codeagent_stream_async
- title: "Guided tasks"
desc: "One-shot guided workflows (reuse btw tasks)."
contents:
- codeagent_task
- codeagent_create_skill
- codeagent_create_readme
- codeagent_init_context
articles:
- title: "Getting Started"
navbar: ~
contents:
- getting-started
- title: "Configuration"
navbar: "Configuration"
contents:
- configuration
- permissions
- models
- compaction
- skills-usage
- title: "Advanced"
navbar: "Advanced"
contents:
- team-coordination
- data-exploration
- title: "Embedding / Backend"
navbar: "Embedding"
contents:
- backend-integration
- title: "Data Shield"
navbar: "Data Shield"
contents:
- data-shield
- data-shield-cn