-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
86 lines (86 loc) · 1.81 KB
/
opencode.json
File metadata and controls
86 lines (86 loc) · 1.81 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
{
"$schema": "https://opencode.ai/config.json",
"model": "zai-coding-plan/glm-5",
"permission": {
"skill": {
"*": "allow"
},
"todoread": "allow",
"todowrite": "allow"
},
"small_model": "zai-coding-plan/glm-4.5",
"compaction": {
"auto": true,
"prune": true
},
"watcher": {
"ignore": [
"node_modules/**",
"dist/**",
".git/**",
"*.lock",
"**/*.log",
".cache/**",
"build/**",
"__pycache__/**",
".venv/**",
"venv/**"
]
},
"plugin": [
"@nick-vi/opencode-type-inject@latest",
"opencode-historian@latest",
"opencode-worktree@latest",
"oh-my-opencode@latest"
],
"enabled_providers": [
"zai-coding-plan",
"kimi-for-coding",
"opencode",
"xai"
],
"mcp": {
"vision": {
"command": [
"npx",
"-y",
"@z_ai/mcp-server"
],
"enabled": true,
"environment": {
"Z_AI_API_KEY": "{env:Z_AI_API_KEY}",
"Z_AI_MODE": "ZAI"
},
"type": "local"
},
"github": {
"enabled": false,
"headers": {
"Authorization": "Bearer {env:GITHUB_PAT_TOKEN}"
},
"type": "remote",
"url": "https://api.githubcopilot.com/mcp"
},
"jira": {
"command": [
"uvx",
"mcp-atlassian"
],
"enabled": false,
"environment": {
"CONFLUENCE_API_TOKEN": "{env:CONFLUENCE_API_TOKEN}",
"CONFLUENCE_URL": "{env:CONFLUENCE_URL}",
"CONFLUENCE_USERNAME": "{env:JIRA_USERNAME}",
"JIRA_API_TOKEN": "{env:JIRA_API_TOKEN}",
"JIRA_URL": "{env:JIRA_URL}",
"JIRA_USERNAME": "{env:JIRA_USERNAME}"
},
"type": "local"
},
"figma-desktop": {
"enabled": false,
"type": "remote",
"url": "http://127.0.0.1:3845/mcp"
}
}
}