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

enton-cli

v0.1.4

Published

ENTON - AI-powered financial assistant CLI. Like Claude Code, but for finance.

Readme

ENTON CLI

🏦 AI-powered financial assistant - like Claude Code, but for finance.

Installation

npm install -g @enton/cli

Or run directly with npx:

npx @enton/cli "What is the price of AAPL?"

Usage

Interactive Mode

Just run enton to start an interactive session:

enton
╔═══════════════════════════════════════════════════════════╗
║  🏦 ENTON - AI Finance Agent                              ║
╚═══════════════════════════════════════════════════════════╝

Type your questions or commands. Type "exit" to quit.

> What is the price of AAPL?
🔧 get_stock_quote

The current price for Apple (AAPL) is **$262.50**, down 1.78% from the previous close.

📊 Tools: get_stock_quote | 1523ms

> 

Direct Query Mode

Run a single query:

enton "Get me news about Tesla"

Watch Mode

Monitor real-time prices:

enton watch AAPL,TSLA,NVDA
📈 ENTON Watch Mode
Last update: 3:45:21 PM

┌────────┬──────────┬────────────┬──────────┐
│ Symbol │ Price    │ Change     │ % Change │
├────────┼──────────┼────────────┼──────────┤
│ AAPL   │ $262.50  │ ▼ $4.76    │ -1.78%   │
│ TSLA   │ $245.80  │ ▲ $12.30   │ +5.27%   │
│ NVDA   │ $138.20  │ ▲ $2.15    │ +1.58%   │
└────────┴──────────┴────────────┴──────────┘

Press Ctrl+C to exit

Authentication

Login with your ENTON account:

enton auth login

Or use an environment variable:

export ENTON_API_KEY=your_api_key
enton

Commands

| Command | Description | |---------|-------------| | enton | Start interactive mode | | enton "query" | Run a single query | | enton auth login | Authenticate with ENTON | | enton auth logout | Log out | | enton auth status | Check authentication status | | enton watch SYMBOLS | Watch real-time prices | | enton config list | List configuration | | enton config set KEY VALUE | Set a config value |

Interactive Commands

While in interactive mode:

  • /help - Show available commands
  • /clear - Clear the screen
  • /status - Show connection status
  • exit, quit, q - Exit

Configuration

Configure with enton config:

# Set API URL
enton config set apiUrl https://api.enton.ai

# Set output format
enton config set outputFormat json

# List all config
enton config list

JSON Output

Use --json flag for machine-readable output:

enton "price of AAPL" --json
{
  "answer": "The current price for Apple (AAPL) is $262.50...",
  "toolsUsed": ["get_stock_quote"],
  "iterations": 2,
  "totalTime": 1523
}

Examples

# Stock prices
enton "What is the price of AAPL?"
enton "Compare NVDA vs AMD"

# News
enton "Get me news about Tesla"
enton "Latest market news"

# Analysis
enton "Analyze MSFT stock"
enton "Technical analysis for SPY"

# Portfolio (requires auth)
enton "Show my portfolio"
enton "What are my positions?"

# Trading (requires auth)
enton "Buy 10 shares of AAPL"
enton "Show my open orders"

Development

# Clone and install
git clone https://github.com/enton-ai/enton-cli
cd enton-cli
npm install

# Run in development mode
npm run dev

# Build
npm run build

# Test
npm test

License

MIT © ENTON AI