|
1 | 1 | {
|
2 |
| - "name": "minicoder", |
3 |
| - "displayName": "MiniCoder", |
| 2 | + "name": "zencoder", |
| 3 | + "displayName": "Zen Coder", |
4 | 4 | "description": "",
|
5 | 5 | "version": "0.0.1",
|
6 | 6 | "engines": {
|
|
10 | 10 | "Other"
|
11 | 11 | ],
|
12 | 12 | "activationEvents": [
|
13 |
| - "onCommand:minicoder.startChat", |
14 |
| - "onCommand:minicoder.setAnthropicKey", |
15 |
| - "onCommand:minicoder.setGoogleKey", |
16 |
| - "onCommand:minicoder.setOpenRouterKey", |
17 |
| - "onCommand:minicoder.setDeepseekKey" |
| 13 | + "onCommand:zencoder.startChat", |
| 14 | + "onCommand:zencoder.setAnthropicKey", |
| 15 | + "onCommand:zencoder.setGoogleKey", |
| 16 | + "onCommand:zencoder.setOpenRouterKey", |
| 17 | + "onCommand:zencoder.setDeepseekKey" |
18 | 18 | ],
|
19 | 19 | "main": "./dist/extension.js",
|
20 | 20 | "contributes": {
|
21 | 21 | "commands": [
|
22 | 22 | {
|
23 |
| - "command": "minicoder.startChat", |
24 |
| - "title": "Start AI Coder Chat" |
| 23 | + "command": "zencoder.startChat", |
| 24 | + "title": "Start Zen Coder Chat" |
25 | 25 | },
|
26 | 26 | {
|
27 |
| - "command": "minicoder.setAnthropicKey", |
| 27 | + "command": "zencoder.setAnthropicKey", |
28 | 28 | "title": "Set Anthropic API Key",
|
29 |
| - "category": "AI Coder" |
| 29 | + "category": "Zen Coder" |
30 | 30 | },
|
31 | 31 | {
|
32 |
| - "command": "minicoder.setGoogleKey", |
| 32 | + "command": "zencoder.setGoogleKey", |
33 | 33 | "title": "Set Google API Key",
|
34 |
| - "category": "AI Coder" |
| 34 | + "category": "Zen Coder" |
35 | 35 | },
|
36 | 36 | {
|
37 |
| - "command": "minicoder.setOpenRouterKey", |
| 37 | + "command": "zencoder.setOpenRouterKey", |
38 | 38 | "title": "Set OpenRouter API Key",
|
39 |
| - "category": "AI Coder" |
| 39 | + "category": "Zen Coder" |
40 | 40 | },
|
41 | 41 | {
|
42 |
| - "command": "minicoder.setDeepseekKey", |
| 42 | + "command": "zencoder.setDeepseekKey", |
43 | 43 | "title": "Set Deepseek API Key",
|
44 |
| - "category": "AI Coder" |
| 44 | + "category": "Zen Coder" |
45 | 45 | }
|
46 |
| - ] |
| 46 | + ], |
| 47 | + "configuration": { |
| 48 | + "title": "Zen Coder Settings", |
| 49 | + "properties": { |
| 50 | + "zencoder.tools.readFile.enabled": { |
| 51 | + "type": "boolean", |
| 52 | + "default": true, |
| 53 | + "description": "Enable the 'readFile' tool." |
| 54 | + }, |
| 55 | + "zencoder.tools.writeFile.enabled": { |
| 56 | + "type": "boolean", |
| 57 | + "default": true, |
| 58 | + "description": "Enable the 'writeFile' tool." |
| 59 | + }, |
| 60 | + "zencoder.tools.listFiles.enabled": { |
| 61 | + "type": "boolean", |
| 62 | + "default": true, |
| 63 | + "description": "Enable the 'listFiles' tool." |
| 64 | + }, |
| 65 | + "zencoder.tools.runCommand.enabled": { |
| 66 | + "type": "boolean", |
| 67 | + "default": true, |
| 68 | + "description": "Enable the 'runCommand' tool (requires user confirmation)." |
| 69 | + }, |
| 70 | + "zencoder.tools.search.enabled": { |
| 71 | + "type": "boolean", |
| 72 | + "default": true, |
| 73 | + "description": "Enable the 'search' tool (requires MCP integration)." |
| 74 | + }, |
| 75 | + "zencoder.tools.fetch.enabled": { |
| 76 | + "type": "boolean", |
| 77 | + "default": true, |
| 78 | + "description": "Enable the 'fetch' tool." |
| 79 | + }, |
| 80 | + "zencoder.tools.getOpenTabs.enabled": { |
| 81 | + "type": "boolean", |
| 82 | + "default": true, |
| 83 | + "description": "Enable the 'getOpenTabs' tool." |
| 84 | + }, |
| 85 | + "zencoder.tools.getActiveTerminals.enabled": { |
| 86 | + "type": "boolean", |
| 87 | + "default": true, |
| 88 | + "description": "Enable the 'getActiveTerminals' tool." |
| 89 | + }, |
| 90 | + "zencoder.tools.getCurrentTime.enabled": { |
| 91 | + "type": "boolean", |
| 92 | + "default": true, |
| 93 | + "description": "Enable the 'getCurrentTime' tool." |
| 94 | + } |
| 95 | + } |
| 96 | + } |
47 | 97 | },
|
48 | 98 | "scripts": {
|
49 | 99 | "vscode:prepublish": "pnpm run package",
|
|
0 commit comments