-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
511 lines (511 loc) · 28 KB
/
opencode.json
File metadata and controls
511 lines (511 loc) · 28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
{
"$schema": "https://opencode.ai/config.json",
"default_agent": "build",
"autoupdate": true,
"share": "manual",
"permission": {
"*": "allow",
"doom_loop": "allow",
"external_directory": {
"~/Codes/Projects/**": "allow"
},
"read": {
"*": "allow"
}
},
"mcp": {
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"enabled": false
},
"gh_grep": {
"type": "remote",
"url": "https://mcp.grep.app",
"enabled": false
}
},
"command": {
"mcp": {
"description": "Manage MCP usage (status|help|doctor|profile|enable|disable)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" $ARGUMENTS`\nShow only the command output."
},
"doctor": {
"description": "Run all diagnostics in one pass",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/doctor_command.py\" run $ARGUMENTS`\nShow only the command output."
},
"doctor-help": {
"description": "Show unified doctor command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/doctor_command.py\" help`\nShow only the command output."
},
"doctor-json": {
"description": "Run all diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/doctor_command.py\" run --json`\nShow only the command output."
},
"config": {
"description": "Backup and restore OpenCode config files",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" $ARGUMENTS`\nShow only the command output."
},
"config-help": {
"description": "Show config backup/restore command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" help`\nShow only the command output."
},
"config-backup": {
"description": "Create a config backup snapshot",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" backup`\nShow only the command output."
},
"config-list": {
"description": "List available config backups",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" list`\nShow only the command output."
},
"config-layers": {
"description": "Show layered config precedence and active paths",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" layers`\nShow only the command output."
},
"config-layers-json": {
"description": "Show layered config precedence in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/config_command.py\" layers --json`\nShow only the command output."
},
"bg": {
"description": "Manage background jobs (start|status|list|read|cancel|cleanup|doctor)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" $ARGUMENTS`\nShow only the command output."
},
"bg-help": {
"description": "Show background task command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" help`\nShow only the command output."
},
"bg-list": {
"description": "List recent background jobs",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" list`\nShow only the command output."
},
"bg-running": {
"description": "List running background jobs",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" list --status running`\nShow only the command output."
},
"bg-doctor-json": {
"description": "Run background task diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" doctor --json`\nShow only the command output."
},
"bg-status-json": {
"description": "Show background task status summary in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/background_task_manager.py\" status --json`\nShow only the command output."
},
"refactor-lite": {
"description": "Run safe refactor workflow backend",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/refactor_lite_command.py\" $ARGUMENTS`\nShow only the command output."
},
"refactor-lite-help": {
"description": "Show /refactor-lite backend command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/refactor_lite_command.py\" --help`\nShow only the command output."
},
"refactor-lite-dry-run": {
"description": "Run /refactor-lite dry-run with JSON output",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/refactor_lite_command.py\" $ARGUMENTS --dry-run --json`\nShow only the command output."
},
"hooks": {
"description": "Manage safety hooks (status|help|enable|disable|run)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" $ARGUMENTS`\nShow only the command output."
},
"hooks-help": {
"description": "Show /hooks command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" help`\nShow only the command output."
},
"hooks-enable": {
"description": "Enable hook execution",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" enable`\nShow only the command output."
},
"hooks-disable": {
"description": "Disable hook execution",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" disable`\nShow only the command output."
},
"hooks-status": {
"description": "Show hook configuration and audit path",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" status`\nShow only the command output."
},
"hooks-doctor": {
"description": "Run hook diagnostics",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" doctor`\nShow only the command output."
},
"hooks-doctor-json": {
"description": "Run hook diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/hooks_command.py\" doctor --json`\nShow only the command output."
},
"model-routing": {
"description": "Manage model routing (status|set-category|resolve|trace)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" $ARGUMENTS`\nShow only the command output."
},
"model-routing-status": {
"description": "Show active model routing category",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" status`\nShow only the command output."
},
"model-profile": {
"description": "Manage model profile routing (status|set|resolve)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" $ARGUMENTS`\nShow only the command output."
},
"model-profile-status": {
"description": "Show active model profile",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" status`\nShow only the command output."
},
"model-profile-set": {
"description": "Set active model profile category",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" set-category $ARGUMENTS`\nShow only the command output."
},
"model-profile-resolve": {
"description": "Resolve effective model settings in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" resolve $ARGUMENTS --json`\nShow only the command output."
},
"model-routing-trace": {
"description": "Show latest routing trace in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/model_routing_command.py\" trace --json`\nShow only the command output."
},
"routing": {
"description": "Explain routing outcomes (status|explain)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/routing_command.py\" $ARGUMENTS`\nShow only the command output."
},
"routing-status": {
"description": "Show compact routing status",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/routing_command.py\" status`\nShow only the command output."
},
"routing-explain": {
"description": "Explain routing selection in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/routing_command.py\" explain $ARGUMENTS --json`\nShow only the command output."
},
"keyword-mode": {
"description": "Detect and apply keyword-triggered execution modes",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" $ARGUMENTS`\nShow only the command output."
},
"keyword-mode-status": {
"description": "Show keyword mode status",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" status`\nShow only the command output."
},
"keyword-mode-detect": {
"description": "Detect keyword modes for a prompt",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" detect $ARGUMENTS --json`\nShow only the command output."
},
"keyword-mode-apply": {
"description": "Apply keyword modes for a prompt",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" apply $ARGUMENTS --json`\nShow only the command output."
},
"keyword-mode-enable": {
"description": "Enable keyword mode detection globally",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" enable`\nShow only the command output."
},
"keyword-mode-disable": {
"description": "Disable keyword mode detection globally",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" disable`\nShow only the command output."
},
"keyword-mode-disable-keyword": {
"description": "Disable a specific keyword",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" disable-keyword $ARGUMENTS`\nShow only the command output."
},
"keyword-mode-enable-keyword": {
"description": "Re-enable a specific keyword",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" enable-keyword $ARGUMENTS`\nShow only the command output."
},
"keyword-mode-doctor": {
"description": "Run keyword mode diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/keyword_mode_command.py\" doctor --json`\nShow only the command output."
},
"rules": {
"description": "Inspect conditional rules (status|explain|disable-id|enable-id|doctor)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/rules_command.py\" $ARGUMENTS`\nShow only the command output."
},
"rules-status": {
"description": "Show rules discovery and config status",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/rules_command.py\" status`\nShow only the command output."
},
"rules-explain": {
"description": "Explain effective rules for a target path",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/rules_command.py\" explain $ARGUMENTS --json`\nShow only the command output."
},
"rules-doctor": {
"description": "Run rules diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/rules_command.py\" doctor --json`\nShow only the command output."
},
"resilience": {
"description": "Inspect context resilience health (status|doctor)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/context_resilience_command.py\" $ARGUMENTS`\nShow only the command output."
},
"resilience-status": {
"description": "Show context resilience policy status",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/context_resilience_command.py\" status --json`\nShow only the command output."
},
"resilience-doctor": {
"description": "Run context resilience diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/context_resilience_command.py\" doctor --json`\nShow only the command output."
},
"stack": {
"description": "Apply cross-command profile bundles",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/stack_profile_command.py\" $ARGUMENTS`\nShow only the command output."
},
"stack-help": {
"description": "Show stack profile command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/stack_profile_command.py\" help`\nShow only the command output."
},
"stack-focus": {
"description": "Apply focus stack profile",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/stack_profile_command.py\" apply focus`\nShow only the command output."
},
"stack-research": {
"description": "Apply research stack profile",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/stack_profile_command.py\" apply research`\nShow only the command output."
},
"stack-quiet-ci": {
"description": "Apply quiet-ci stack profile",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/stack_profile_command.py\" apply quiet-ci`\nShow only the command output."
},
"browser": {
"description": "Manage browser automation provider profile (status|profile|doctor)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/browser_command.py\" $ARGUMENTS`\nShow only the command output."
},
"browser-status": {
"description": "Show active browser automation provider",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/browser_command.py\" status`\nShow only the command output."
},
"browser-profile": {
"description": "Switch browser provider profile",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/browser_command.py\" profile $ARGUMENTS`\nShow only the command output."
},
"browser-doctor-json": {
"description": "Run browser provider diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/browser_command.py\" doctor --json`\nShow only the command output."
},
"nvim": {
"description": "Manage Neovim OpenCode integration (status|doctor|snippet|install|uninstall)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" $ARGUMENTS`\nShow only the command output."
},
"nvim-help": {
"description": "Show Neovim integration command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" help`\nShow only the command output."
},
"nvim-status": {
"description": "Show Neovim integration status",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" status`\nShow only the command output."
},
"nvim-install-minimal": {
"description": "Install minimal Neovim keymap integration",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" install minimal --link-init`\nShow only the command output."
},
"nvim-install-power": {
"description": "Install power Neovim keymap integration",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" install power --link-init`\nShow only the command output."
},
"nvim-doctor-json": {
"description": "Run Neovim integration diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/nvim_integration_command.py\" doctor --json`\nShow only the command output."
},
"devtools": {
"description": "Manage external productivity tools (status|doctor|install|hooks-install)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/devtools_command.py\" $ARGUMENTS`\nShow only the command output."
},
"devtools-help": {
"description": "Show external devtools command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/devtools_command.py\" help`\nShow only the command output."
},
"devtools-install": {
"description": "Install all recommended external productivity tools",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/devtools_command.py\" install all`\nShow only the command output."
},
"devtools-doctor-json": {
"description": "Run external devtools diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/devtools_command.py\" doctor --json`\nShow only the command output."
},
"mcp-help": {
"description": "Show MCP command usage and examples",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" help`\nShow only the command output."
},
"mcp-doctor": {
"description": "Run MCP diagnostics",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" doctor`\nShow only the command output."
},
"mcp-doctor-json": {
"description": "Run MCP diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" doctor --json`\nShow only the command output."
},
"mcp-profile-minimal": {
"description": "Disable all MCP servers",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" profile minimal`\nShow only the command output."
},
"mcp-profile-research": {
"description": "Enable both MCP servers",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" profile research`\nShow only the command output."
},
"mcp-profile-context7": {
"description": "Enable only context7 MCP",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" profile context7`\nShow only the command output."
},
"mcp-profile-ghgrep": {
"description": "Enable only gh_grep MCP",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/mcp_command.py\" profile ghgrep`\nShow only the command output."
},
"plugin": {
"description": "Manage plugin usage (status|doctor|setup-keys|profile|enable|disable)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" $ARGUMENTS`\nShow only the command output."
},
"setup-keys": {
"description": "Show exact key setup snippets for enabled plugins",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" setup-keys`\nShow only the command output."
},
"plugin-help": {
"description": "Show plugin command usage and examples",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" help`\nShow only the command output."
},
"plugin-doctor-json": {
"description": "Show plugin diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" doctor --json`\nShow only the command output."
},
"plugin-enable-notifier": {
"description": "Enable notifier plugin",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" enable notifier`\nShow only the command output."
},
"plugin-enable-supermemory": {
"description": "Enable supermemory plugin",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" enable supermemory`\nShow only the command output."
},
"plugin-enable-wakatime": {
"description": "Enable wakatime plugin",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" enable wakatime`\nShow only the command output."
},
"plugin-enable-morph": {
"description": "Enable morph plugin (experimental)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" enable morph`\nShow only the command output."
},
"plugin-enable-worktree": {
"description": "Enable worktree plugin (experimental)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" enable worktree`\nShow only the command output."
},
"plugin-profile-stable": {
"description": "Switch plugin profile to stable",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" profile stable`\nShow only the command output."
},
"plugin-profile-experimental": {
"description": "Switch plugin profile to experimental",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" profile experimental`\nShow only the command output."
},
"plugin-profile-lean": {
"description": "Switch plugin profile to lean",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/plugin_command.py\" profile lean`\nShow only the command output."
},
"notify": {
"description": "Manage notification controls (status|profile|enable|disable|channel)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" $ARGUMENTS`\nShow only the command output."
},
"notify-help": {
"description": "Show notification command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" help`\nShow only the command output."
},
"notify-doctor": {
"description": "Run notification diagnostics",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" doctor`\nShow only the command output."
},
"notify-doctor-json": {
"description": "Run notification diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" doctor --json`\nShow only the command output."
},
"notify-profile-all": {
"description": "Enable all notification channels and events",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" profile all`\nShow only the command output."
},
"notify-profile-focus": {
"description": "Keep only visual alerts for important events",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" profile focus`\nShow only the command output."
},
"notify-sound-only": {
"description": "Switch notifications to sound only",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" profile sound-only`\nShow only the command output."
},
"notify-visual-only": {
"description": "Switch notifications to visual only",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/notify_command.py\" profile visual-only`\nShow only the command output."
},
"digest": {
"description": "Generate or show session digests (run|show)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" $ARGUMENTS`\nShow only the command output."
},
"digest-run": {
"description": "Generate a manual session digest now",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" run --reason manual`\nShow only the command output."
},
"digest-run-post": {
"description": "Generate digest and run configured post-session hook",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" run --reason manual --run-post`\nShow only the command output."
},
"digest-show": {
"description": "Show latest saved session digest",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" show`\nShow only the command output."
},
"digest-doctor": {
"description": "Run digest diagnostics",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" doctor`\nShow only the command output."
},
"digest-doctor-json": {
"description": "Run digest diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/session_digest.py\" doctor --json`\nShow only the command output."
},
"post-session": {
"description": "Manage post-session hook config (status|enable|disable|set)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/post_session_command.py\" $ARGUMENTS`\nShow only the command output."
},
"post-session-help": {
"description": "Show post-session command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/post_session_command.py\" help`\nShow only the command output."
},
"post-session-enable": {
"description": "Enable post-session hook execution",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/post_session_command.py\" enable`\nShow only the command output."
},
"policy": {
"description": "Apply notification policy profiles (strict|balanced|fast)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/policy_command.py\" $ARGUMENTS`\nShow only the command output."
},
"policy-help": {
"description": "Show policy command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/policy_command.py\" help`\nShow only the command output."
},
"policy-profile-strict": {
"description": "Apply strict permission-risk policy",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/policy_command.py\" profile strict`\nShow only the command output."
},
"policy-profile-balanced": {
"description": "Apply balanced permission-risk policy",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/policy_command.py\" profile balanced`\nShow only the command output."
},
"policy-profile-fast": {
"description": "Apply fast permission-risk policy",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/policy_command.py\" profile fast`\nShow only the command output."
},
"telemetry": {
"description": "Manage telemetry forwarding (status|doctor|profile|enable|disable|set)",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" $ARGUMENTS`\nShow only the command output."
},
"telemetry-help": {
"description": "Show telemetry command usage",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" help`\nShow only the command output."
},
"telemetry-doctor": {
"description": "Run telemetry diagnostics",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" doctor`\nShow only the command output."
},
"telemetry-doctor-json": {
"description": "Run telemetry diagnostics in JSON",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" doctor --json`\nShow only the command output."
},
"telemetry-profile-off": {
"description": "Disable telemetry forwarding",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" profile off`\nShow only the command output."
},
"telemetry-profile-local": {
"description": "Enable telemetry forwarding to local endpoint",
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/telemetry_command.py\" profile local`\nShow only the command output."
}
},
"plugin": [
"@mohak34/opencode-notifier@latest",
"opencode-supermemory",
"opencode-wakatime"
],
"instructions": [
"{env:HOME}/Codes/Projects/agents_md/AGENTS.md",
"{env:HOME}/.config/opencode/my_opencode/instructions/shell_strategy.md"
]
}