-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-chat-cli.config.yaml
More file actions
46 lines (38 loc) · 1.16 KB
/
agent-chat-cli.config.yaml
File metadata and controls
46 lines (38 loc) · 1.16 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
# Agent Chat CLI Configuration
# See: https://platform.claude.com/docs/en/agent-sdk/python#claude-agent-options
system_prompt: system.md
model: haiku
# Enable streaming
include_partial_messages: true
# Global tool restrictions
disallowed_tools: ["Bash"]
# Eg, 'default', 'bypassPermissions'
permission_mode: "default"
# MCP server configurations
mcp_servers:
chrome:
description: "Browser automation and debugging capabilities for AI agents"
command: "npx"
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: "npx"
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: "npx"
args:
- "mcp-remote@0.1.29"
- "https://mcp.notion.com/mcp"
disallowed_tools: []
enabled: false