-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-chat-cli.config.yaml
More file actions
60 lines (50 loc) · 1.48 KB
/
agent-chat-cli.config.yaml
File metadata and controls
60 lines (50 loc) · 1.48 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
# Agent Chat CLI Configuration
# System prompt loaded from file
system_prompt: system.md
# Model to use (e.g., sonnet, opus, haiku)
model: haiku
# Enable streaming responses
include_partial_messages: true
# Enable dynamic MCP server inference
mcp_server_inference: false
# Named agents with custom configurations
# agents:
# sample_agent:
# description: "Example agent for demonstration"
# prompt: "You are a helpful assistant named Foo."
# mcp_servers:
# - chrome
# - github
# disallowed_tools: []
# MCP server configurations
mcp_servers:
chrome:
description: "Browser automation and debugging capabilities for AI agents"
command: "bunx"
args:
- "chrome-devtools-mcp@latest"
disallowed_tools: []
enabled: true
github:
description: "Search remote code, PRs, issues; discover documentation and deployment guides"
prompt: "github.md"
command: "bunx"
args:
- "mcp-remote@0.1.29"
- "https://api.githubcopilot.com/mcp/readonly"
- "--header"
- "Authorization: Bearer ${GITHUB_ACCESS_TOKEN}"
disallowed_tools: []
enabled: true
notion:
description: "Access workspace documentation, wikis, OKRs, and onboarding guides with hierarchical navigation"
command: "bunx"
args:
- "mcp-remote@0.1.29"
- "https://mcp.notion.com/mcp"
disallowed_tools: []
enabled: false
# Global tool restrictions
disallowed_tools: []
# Permission mode for tool execution
permission_mode: "default"