Skip to main content

Deepy - Vibe coding for DeepSeek models in your terminal

Project description

Deepy logo

Deepy

A cute terminal coding agent for DeepSeek models.
Read, edit, run tools, search the web, and keep project context in one terminal session.

Website · 中文文档 · Quick Start

Deepy welcome screen

What Is Deepy?

Deepy is a Python terminal coding agent built for DeepSeek's OpenAI-compatible models. It keeps the workflow inside your terminal: ask questions, inspect a project, edit files, run commands, search or fetch web content, and resume the same project session later.

Deepy is designed around DeepSeek V4 thinking mode, long context, cache-friendly prompting, and a Rich terminal interface that makes tool calls, diffs, usage, and context state visible while the agent works.

Highlights

  • DeepSeek-first model setup with deepseek-v4-pro, thinking enabled, and reasoning_effort=max by default.
  • OpenAI Agents SDK integration through OpenAIChatCompletionsModel.
  • Project-aware coding tools for reading files, modifying files, running shell commands, and showing readable diffs.
  • Web research tools for search and direct URL fetching when a task needs fresh information.
  • Session history, /resume, /new, automatic context tracking, and compacting for long project work.
  • TOML-only private configuration at ~/.deepy/config.toml.
  • Theme-aware terminal UI with Markdown rendering, DeepSeek thinking display, per-turn usage, context window status, and version update checks.

See It Work

Start In A Project

Deepy shows the current model, thinking settings, working directory, and the core commands directly on startup.

Deepy startup screen

Build And Verify Code

Ask Deepy to implement a change, write tests, run the project test command, and summarize the result.

Deepy coding workflow with diff

Deepy can also turn command output into a readable project summary, including files created, code snippets, and test coverage.

Deepy project summary

Research With Sources

Deepy includes WebSearch and WebFetch tools, so a terminal session can gather current information and fetch exact pages when a URL is provided.

Deepy web research workflow

Quick Start

Install from PyPI after the first release:

uv tool install deepy-cli

The installed command is still deepy.

Install the latest code from GitHub:

uv tool install git+https://github.com/kirineko/deepy.git

Configure your DeepSeek API key:

deepy config setup

Start Deepy in a project:

cd your-project
deepy

Configuration

Deepy only uses TOML configuration. JSON config files are intentionally rejected.

# ~/.deepy/config.toml
[model]
api_key = "sk-..."
name = "deepseek-v4-pro"
base_url = "https://api.deepseek.com"

[context]
window_tokens = 1048576
compact_trigger_ratio = 0.8

[ui]
theme = "auto" # auto, dark, or light

WebSearch uses Deepy's hosted SearXNG endpoint by default. You can override it with your own SearXNG instance:

[tools.web_search]
searxng_url = "https://your-searxng.example/"

You can also initialize config non-interactively:

deepy config init --api-key sk-... --model deepseek-v4-pro

If your terminal uses a light background and parts of the UI look low contrast, set the UI theme explicitly:

deepy config theme light

Common Commands

deepy --version
deepy config setup
deepy config reset
deepy config theme
deepy config theme light
deepy doctor
deepy doctor --live --json
deepy status
deepy skills list
deepy sessions list
deepy sessions show <session-id>
deepy run "summarize this project"

Inside the interactive terminal:

/skills   List available skills
/new      Start a fresh conversation
/resume   Pick a previous session
/theme    Show or change UI theme
/reset    Delete config and run setup again
/         Open the command menu
Esc       Interrupt the current model turn
Ctrl+D    Press twice to quit

Project Rules And Skills

Deepy automatically loads project instructions from:

  • AGENTS.md
  • .deepy/skills/*/SKILL.md

This lets each repository define local conventions, commands, review rules, and domain-specific skills without changing global config.

Development

uv sync --group dev
uv run pytest
uv run ruff check
uv run pyright
uv build

The Python package is built from src/deepy. GitHub Pages files and screenshot assets live outside the package directory and are not included in the wheel.

Release Status

Deepy is preparing its first public 0.1.5 release. The current release path is GitHub + PyPI. Standalone binaries and npm wrappers can be added later, but the primary distribution is the Python CLI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepy_cli-0.1.5.tar.gz (86.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deepy_cli-0.1.5-py3-none-any.whl (110.3 kB view details)

Uploaded Python 3

File details

Details for the file deepy_cli-0.1.5.tar.gz.

File metadata

  • Download URL: deepy_cli-0.1.5.tar.gz
  • Upload date:
  • Size: 86.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for deepy_cli-0.1.5.tar.gz
Algorithm Hash digest
SHA256 f11a29b1875241c12d7422725780cae91d448735c8072aa60bb4ddddb305ce7b
MD5 d6c353c3a09e585c45204380aa21b45a
BLAKE2b-256 54f52c0c18accd1e3e1a05f15c48d66554b7cc44a100afecf8342a898b2be2f5

See more details on using hashes here.

File details

Details for the file deepy_cli-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: deepy_cli-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 110.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for deepy_cli-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 c985d50046a535818967bb2769a15b73397ab8f87041da1eac8b0bab458e2131
MD5 de55e80cc6a7c8aacc76d59a2d26dc18
BLAKE2b-256 f0924da9c5dae9aed50bcde1559db7356d693ef90deaf2df7089c06877c697c6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page