npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vegamo/deepcode-cli

v0.1.19

Published

Deep Code CLI - Vibe coding for the deepseek-v4 model in your terminal

Readme

Deep Code CLI

Deep Code is a terminal AI coding assistant optimized for the deepseek-v4 model, with support for deep thinking, reasoning effort control, and Agent Skills.

Installation

npm install -g @vegamo/deepcode-cli

Run deepcode inside any project directory to get started.

intro2

Configuration

Create ~/.deepcode/settings.json:

{
  "env": {
    "MODEL": "deepseek-v4-pro",
    "BASE_URL": "https://api.deepseek.com",
    "API_KEY": "sk-..."
  },
  "thinkingEnabled": true,
  "reasoningEffort": "max"
}

The configuration file is shared with the Deep Code VSCode extension — configure once, use everywhere.

Key Features

Skills

Deep Code CLI supports agent skills that allow you to extend the assistant's capabilities:

  • User-level Skills: discovered and activated from ~/.agents/skills/.
  • Project-level Skills: loaded from ./.agents/skills/ for project-specific workflows, with legacy ./.deepcode/skills/ compatibility.

Optimized for DeepSeek

  • Specifically tuned for DeepSeek model performance.
  • Reduce costs by using Context Caching.
  • Natively supports Thinking Mode and Thinking Effort Control.

Keyboard Shortcuts

| Key | Action | |-----------------|----------------------------------------------| | Enter | Send the prompt | | Shift+Enter | Insert a newline (also Ctrl+J) | | Ctrl+V | Paste an image from the clipboard | | Esc | Interrupt the current model turn | | / | Open the skills / commands menu | | /new | Start a fresh conversation | | /resume | Choose a previous conversation to continue | | /skills | List available skills | | /exit | Quit Deep Code | | Ctrl+D twice | Quit Deep Code |

Supported Models

  • deepseek-v4-pro (Recommended)
  • deepseek-v4-flash
  • Any other OpenAI-compatible model

FAQ

Does Deep Code have a VSCode extension?

Yes. Deep Code offers a full-featured VSCode extension, available on the VSCode Marketplace. The extension shares the ~/.deepcode/settings.json configuration file with the CLI, so you can switch seamlessly between the terminal and the editor.

Does Deep Code support understanding images?

Deep Code supports multimodal input — you can paste images from the clipboard with Ctrl+V. However, 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.

How to automatically send a Slack message after a task completes?

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

How do I enable web search?

Deep Code comes with a built-in, free Web Search tool that works well for most use cases. If you prefer to use a custom script for web search, set the webSearchTool field in ~/.deepcode/settings.json to the full path of your script. For detailed steps, refer to: https://github.com/qorzj/web_search_cli

Does it support Coding Plan?

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:

{
  "env": {
    "MODEL": "ark-code-latest",
    "BASE_URL": "https://ark.cn-beijing.volces.com/api/coding/v3",
    "API_KEY": "**************"
  },
  "thinkingEnabled": true
}

Getting Help

  • Report bugs or request features on GitHub Issues (https://github.com/lessweb/deepcode-cli/issues)

License

  • MIT

Support Us

If you find this tool helpful, please consider supporting us by:

  • Giving us a Star on GitHub (https://github.com/lessweb/deepcode-cli)
  • Submitting feedback and suggestions
  • Sharing with your friends and colleagues