opencode-agent-kit 1.0.17 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -6
- package/bin/commands/init.mjs +29 -2
- package/package.json +2 -1
- package/template/.opencode/.agents.md +55 -0
- package/template/.opencode/agents/flutter-developer.md +1 -1
- package/template/.opencode/agents/nuxt-frontend-developer.md +4 -4
- package/template/.opencode/agents/react-frontend-developer.md +4 -4
- package/template/.opencode/commands/recall.md +19 -0
- package/template/.opencode/commands/remember.md +19 -0
- package/template/.opencode/docs/frontend/nuxt/COMPLETION_REPORT.md +1 -1
- package/template/.opencode/docs/frontend/nuxt/INDEX.md +1 -1
- package/template/.opencode/docs/frontend/nuxt/QUICK_START.md +2 -2
- package/template/.opencode/docs/frontend/nuxt/README.md +8 -8
- package/template/.opencode/docs/frontend/nuxt/SUMMARY.md +1 -1
- package/template/.opencode/docs/frontend/nuxt/TESTING_GUIDE.md +1 -1
- package/template/.opencode/docs/frontend/nuxt/WORKFLOWS.md +1 -1
- package/template/.opencode/docs/frontend/react/CHEATSHEET.md +1 -1
- package/template/.opencode/docs/frontend/react/INDEX.md +9 -9
- package/template/.opencode/docs/frontend/react/QUICK_START.md +1 -1
- package/template/.opencode/docs/frontend/react/README.md +1 -1
- package/template/.opencode/docs/mobile/flutter/README.md +1 -1
- package/template/.opencode/hooks/agentmemory-start.sh +17 -0
- package/template/.opencode/instructions/INSTRUCTIONS.md +49 -0
- package/template/.opencode/plugins/agentmemory-capture.ts +651 -0
- package/template/.opencode/skills/agentmemory/SKILL.md +97 -0
- package/template/.opencode/skills/impeccable/SKILL.md +5 -2
- package/template/opencode.json +32 -12
- package/template/.opencode/config.example.json +0 -309
- package/template/.opencode/config.json +0 -285
- package/template/.opencode/skills/continuous-learning/config.json +0 -18
- package/template/.opencode/skills/continuous-learning-v2/config.json +0 -41
- package/template/.opencode/skills/frontend-design/SKILL.md +0 -89
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agentmemory
|
|
3
|
+
description: Persistent cross-session memory for AI coding agents. Use when working across multiple sessions, recalling past context, saving decisions, or searching historical observations.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agentmemory Skill
|
|
7
|
+
|
|
8
|
+
Provides persistent memory capabilities for coding agents using the agentmemory MCP server.
|
|
9
|
+
|
|
10
|
+
## When to Activate
|
|
11
|
+
|
|
12
|
+
- Starting a new session that builds on previous work
|
|
13
|
+
- User asks "remember this", "do you recall", "what did we do last time"
|
|
14
|
+
- Before making architectural decisions that past context could inform
|
|
15
|
+
- After discovering a bug, to save the pattern for future prevention
|
|
16
|
+
- After making a design decision, to persist the rationale
|
|
17
|
+
- When the user asks about project history or session timeline
|
|
18
|
+
|
|
19
|
+
## Core Tools
|
|
20
|
+
|
|
21
|
+
### memory_save
|
|
22
|
+
Save an insight, decision, or fact to long-term memory.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
memory_save(
|
|
26
|
+
content: "We chose jose over jsonwebtoken for Edge Runtime compatibility",
|
|
27
|
+
concepts: ["jwt-auth", "edge-runtime", "jose-library", "auth-middleware"],
|
|
28
|
+
files: ["src/middleware/auth.ts"],
|
|
29
|
+
type: "architecture"
|
|
30
|
+
)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### memory_recall
|
|
34
|
+
Search past observations by exact keywords.
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
memory_recall(query: "jwt auth setup", limit: 5)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### memory_smart_search
|
|
41
|
+
Hybrid semantic+keyword search. Use for fuzzy or conceptual queries.
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
memory_smart_search(query: "how did we handle database performance", limit: 10)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### memory_sessions
|
|
48
|
+
List recent sessions with status and observation counts.
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
memory_sessions(limit: 10)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### memory_file_history
|
|
55
|
+
Get past observations about specific files across all sessions. Call before editing a file.
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
memory_file_history(files: ["src/middleware/auth.ts"])
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### memory_lesson_save / memory_lesson_recall
|
|
62
|
+
Save and retrieve lessons learned with confidence scoring.
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
memory_lesson_save(
|
|
66
|
+
content: "Always validate JWT expiry before decoding payload",
|
|
67
|
+
concepts: ["jwt-validation", "security"],
|
|
68
|
+
domain: "backend"
|
|
69
|
+
)
|
|
70
|
+
memory_lesson_recall(query: "jwt security", limit: 5)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### memory_governance_delete
|
|
74
|
+
Delete specific memories. Requires explicit user confirmation.
|
|
75
|
+
|
|
76
|
+
### memory_patterns
|
|
77
|
+
Detect recurring patterns across sessions.
|
|
78
|
+
|
|
79
|
+
### memory_consolidate
|
|
80
|
+
Run the 4-tier memory consolidation pipeline.
|
|
81
|
+
|
|
82
|
+
## Behavior Rules
|
|
83
|
+
|
|
84
|
+
1. **Proactive recall**: Before implementing new features or fixing bugs, check agentmemory for relevant past context.
|
|
85
|
+
2. **Auto-save**: After discovering a bug, making an architectural decision, or learning a project convention, save it.
|
|
86
|
+
3. **Session awareness**: Use `memory_sessions` when the user asks about project history or past work.
|
|
87
|
+
4. **File context**: Use `memory_file_history` before editing files to surface past issues or decisions about that file.
|
|
88
|
+
5. **Never hallucinate**: Only present what the MCP tools return. Report "no results found" when appropriate.
|
|
89
|
+
6. **Tool prefix**: All agentmemory tools use the `agentmemory_memory_` prefix in the tool list. Use the exact names as listed.
|
|
90
|
+
|
|
91
|
+
## Integration Notes
|
|
92
|
+
|
|
93
|
+
- Server runs on `http://localhost:3111` by default
|
|
94
|
+
- Real-time viewer at `http://localhost:3113`
|
|
95
|
+
- Start the server with `npx @agentmemory/agentmemory`
|
|
96
|
+
- 53 MCP tools available when server is running
|
|
97
|
+
- 22 auto-capture hooks via plugin record session lifecycle automatically
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: impeccable
|
|
3
|
-
description: "
|
|
4
|
-
|
|
3
|
+
description: "Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks."
|
|
4
|
+
argument-hint: "[{{command_hint}}] [target]"
|
|
5
|
+
user-invocable: true
|
|
6
|
+
allowed-tools:
|
|
7
|
+
- Bash(npx impeccable *)
|
|
5
8
|
license: Apache 2.0. Based on Anthropic's frontend-design skill. See NOTICE.md for attribution.
|
|
6
9
|
---
|
|
7
10
|
|
package/template/opencode.json
CHANGED
|
@@ -72,8 +72,15 @@
|
|
|
72
72
|
"Authorization": "Bearer ${SONARQUBE_TOKEN}",
|
|
73
73
|
"SONARQUBE_TOOLSETS": "analysis,issues,security-hotspots,quality-gates,rules,duplications,measures,dependency-risks,coverage,sources,languages,portfolios,system,webhooks"
|
|
74
74
|
}
|
|
75
|
+
},
|
|
76
|
+
"agentmemory": {
|
|
77
|
+
"type": "local",
|
|
78
|
+
"command": ["bash", ".opencode/hooks/agentmemory-start.sh"],
|
|
79
|
+
"enabled": true,
|
|
80
|
+
"description": "Persistent cross-session memory with 53 tools (save, recall, smart search, sessions, file history, lessons)"
|
|
75
81
|
}
|
|
76
82
|
},
|
|
83
|
+
"plugin": [".opencode/plugins/agentmemory-capture.ts"],
|
|
77
84
|
"agent": {
|
|
78
85
|
"leader": {
|
|
79
86
|
"description": "IT Leader & Technical Project Manager — analyzes requirements, designs architecture, decomposes tasks, delegates to subagents, and unifies outputs",
|
|
@@ -98,6 +105,7 @@
|
|
|
98
105
|
"figma_*": "ask",
|
|
99
106
|
"playwright_*": "allow",
|
|
100
107
|
"postman_*": "allow",
|
|
108
|
+
"agentmemory_*": "allow",
|
|
101
109
|
"task": { "*": "allow" }
|
|
102
110
|
}
|
|
103
111
|
},
|
|
@@ -121,7 +129,8 @@
|
|
|
121
129
|
"nuxt_*": "allow",
|
|
122
130
|
"nuxt-ui_*": "allow",
|
|
123
131
|
"figma_*": "ask",
|
|
124
|
-
"playwright_*": "allow"
|
|
132
|
+
"playwright_*": "allow",
|
|
133
|
+
"agentmemory_*": "allow"
|
|
125
134
|
}
|
|
126
135
|
},
|
|
127
136
|
"frontend-react": {
|
|
@@ -142,7 +151,8 @@
|
|
|
142
151
|
"npx playwright*": "allow"
|
|
143
152
|
},
|
|
144
153
|
"figma_*": "ask",
|
|
145
|
-
"playwright_*": "allow"
|
|
154
|
+
"playwright_*": "allow",
|
|
155
|
+
"agentmemory_*": "allow"
|
|
146
156
|
}
|
|
147
157
|
},
|
|
148
158
|
"backend": {
|
|
@@ -161,7 +171,8 @@
|
|
|
161
171
|
"bun *": "allow",
|
|
162
172
|
"yarn *": "allow"
|
|
163
173
|
},
|
|
164
|
-
"postman_*": "allow"
|
|
174
|
+
"postman_*": "allow",
|
|
175
|
+
"agentmemory_*": "allow"
|
|
165
176
|
}
|
|
166
177
|
},
|
|
167
178
|
"ci3": {
|
|
@@ -179,7 +190,8 @@
|
|
|
179
190
|
"git diff": "allow",
|
|
180
191
|
"git log*": "allow"
|
|
181
192
|
},
|
|
182
|
-
"postman_*": "allow"
|
|
193
|
+
"postman_*": "allow",
|
|
194
|
+
"agentmemory_*": "allow"
|
|
183
195
|
}
|
|
184
196
|
},
|
|
185
197
|
"laravel": {
|
|
@@ -197,7 +209,8 @@
|
|
|
197
209
|
"git diff": "allow",
|
|
198
210
|
"git log*": "allow"
|
|
199
211
|
},
|
|
200
|
-
"postman_*": "allow"
|
|
212
|
+
"postman_*": "allow",
|
|
213
|
+
"agentmemory_*": "allow"
|
|
201
214
|
}
|
|
202
215
|
},
|
|
203
216
|
"designer": {
|
|
@@ -217,7 +230,8 @@
|
|
|
217
230
|
},
|
|
218
231
|
"stitch_*": "allow",
|
|
219
232
|
"figma_*": "ask",
|
|
220
|
-
"nuxt-ui_*": "allow"
|
|
233
|
+
"nuxt-ui_*": "allow",
|
|
234
|
+
"agentmemory_*": "allow"
|
|
221
235
|
}
|
|
222
236
|
},
|
|
223
237
|
"reviewer": {
|
|
@@ -237,7 +251,8 @@
|
|
|
237
251
|
"yarn *": "allow",
|
|
238
252
|
"npx playwright*": "allow"
|
|
239
253
|
},
|
|
240
|
-
"playwright_*": "allow"
|
|
254
|
+
"playwright_*": "allow",
|
|
255
|
+
"agentmemory_*": "allow"
|
|
241
256
|
}
|
|
242
257
|
},
|
|
243
258
|
"database": {
|
|
@@ -255,7 +270,8 @@
|
|
|
255
270
|
"pnpm *": "allow",
|
|
256
271
|
"bun *": "allow",
|
|
257
272
|
"yarn *": "allow"
|
|
258
|
-
}
|
|
273
|
+
},
|
|
274
|
+
"agentmemory_*": "allow"
|
|
259
275
|
}
|
|
260
276
|
},
|
|
261
277
|
"devops": {
|
|
@@ -274,7 +290,8 @@
|
|
|
274
290
|
"bun *": "allow",
|
|
275
291
|
"yarn *": "allow",
|
|
276
292
|
"docker *": "allow"
|
|
277
|
-
}
|
|
293
|
+
},
|
|
294
|
+
"agentmemory_*": "allow"
|
|
278
295
|
}
|
|
279
296
|
},
|
|
280
297
|
"seo": {
|
|
@@ -292,7 +309,8 @@
|
|
|
292
309
|
"git diff": "allow",
|
|
293
310
|
"git log*": "allow"
|
|
294
311
|
},
|
|
295
|
-
"nuxt_*": "allow"
|
|
312
|
+
"nuxt_*": "allow",
|
|
313
|
+
"agentmemory_*": "allow"
|
|
296
314
|
}
|
|
297
315
|
},
|
|
298
316
|
"android": {
|
|
@@ -310,7 +328,8 @@
|
|
|
310
328
|
"gradle *": "allow"
|
|
311
329
|
},
|
|
312
330
|
"figma_*": "ask",
|
|
313
|
-
"playwright_*": "allow"
|
|
331
|
+
"playwright_*": "allow",
|
|
332
|
+
"agentmemory_*": "allow"
|
|
314
333
|
}
|
|
315
334
|
},
|
|
316
335
|
"flutter": {
|
|
@@ -328,7 +347,8 @@
|
|
|
328
347
|
"dart *": "allow"
|
|
329
348
|
},
|
|
330
349
|
"figma_*": "ask",
|
|
331
|
-
"playwright_*": "allow"
|
|
350
|
+
"playwright_*": "allow",
|
|
351
|
+
"agentmemory_*": "allow"
|
|
332
352
|
}
|
|
333
353
|
}
|
|
334
354
|
}
|
|
@@ -1,309 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://opencode.ai/config.json",
|
|
3
|
-
"description": "IT Team Agent Configuration Example - Copy ke config.json dan sesuaikan model sesuai kebutuhan",
|
|
4
|
-
"note": "Opsional: Jika tidak set model per agent, subagent akan inherit dari primary (IT Leader). Untuk customize, uncomment model line per agent.",
|
|
5
|
-
"mcp": {
|
|
6
|
-
"nuxt": {
|
|
7
|
-
"type": "remote",
|
|
8
|
-
"url": "https://nuxt.com/mcp",
|
|
9
|
-
"enabled": true,
|
|
10
|
-
"description": "Nuxt documentation, blog posts, and deployment guides"
|
|
11
|
-
},
|
|
12
|
-
"nuxt-ui": {
|
|
13
|
-
"type": "remote",
|
|
14
|
-
"url": "https://ui.nuxt.com/mcp",
|
|
15
|
-
"enabled": true,
|
|
16
|
-
"description": "Nuxt UI component documentation and examples"
|
|
17
|
-
},
|
|
18
|
-
"figma": {
|
|
19
|
-
"type": "stdio",
|
|
20
|
-
"command": "npx",
|
|
21
|
-
"args": ["-y", "@modelcontextprotocol/server-figma"],
|
|
22
|
-
"env": {
|
|
23
|
-
"FIGMA_ACCESS_TOKEN": "${FIGMA_ACCESS_TOKEN}"
|
|
24
|
-
},
|
|
25
|
-
"enabled": false,
|
|
26
|
-
"description": "Figma design file access (requires FIGMA_ACCESS_TOKEN)"
|
|
27
|
-
},
|
|
28
|
-
"playwright": {
|
|
29
|
-
"type": "stdio",
|
|
30
|
-
"command": "npx",
|
|
31
|
-
"args": ["-y", "@modelcontextprotocol/server-playwright"],
|
|
32
|
-
"enabled": true,
|
|
33
|
-
"description": "Browser automation and E2E testing with Playwright"
|
|
34
|
-
},
|
|
35
|
-
"stitch": {
|
|
36
|
-
"type": "remote",
|
|
37
|
-
"url": "https://stitch.googleapis.com/mcp",
|
|
38
|
-
"headers": {
|
|
39
|
-
"X-Goog-Api-Key": "${STITCH_API_KEY}"
|
|
40
|
-
},
|
|
41
|
-
"enabled": false,
|
|
42
|
-
"description": "Google Stitch AI design generation (requires STITCH_API_KEY)"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"agent": {
|
|
46
|
-
"leader": {
|
|
47
|
-
"description": "IT Leader & Technical Project Manager — analyzes requirements, designs architecture, decomposes tasks, delegates to subagents, and unifies outputs",
|
|
48
|
-
"mode": "primary",
|
|
49
|
-
"prompt": "{file:.opencode/agents/it-leader.md}",
|
|
50
|
-
"model": "opencode/claude-opus-4.7",
|
|
51
|
-
"temperature": 0.4,
|
|
52
|
-
"color": "#8b5cf6",
|
|
53
|
-
"permission": {
|
|
54
|
-
"edit": "allow",
|
|
55
|
-
"bash": {
|
|
56
|
-
"*": "ask",
|
|
57
|
-
"npm *": "allow",
|
|
58
|
-
"pnpm *": "allow",
|
|
59
|
-
"bun *": "allow",
|
|
60
|
-
"yarn *": "allow",
|
|
61
|
-
"git status": "allow",
|
|
62
|
-
"git diff": "allow",
|
|
63
|
-
"git log*": "allow",
|
|
64
|
-
"npx playwright*": "allow"
|
|
65
|
-
},
|
|
66
|
-
"webfetch": "allow",
|
|
67
|
-
"skill": {
|
|
68
|
-
"*": "allow"
|
|
69
|
-
},
|
|
70
|
-
"mcp": {
|
|
71
|
-
"nuxt": "allow",
|
|
72
|
-
"nuxt-ui": "allow",
|
|
73
|
-
"figma": "ask",
|
|
74
|
-
"playwright": "allow"
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"frontend": {
|
|
79
|
-
"description": "Expert frontend developer for Nuxt.js, Vue, and modern web technologies with MCP integration (subagent of IT Leader)",
|
|
80
|
-
"mode": "subagent",
|
|
81
|
-
"prompt": "{file:.opencode/agents/nuxt-frontend-developer.md}",
|
|
82
|
-
"model": "opencode/claude-sonnet-4.5",
|
|
83
|
-
"temperature": 0.4,
|
|
84
|
-
"color": "#3b82f6",
|
|
85
|
-
"permission": {
|
|
86
|
-
"edit": "allow",
|
|
87
|
-
"bash": {
|
|
88
|
-
"*": "ask",
|
|
89
|
-
"npm *": "allow",
|
|
90
|
-
"pnpm *": "allow",
|
|
91
|
-
"bun *": "allow",
|
|
92
|
-
"yarn *": "allow",
|
|
93
|
-
"git status": "allow",
|
|
94
|
-
"git diff": "allow",
|
|
95
|
-
"git log*": "allow",
|
|
96
|
-
"npx playwright*": "allow"
|
|
97
|
-
},
|
|
98
|
-
"webfetch": "allow",
|
|
99
|
-
"skill": {
|
|
100
|
-
"*": "allow"
|
|
101
|
-
},
|
|
102
|
-
"mcp": {
|
|
103
|
-
"nuxt": "allow",
|
|
104
|
-
"nuxt-ui": "allow",
|
|
105
|
-
"figma": "ask",
|
|
106
|
-
"playwright": "allow"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
"backend": {
|
|
111
|
-
"description": "Expert backend developer for Node.js, Express, Prisma, and PostgreSQL (subagent of IT Leader)",
|
|
112
|
-
"mode": "subagent",
|
|
113
|
-
"prompt": "{file:.opencode/agents/node-backend-developer.md}",
|
|
114
|
-
"model": "opencode/claude-sonnet-4.5",
|
|
115
|
-
"temperature": 0.4,
|
|
116
|
-
"color": "#10b981",
|
|
117
|
-
"permission": {
|
|
118
|
-
"edit": "allow",
|
|
119
|
-
"bash": {
|
|
120
|
-
"*": "ask",
|
|
121
|
-
"npm *": "allow",
|
|
122
|
-
"pnpm *": "allow",
|
|
123
|
-
"bun *": "allow",
|
|
124
|
-
"yarn *": "allow",
|
|
125
|
-
"git status": "allow",
|
|
126
|
-
"git diff": "allow",
|
|
127
|
-
"git log*": "allow"
|
|
128
|
-
},
|
|
129
|
-
"webfetch": "allow",
|
|
130
|
-
"skill": {
|
|
131
|
-
"*": "allow"
|
|
132
|
-
},
|
|
133
|
-
"mcp": {}
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"ci3": {
|
|
137
|
-
"description": "CodeIgniter 3 MVC fullstack developer for REST API, JWT, MySQL/PostgreSQL (subagent of IT Leader)",
|
|
138
|
-
"mode": "subagent",
|
|
139
|
-
"prompt": "{file:.opencode/agents/code-igniter-3-fullstack.md}",
|
|
140
|
-
"model": "opencode/claude-sonnet-4.5",
|
|
141
|
-
"temperature": 0.3,
|
|
142
|
-
"color": "#84cc16",
|
|
143
|
-
"permission": {
|
|
144
|
-
"edit": "allow",
|
|
145
|
-
"webfetch": "allow",
|
|
146
|
-
"skill": { "*": "allow" },
|
|
147
|
-
"bash": {
|
|
148
|
-
"*": "ask",
|
|
149
|
-
"git status": "allow",
|
|
150
|
-
"git diff": "allow",
|
|
151
|
-
"git log*": "allow"
|
|
152
|
-
},
|
|
153
|
-
"mcp": {}
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
"laravel": {
|
|
157
|
-
"description": "Laravel backend engineer for REST API, Service/Repository, JWT, MySQL/PostgreSQL (subagent of IT Leader)",
|
|
158
|
-
"mode": "subagent",
|
|
159
|
-
"prompt": "{file:.opencode/agents/laravel-advanced.md}",
|
|
160
|
-
"model": "opencode/claude-sonnet-4.5",
|
|
161
|
-
"temperature": 0.3,
|
|
162
|
-
"color": "#f97316",
|
|
163
|
-
"permission": {
|
|
164
|
-
"edit": "allow",
|
|
165
|
-
"webfetch": "allow",
|
|
166
|
-
"skill": { "*": "allow" },
|
|
167
|
-
"bash": {
|
|
168
|
-
"*": "ask",
|
|
169
|
-
"git status": "allow",
|
|
170
|
-
"git diff": "allow",
|
|
171
|
-
"git log*": "allow"
|
|
172
|
-
},
|
|
173
|
-
"mcp": {}
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"designer": {
|
|
177
|
-
"description": "UI/UX Designer specializing in design systems, Google Stitch, Figma, accessibility, and design-to-code handoff (subagent of IT Leader)",
|
|
178
|
-
"mode": "subagent",
|
|
179
|
-
"prompt": "{file:.opencode/agents/ui-ux-designer.md}",
|
|
180
|
-
"model": "opencode/claude-sonnet-4",
|
|
181
|
-
"temperature": 0.5,
|
|
182
|
-
"color": "#f59e0b",
|
|
183
|
-
"permission": {
|
|
184
|
-
"edit": "allow",
|
|
185
|
-
"bash": {
|
|
186
|
-
"*": "ask",
|
|
187
|
-
"git status": "allow",
|
|
188
|
-
"git diff": "allow",
|
|
189
|
-
"git log*": "allow"
|
|
190
|
-
},
|
|
191
|
-
"webfetch": "allow",
|
|
192
|
-
"skill": {
|
|
193
|
-
"*": "allow"
|
|
194
|
-
},
|
|
195
|
-
"mcp": {
|
|
196
|
-
"stitch": "allow",
|
|
197
|
-
"figma": "ask",
|
|
198
|
-
"nuxt-ui": "allow"
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
},
|
|
202
|
-
"reviewer": {
|
|
203
|
-
"description": "Code Reviewer & QA Engineer specializing in code quality, security audit, testing strategy, and verification (subagent of IT Leader)",
|
|
204
|
-
"mode": "subagent",
|
|
205
|
-
"prompt": "{file:.opencode/agents/code-reviewer.md}",
|
|
206
|
-
"model": "opencode/claude-opus-4.5",
|
|
207
|
-
"temperature": 0.3,
|
|
208
|
-
"color": "#ef4444",
|
|
209
|
-
"permission": {
|
|
210
|
-
"edit": "allow",
|
|
211
|
-
"bash": {
|
|
212
|
-
"*": "ask",
|
|
213
|
-
"npm *": "allow",
|
|
214
|
-
"pnpm *": "allow",
|
|
215
|
-
"bun *": "allow",
|
|
216
|
-
"yarn *": "allow",
|
|
217
|
-
"git status": "allow",
|
|
218
|
-
"git diff": "allow",
|
|
219
|
-
"git log*": "allow",
|
|
220
|
-
"npx playwright*": "allow"
|
|
221
|
-
},
|
|
222
|
-
"webfetch": "allow",
|
|
223
|
-
"skill": {
|
|
224
|
-
"*": "allow"
|
|
225
|
-
},
|
|
226
|
-
"mcp": {
|
|
227
|
-
"playwright": "allow"
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"database": {
|
|
232
|
-
"description": "Database Specialist specializing in PostgreSQL schema design, query optimization, Prisma ORM, and migrations (subagent of IT Leader)",
|
|
233
|
-
"mode": "subagent",
|
|
234
|
-
"prompt": "{file:.opencode/agents/database-specialist.md}",
|
|
235
|
-
"model": "opencode/claude-sonnet-4.5",
|
|
236
|
-
"temperature": 0.3,
|
|
237
|
-
"color": "#06b6d4",
|
|
238
|
-
"permission": {
|
|
239
|
-
"edit": "allow",
|
|
240
|
-
"bash": {
|
|
241
|
-
"*": "ask",
|
|
242
|
-
"npm *": "allow",
|
|
243
|
-
"pnpm *": "allow",
|
|
244
|
-
"bun *": "allow",
|
|
245
|
-
"yarn *": "allow",
|
|
246
|
-
"git status": "allow",
|
|
247
|
-
"git diff": "allow",
|
|
248
|
-
"git log*": "allow"
|
|
249
|
-
},
|
|
250
|
-
"webfetch": "allow",
|
|
251
|
-
"skill": {
|
|
252
|
-
"*": "allow"
|
|
253
|
-
},
|
|
254
|
-
"mcp": {}
|
|
255
|
-
}
|
|
256
|
-
},
|
|
257
|
-
"devops": {
|
|
258
|
-
"description": "DevOps Engineer specializing in CI/CD, deployment, Docker, monitoring, and infrastructure (subagent of IT Leader)",
|
|
259
|
-
"mode": "subagent",
|
|
260
|
-
"prompt": "{file:.opencode/agents/devops-specialist.md}",
|
|
261
|
-
"model": "opencode/claude-haiku-4.5",
|
|
262
|
-
"temperature": 0.3,
|
|
263
|
-
"color": "#6366f1",
|
|
264
|
-
"permission": {
|
|
265
|
-
"edit": "allow",
|
|
266
|
-
"bash": {
|
|
267
|
-
"*": "ask",
|
|
268
|
-
"npm *": "allow",
|
|
269
|
-
"pnpm *": "allow",
|
|
270
|
-
"bun *": "allow",
|
|
271
|
-
"yarn *": "allow",
|
|
272
|
-
"git status": "allow",
|
|
273
|
-
"git diff": "allow",
|
|
274
|
-
"git log*": "allow",
|
|
275
|
-
"docker *": "allow"
|
|
276
|
-
},
|
|
277
|
-
"webfetch": "allow",
|
|
278
|
-
"skill": {
|
|
279
|
-
"*": "allow"
|
|
280
|
-
},
|
|
281
|
-
"mcp": {}
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
"seo": {
|
|
285
|
-
"description": "SEO Specialist specializing in meta tags, structured data, Core Web Vitals, and content optimization (subagent of IT Leader)",
|
|
286
|
-
"mode": "subagent",
|
|
287
|
-
"prompt": "{file:.opencode/agents/seo-specialist.md}",
|
|
288
|
-
"model": "openai/gpt-5.1-codex-mini",
|
|
289
|
-
"temperature": 0.4,
|
|
290
|
-
"color": "#84cc16",
|
|
291
|
-
"permission": {
|
|
292
|
-
"edit": "allow",
|
|
293
|
-
"bash": {
|
|
294
|
-
"*": "ask",
|
|
295
|
-
"git status": "allow",
|
|
296
|
-
"git diff": "allow",
|
|
297
|
-
"git log*": "allow"
|
|
298
|
-
},
|
|
299
|
-
"webfetch": "allow",
|
|
300
|
-
"skill": {
|
|
301
|
-
"*": "allow"
|
|
302
|
-
},
|
|
303
|
-
"mcp": {
|
|
304
|
-
"nuxt": "allow"
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
}
|