-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
103 lines (103 loc) · 3.51 KB
/
Copy pathopencode.json
File metadata and controls
103 lines (103 loc) · 3.51 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
{
"$schema": "https://opencode.ai/config.json",
"model": "modal/explorerzach--ep-kimi-k3-server.us-west.modal.direct",
"provider": {
"modal": {
"npm": "@ai-sdk/openai-compatible",
"name": "Modal",
"options": {
"baseURL": "https://inference.us-west.modal.direct/v1",
"apiKey": "{env:MODAL_PROXY_TOKEN}"
},
"models": {
"explorerzach--ep-kimi-k3-server.us-west.modal.direct": {
"name": "Kimi K3",
"limit": {
"context": 1048576,
"output": 262144
},
"attachment": true,
"reasoning": true,
"temperature": true,
"tool_call": true,
"modalities": {
"input": ["text", "image"],
"output": ["text"]
},
"cost": {
"input": 3.0,
"output": 15.0,
"cache_read": 0.3
},
"variants": {
"low": {
"reasoningEffort": "low"
},
"high": {
"reasoningEffort": "high"
},
"max": {
"reasoningEffort": "max"
}
}
},
"explorerzach--ep-inkling-nvfp4-server.us-west.modal.direct": {
"name": "Inkling NVFP4",
"attachment": false,
"reasoning": true,
"temperature": true,
"tool_call": true,
"modalities": {
"input": ["text"],
"output": ["text"]
}
}
}
}
},
"lsp": true,
"instructions": ["AGENTS.md"],
"formatter": true,
"command": {
"lint": {
"template": "Run `npm run lint` and report any errors. Do not fix anything — just report what fails and where.",
"description": "ESLint check (read-only)"
},
"lint:fix": {
"template": "Run `npm run lint:fix` to auto-fix ESLint issues.",
"description": "ESLint auto-fix"
},
"format": {
"template": "Run `npm run format` to auto-format with Prettier.",
"description": "Prettier write"
},
"format:check": {
"template": "Run `npm run format:check` and report any files that need formatting. Do not fix anything.",
"description": "Prettier check (read-only)"
},
"typecheck": {
"template": "Run `npm run typecheck` (tsc --noEmit) and report any type errors. Do not fix anything — just report what fails and where.",
"description": "TypeScript type check (read-only)"
},
"test": {
"template": "Run `npm run test:run` (Vitest single run) and report any failing tests. Do not fix anything — just report what fails and where.",
"description": "Run test suite"
},
"verify": {
"template": "Run `npm run lint && npm run typecheck && npm run test:run && npm run build`. If any step fails, stop and report the errors. Do not attempt to fix anything — only report what fails.",
"description": "Full verification pipeline"
},
"build": {
"template": "Run `npm run build` to produce a production build. Report any errors.",
"description": "Production build"
},
"tauri:check": {
"template": "Run `npm run tauri:check` and report any Rust compile errors.",
"description": "Cargo check for Tauri"
},
"visual": {
"template": "Run `npm run visual` against a running dev or preview server (start `npm run dev` in the MAIN checkout if needed). Report the PASS/FAIL summary and where the screenshots were written.",
"description": "Host-Chrome visual smoke (playwright-core)"
}
}
}