airsltd commited on
Commit
2bf3832
·
verified ·
1 Parent(s): 02208ce

Update .opencode/oh-my-opencode.jsonc

Browse files
Files changed (1) hide show
  1. .opencode/oh-my-opencode.jsonc +95 -0
.opencode/oh-my-opencode.jsonc CHANGED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "agents": {
3
+ "Sisyphus": {
4
+ "model": "OpenCode Zen/Big Pickle",
5
+ "description": "默认 Agent. A powerful AI orchestrator for OpenCode. Plans, delegates, and executes complex tasks using specialized subagents with aggressive parallel execution."
6
+ },
7
+ "oracle": {
8
+ "model": "OpenCode Zen/Big Pickle",
9
+ "description": "Architecture, code review, strategy. Uses GPT-5.2 for its stellar logical reasoning and deep analysis."
10
+ },
11
+ "librarian": {
12
+ "model": "OpenCode Zen/Big Pickle",
13
+ "description": "Multi-repo analysis, doc lookup, implementation examples. Uses GLM-4.7 Free for deep codebase understanding."
14
+ },
15
+ "explore": {
16
+ "model": "OpenCode Zen/Big Pickle",
17
+ "description": "Fast codebase exploration and pattern matching. Uses Grok for blazing fast code exploration."
18
+ },
19
+ "frontend-ui-ux-engineer": {
20
+ "model": "OpenCode Zen/Big Pickle",
21
+ "description": "A designer turned developer. Builds gorgeous UIs. Gemini excels at creative, beautiful UI code."
22
+ },
23
+ "document-writer": {
24
+ "model": "OpenCode Zen/Big Pickle",
25
+ "description": "Technical writing expert. Gemini is a wordsmith—writes prose that flows."
26
+ },
27
+ "multimodal-looker": {
28
+ "model": "OpenCode Zen/Big Pickle",
29
+ "description": "Visual content specialist. Analyzes PDFs, images, diagrams to extract information."
30
+ },
31
+ "Prometheus (Planner)": {
32
+ "model": "OpenCode Zen/Big Pickle",
33
+ "description": "Planning and strategy agent. Uses Big Pickle for comprehensive planning and task organization."
34
+ },
35
+ "orchestrator-sisyphus": {
36
+ "model": "OpenCode Zen/Big Pickle",
37
+ "description": "Orchestrates work via sisyphus_task() to complete ALL tasks in a todo list until fully done"
38
+ }
39
+ },
40
+ "background_tasks": {
41
+ "enabled": true,
42
+ "max_concurrent": 3
43
+ },
44
+ "todo_enforcement": {
45
+ "enabled": true,
46
+ "auto_continue": true
47
+ },
48
+ "comment_checker": {
49
+ "enabled": true,
50
+ "minimize_comments": true
51
+ },
52
+ "lsp_tools": {
53
+ "enabled": true,
54
+ "ast_grep": true,
55
+ "refactoring": true
56
+ },
57
+ "mcp": {
58
+ "enabled": true,
59
+ "builtin": {
60
+ "websearch": true,
61
+ "context7": true,
62
+ "grep_app": true
63
+ }
64
+ },
65
+ "skills": {
66
+ "enabled": true,
67
+ "builtin": {
68
+ "playwright": true
69
+ },
70
+ "custom": {
71
+ "opencode-env-generator": {
72
+ "enabled": true,
73
+ "auto_execute": true,
74
+ "triggers": [
75
+ "server-start",
76
+ "connection-established"
77
+ ]
78
+ }
79
+ }
80
+ },
81
+ "permission": {
82
+ "skill": {
83
+ "*": "allow",
84
+ "opencode-server-info": "allow"
85
+ }
86
+ },
87
+ "claude_code": {
88
+ "compatibility": true,
89
+ "hooks": true,
90
+ "commands": true,
91
+ "skills": true,
92
+ "agents": true,
93
+ "mcp": true
94
+ }
95
+ }