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

atxp

v1.8.2

Published

ATXP CLI - Command line tool for creating ATXP projects and running demos

Readme

ATXP CLI

Command line tool for ATXP tools and development.

Installation

# Run directly with npx (recommended)
npx atxp

# Or install globally
npm install -g atxp

Quick Start

# Log in to ATXP
npx atxp login

# Search the web
npx atxp search "latest AI news"

# Generate an image
npx atxp image "sunset over mountains"

# Search X/Twitter
npx atxp x "trending topics"

Commands

Authentication

npx atxp login [options]

Log in to ATXP by saving your connection string.

Get your connection string from: https://accounts.atxp.ai

Options:

  • --force - Update connection string even if already set

After login, source the config to use in your terminal:

source ~/.atxp/config

Tools

npx atxp search <query>

Search the web using ATXP.

npx atxp search "latest AI news"
npx atxp search "weather in San Francisco"

npx atxp image <prompt>

Generate an image from a text prompt.

npx atxp image "sunset over mountains"
npx atxp image "a cute robot playing guitar"

npx atxp music <prompt>

Generate music from a text prompt.

npx atxp music "relaxing piano"
npx atxp music "upbeat electronic dance"

npx atxp video <prompt>

Generate a video from a text prompt.

npx atxp video "ocean waves crashing"
npx atxp video "timelapse of clouds"

npx atxp x <query>

Search X/Twitter for live content.

npx atxp x "trending topics"
npx atxp x "AI announcements"

Development

npx atxp dev demo [options]

Runs the interactive ATXP demo application.

Options:

  • --verbose, -v - Show detailed logs
  • --refresh - Force refresh demo from GitHub
  • --port, -p - Specify port number (default: 8017)
  • --dir, -d - Specify demo directory (default: ~/.cache/atxp/demo)

Examples:

npx atxp dev demo
npx atxp dev demo --verbose
npx atxp dev demo --port 3000

npx atxp dev create <app-name> [options]

Creates a new ATXP project with the specified name.

Options:

  • --framework, -f - Specify framework template (default: express)
  • --git - Force git initialization
  • --no-git - Skip git initialization

Examples:

npx atxp dev create my-app
npx atxp dev create my-app --framework express
npx atxp dev create my-app --no-git

Other

npx atxp help

Displays help information.

About ATXP

ATXP is a platform for building web agents with OAuth and payment capabilities. This CLI tool helps you:

  • Access ATXP tools (search, image generation, music, video, X search)
  • Explore ATXP features through interactive demos
  • Bootstrap new projects with ATXP integration

Learn More

  • Website: https://atxp.dev
  • GitHub: https://github.com/atxp-dev/cli
  • Documentation: https://docs.atxp.dev

License

MIT