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

@meomeo-dev/deepseekx

v0.131.0-deepseekx.3

Published

Chinese README: [README.zh-CN.md](README.zh-CN.md)

Readme

DeepSeekX

Chinese README: README.zh-CN.md

DeepSeekX is a downstream adaptation of OpenAI Codex CLI for DeepSeek API usage. It keeps the local terminal coding-agent workflow while defaulting to DeepSeek-oriented provider, model, packaging, and user-facing behavior.

The original upstream OpenAI Codex README is preserved as CODEX_README.md to reduce conflicts during future upstream syncs.

Install

Install from npm:

npm install -g @meomeo-dev/[email protected]

Run:

deepseekx

For one-off usage:

npx @meomeo-dev/[email protected]

Homebrew is not supported yet. GitHub Releases provide release notes and optional tarball downloads.

Quickstart

Set a DeepSeek API key and start DeepSeekX:

export DEEPSEEK_API_KEY="sk-..."
deepseekx

DeepSeekX uses its own user directory and does not read the original OpenAI Codex user directory by default.

Configuration

User-level config lives at DEEPSEEKX_HOME/config.toml. If DEEPSEEKX_HOME is not set, the default user directory is ~/.deepseekx, so the default file is:

~/.deepseekx/config.toml

Project-level config lives at the project root:

.deepseekx/config.toml

Use project config for repository-specific model, sandbox, approval, MCP, provider, or profile settings that should not become global user defaults.

Configuration precedence:

command-line overrides -> project .deepseekx/config.toml ->
user DEEPSEEKX_HOME/config.toml -> built-in defaults

User Config

Create ~/.deepseekx/config.toml:

model_provider = "deepseek"
model = "deepseek-v4-pro"
approval_policy = "on-request"
sandbox_mode = "workspace-write"

[model_providers.deepseek]
name = "DeepSeek"
base_url = "https://api.deepseek.com"
env_key = "DEEPSEEK_API_KEY"
wire_api = "chat"
requires_openai_auth = false

For a custom DeepSeek-compatible provider, keep the provider id in the deepseek-* namespace:

model_provider = "deepseek-vendor-a"
model = "deepseek-v4-flash"

[model_providers.deepseek-vendor-a]
name = "Vendor A DeepSeek"
base_url = "https://vendor.example/v1"
env_key = "VENDOR_DEEPSEEK_API_KEY"
wire_api = "chat"
requires_openai_auth = false

Project Config

Create .deepseekx/config.toml in a repository:

model = "deepseek-v4-flash"
approval_policy = "on-request"
sandbox_mode = "workspace-write"

[profiles.pro]
model_provider = "deepseek"
model = "deepseek-v4-pro"
approval_policy = "on-request"
sandbox_mode = "workspace-write"

[profiles.flash]
model_provider = "deepseek"
model = "deepseek-v4-flash"
approval_policy = "on-request"
sandbox_mode = "workspace-write"

Run with a profile:

deepseekx --profile pro

Models

DeepSeekX currently exposes:

  • deepseek-v4-pro
  • deepseek-v4-flash

DeepSeek model metadata, base instructions, and personality templates are maintained inside the DeepSeek provider catalog rather than loaded from the OpenAI model catalog at runtime.

Differences From OpenAI Codex

  • The CLI command is deepseekx.
  • The npm package is @meomeo-dev/deepseekx.
  • User config defaults to ~/.deepseekx.
  • Project config defaults to .deepseekx/config.toml.
  • DeepSeek auth uses DEEPSEEK_API_KEY.
  • OpenAI login and unsupported IDE/app commands are hidden or disabled.
  • Some upstream Codex features may stay unavailable until they are adapted for DeepSeekX.

Release Channels

  • npm is the primary install channel.
  • GitHub Releases provide release notes and optional tarballs.
  • Homebrew is not currently supported.

License

This repository is licensed under the Apache-2.0 License.

DeepSeekX is a downstream fork of OpenAI Codex. See CODEX_README.md for the preserved upstream README.