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

@deepractice-ai/agent

v0.13.0

Published

Deepractice AI Agent - Full-stack application (Server + Web UI + CLI)

Readme

@deepractice-ai/agent

A full-stack AI Agent application with web UI, server, and CLI - powered by Claude.

Features

  • 🎨 Modern Web UI - React-based interface for interacting with Claude
  • 🚀 Express Server - HTTP + WebSocket support for real-time communication
  • CLI Tool - Command-line interface for quick deployments
  • 📦 All-in-One - Server, web UI, and CLI bundled together
  • 🔧 Configurable - Environment-based configuration management

Quick Start

Using npx (Recommended)

npx @deepractice-ai/agent http --anthropic-api-key YOUR_API_KEY

Global Installation

npm install -g @deepractice-ai/agent
agentx http --anthropic-api-key YOUR_API_KEY

Visit http://localhost:5200 to access the web UI.

Using Environment Variables

Create a .env file:

ANTHROPIC_API_KEY=your_api_key_here
PORT=5200
PROJECT_PATH=/path/to/your/project

Then run:

agentx http

CLI Options

agentx http [options]

Options:
  --host <host>                 Host to bind to (default: "0.0.0.0")
  --port <port>                 Port to listen on (default: "5200")
  --project <path>              Project directory path
  --anthropic-api-key <key>     Anthropic API key
  --anthropic-base-url <url>    Anthropic API base URL
  -h, --help                    Display help
  -V, --version                 Display version

Environment Variables

| Variable | Description | Default | | -------------------- | ------------------------- | ------------ | | ANTHROPIC_API_KEY | Claude API key (required) | - | | PORT | Server port | 5200 | | HOST | Server host | 0.0.0.0 | | PROJECT_PATH | Project directory path | Current dir | | ANTHROPIC_BASE_URL | Custom API endpoint | Official API | | NODE_ENV | Environment mode | production |

Accessing the Application

After starting the server, access the web UI at:

http://localhost:5200

The server provides:

  • Web UI: http://localhost:5200
  • WebSocket: ws://localhost:5200/ws
  • API: http://localhost:5200/api/*

Docker

Using Docker Hub

docker run -d -p 5200:5200 \
  -e ANTHROPIC_API_KEY=your_api_key \
  -v $(pwd):/project \
  deepracticexs/agent:latest

Using Aliyun ACR (China)

docker run -d -p 5200:5200 \
  -e ANTHROPIC_API_KEY=your_api_key \
  -v $(pwd):/project \
  registry.cn-hangzhou.aliyuncs.com/deepractice/agent:latest

Development

This package is part of the Deepractice AI Agent monorepo. For development:

git clone https://github.com/Deepractice/Agent.git
cd Agent
pnpm install
pnpm dev

Access development server at http://localhost:5173 (with HMR).

Architecture

License

MIT

Links