|
| 1 | +# Deep Code |
| 2 | + |
| 3 | +[Deep Code](https://marketplace.visualstudio.com/items?itemName=vegamo.deepcode-vscode) is an AI coding assistant extension for Visual Studio Code, specifically optimized for the latest `deepseek-v4` model. |
| 4 | + |
| 5 | +## Configuration |
| 6 | + |
| 7 | +Create `~/.deepcode/settings.json` with: |
| 8 | + |
| 9 | +```json |
| 10 | +{ |
| 11 | + "env": { |
| 12 | + "MODEL": "deepseek-v4-pro", |
| 13 | + "BASE_URL": "https://api.deepseek.com", |
| 14 | + "API_KEY": "sk-..." |
| 15 | + }, |
| 16 | + "thinkingEnabled": true, |
| 17 | + "reasoningEffort": "max" |
| 18 | +} |
| 19 | +``` |
| 20 | + |
| 21 | +## Key Features |
| 22 | + |
| 23 | +### **Skills** |
| 24 | +Deep Code supports agent skills that allows you to extend the assistant's capabilities: |
| 25 | + |
| 26 | +- **User-level Skills**: discovered and activated from `~/.agents/skills/`. |
| 27 | +- **Project-level Skills**: loaded from `./.agents/skills/` for project-specific workflows, with legacy `./.deepcode/skills/` compatibility. |
| 28 | + |
| 29 | +### **Optimized for DeepSeek** |
| 30 | +- Specifically tuned for DeepSeek model performance. |
| 31 | +- Reduce costs by using [Context Caching](https://api-docs.deepseek.com/guides/kv_cache). |
| 32 | +- Natively supports [Thinking Mode](https://api-docs.deepseek.com/guides/thinking_mode) and Thinking Effort Control. |
| 33 | + |
| 34 | +## Supported Models |
| 35 | + |
| 36 | +- `deepseek-v4-pro` (Recommended) |
| 37 | +- `deepseek-v4-flash` |
| 38 | +- `deepseek-chat` |
| 39 | +- Any other OpenAI-compatible model |
| 40 | + |
| 41 | +## Screenshot |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | +## Deep Code CLI |
| 46 | + |
| 47 | +```bash |
| 48 | +npm install -g @vegamo/deepcode-cli |
| 49 | +``` |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | +> The VSCode plugin and CLI share configuration and data, but they have no dependencies at runtime. |
| 54 | +
|
| 55 | +- GitHub: https://github.com/lessweb/deepcode-cli |
| 56 | + |
| 57 | +## FAQ |
| 58 | + |
| 59 | +### How can I move Deep Code from the left sidebar to the right (Secondary Side Bar) in VS Code? |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | +### Does Deep Code support understanding images? |
| 64 | + |
| 65 | +Deep Code supports multimodal, but `deepseek-v4` does not support multimodal yet. Some models have multimodal capabilities but impose strict limits on multi-turn dialogue requests. For multimodal input, we recommend using the Volcano Ark `Doubao-Seed-2.0-pro` model, which has the best integration. |
| 66 | + |
| 67 | +### How to automatically send a Slack message after a task completes? |
| 68 | + |
| 69 | +Write a shell notification script that calls a Slack webhook, then set the `notify` field in `~/.deepcode/settings.json` to the full path of the script. For detailed steps, refer to: https://binfer.net/share/jby5xnc-so6g |
| 70 | + |
| 71 | +### Does it support Coding Plan? |
| 72 | + |
| 73 | +Yes. Just set `env.BASE_URL` in `~/.deepcode/settings.json` to an OpenAI-compatible API endpoint. Take Volcano Ark's Coding Plan as an example, configure `~/.deepcode/settings.json` as follows: |
| 74 | + |
| 75 | +```json |
| 76 | +{ |
| 77 | + "env": { |
| 78 | + "MODEL": "ark-code-latest", |
| 79 | + "BASE_URL": "https://ark.cn-beijing.volces.com/api/coding/v3", |
| 80 | + "API_KEY": "**************" |
| 81 | + }, |
| 82 | + "thinkingEnabled": true |
| 83 | +} |
| 84 | +``` |
| 85 | + |
| 86 | +## Getting Help |
| 87 | +- Report bugs or request features on GitHub Issues (https://github.com/lessweb/deepcode/issues) |
0 commit comments