-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
190 lines (190 loc) · 5.27 KB
/
Copy pathpackage.json
File metadata and controls
190 lines (190 loc) · 5.27 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
{
"name": "opencodex-agent",
"displayName": "Opencodex",
"description": "A free, open-source coding agent inside VS Code.",
"version": "0.2.8",
"publisher": "EvaanChowdhry",
"license": "MIT",
"engines": {
"vscode": "^1.106.0"
},
"repository": {
"type": "git",
"url": "https://github.com/matonhp5108/Opencodex"
},
"categories": [
"AI",
"Machine Learning",
"Programming Languages",
"Chat",
"Data Science",
"Other"
],
"keywords": [
"ai",
"coding agent",
"codex",
"chat",
"copilot",
"automation",
"open source",
"free",
"llm",
"mcp",
"ollama",
"openrouter",
"gemini",
"mistral",
"groq",
"vscode extension",
"developer tools"
],
"activationEvents": [
"onView:opencodex.chat",
"onUri",
"onCommand:opencodex.openChat",
"onCommand:opencodex.testSystemNotification",
"onCommand:opencodex.testStarPrompt"
],
"main": "./dist/extension.js",
"icon": "media/icon.png",
"contributes": {
"viewsContainers": {
"secondarySidebar": [
{
"id": "opencodex",
"title": "Opencodex",
"icon": "media/opencodex-o.svg"
}
]
},
"views": {
"opencodex": [
{
"type": "webview",
"id": "opencodex.chat",
"name": "Opencodex"
}
]
},
"commands": [
{
"command": "opencodex.openChat",
"title": "Opencodex: Open Chat",
"icon": "media/opencodex-o.svg"
},
{
"command": "opencodex.focus",
"title": "Opencodex: Focus Chat",
"icon": "media/opencodex-o.svg"
},
{
"command": "opencodex.settings",
"title": "Opencodex: Open Settings"
},
{
"command": "opencodex.usage",
"title": "Opencodex: Show Token Usage"
},
{
"command": "opencodex.memory",
"title": "Opencodex: Open Project Memory"
},
{
"command": "opencodex.marketplace",
"title": "Opencodex: Skill Marketplace"
},
{
"command": "opencodex.clear",
"title": "Opencodex: New Chat"
},
{
"command": "opencodex.testSystemNotification",
"title": "Opencodex: Test System Notification"
},
{
"command": "opencodex.testStarPrompt",
"title": "Opencodex: Test Star Prompt"
}
],
"menus": {
"editor/title": [
{
"command": "opencodex.openChat",
"group": "navigation"
}
]
},
"configuration": {
"title": "Opencodex",
"properties": {
"opencodex.model": {
"type": "string",
"default": "",
"description": "Selected free model ID for the active provider. Choose it from the sidebar."
},
"opencodex.provider": {
"type": "string",
"default": "opencode",
"description": "Model provider to use. OpenCode works anonymously; the other built-in providers need an API key saved in Settings (or a matching environment variable). Can also be the id of a custom OpenAI-compatible provider added in Settings."
},
"opencodex.maxSteps": {
"type": "number",
"default": 20,
"minimum": 0,
"maximum": 50,
"description": "Maximum tool-loop steps per request. Set to 0 for unlimited tasks."
},
"opencodex.approvalMode": {
"type": "string",
"enum": [
"ask",
"edits",
"autonomous"
],
"default": "ask",
"description": "Controls whether file edits and commands require confirmation. 'Auto edits' still asks before destructive commands; 'Open access' runs everything without confirmation."
},
"opencodex.searxngUrl": {
"type": "string",
"default": "http://localhost:8888",
"description": "Base URL for a SearXNG instance with JSON output enabled. Defaults to a local instance on port 8888; leave empty to disable web search."
},
"opencodex.mcpServers": {
"type": "string",
"default": "{}",
"description": "JSON object of MCP servers. Each entry may use an HTTP/SSE URL or a stdio command with args, env, and cwd."
},
"opencodex.extraFreeModels": {
"type": "string",
"default": "",
"description": "Comma-separated model IDs to treat as free for the selected provider, in addition to the ones detected automatically."
},
"opencodex.systemNotifications": {
"type": "boolean",
"default": true,
"description": "Show native Opencodex system notifications (task completed, approval needed, task failed) when VS Code is not focused."
}
}
}
},
"scripts": {
"check": "tsc --noEmit",
"build": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"package": "npm run check && npm run build && vsce package"
},
"dependencies": {
"@ai-sdk/mcp": "^2.0.30",
"@ai-sdk/openai-compatible": "^3.0.26",
"ai": "^7.0.57",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/vscode": "^1.106.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"typescript": "^7.0.2"
}
}