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

deepagents-cli

v0.0.16

Published

DeepAgents CLI - AI Coding Assistant for your terminal

Readme

deepagents-cli

npm version License: MIT

DeepAgents CLI - An AI coding assistant that runs in your terminal, powered by DeepAgents.

This package wraps the Python deepagents-cli as platform-specific binaries, allowing you to use the full-featured CLI without installing Python.

Installation

# Using npm
npm install -g deepagents-cli

# Using pnpm
pnpm add -g deepagents-cli

# Using yarn
yarn global add deepagents-cli

# Or run directly with npx (no installation required)
npx deepagents-cli

Quick Start

# Start the interactive CLI
deepagents

# Get help
deepagents help

# List available agents
deepagents list

Features

  • Built-in Tools: File operations (read, write, edit, glob, grep), shell commands, web search, and subagent delegation
  • Customizable Skills: Add domain-specific capabilities through a progressive disclosure skill system
  • Persistent Memory: Agent remembers your preferences, coding style, and project context across sessions
  • Project-Aware: Automatically detects project roots and loads project-specific configurations

Usage

Basic Commands

# Start the CLI (default agent)
deepagents

# Use a specific agent configuration
deepagents --agent mybot

# Use a specific model (auto-detects provider)
deepagents --model claude-sonnet-4-5-20250929
deepagents --model gpt-4o

# Auto-approve tool usage (skip human-in-the-loop prompts)
deepagents --auto-approve

# Execute code in a remote sandbox
deepagents --sandbox modal        # or runloop, daytona
deepagents --sandbox-id dbx_123   # reuse existing sandbox

Skills Management

# List all skills (global + project)
deepagents skills list

# Create a new skill
deepagents skills create my-skill

# View skill information
deepagents skills info web-research

Environment Variables

Set your API keys:

# Model providers (at least one required)
export ANTHROPIC_API_KEY="your-key"
export OPENAI_API_KEY="your-key"
export GOOGLE_API_KEY="your-key"

# Optional: Web search
export TAVILY_API_KEY="your-key"

# Optional: LangSmith tracing
export LANGCHAIN_TRACING_V2=true
export LANGCHAIN_API_KEY="your-key"

Supported Platforms

| Platform | Architecture | Package | | -------- | --------------------- | ------------------------------ | | Linux | x64 | @deepagents-cli/linux-x64 | | Linux | ARM64 | @deepagents-cli/linux-arm64 | | macOS | Intel (x64) | @deepagents-cli/darwin-x64 | | macOS | Apple Silicon (ARM64) | @deepagents-cli/darwin-arm64 | | Windows | x64 | @deepagents-cli/win32-x64 |

The appropriate platform package is automatically installed based on your system.

Troubleshooting

Binary not found

If you see an error about the binary not being found:

# Reinstall the package
npm uninstall -g deepagents-cli
npm install -g deepagents-cli

Unsupported platform

If your platform is not supported, please open an issue.

Version Synchronization

This package automatically mirrors the version of the Python deepagents-cli. New versions are typically available within 24 hours of a PyPI release.

Programmatic API

You can also use this package programmatically:

import { getBinaryPath, isAvailable, getVersion } from "deepagents-cli";

// Check if CLI is available for this platform
if (isAvailable()) {
  const binaryPath = getBinaryPath();
  console.log(`CLI binary at: ${binaryPath}`);
}

// Get installed version
const version = getVersion();
console.log(`Version: ${version}`);

License

MIT - see LICENSE

Related