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

arielle-js

v0.1.1

Published

CLI for ArielleJS - Your OpenAPI companion

Readme

ArielleJS

ArielleJS is a powerful CLI tool that helps you understand and work with OpenAPI specifications using natural language processing.

Features

  • Parse OpenAPI specifications
  • Interactive command-line interface
  • Natural language processing for API documentation
  • Vector-based search for API endpoints
  • Multi-intent query processing
  • Support for various LLM providers (Gemini, more coming soon!)

Installation

# Install globally
npm install -g arielle-js

# Or use with npx
npx arielle-js

Quick Start

  1. Start ArielleJS:

    arielle start
  2. Choose your preferred LLM provider (currently Gemini is the most tested option)

  3. Enter your LLM API key when prompted

  4. Provide the path to your OpenAPI specification file (YAML format)

  5. Wait for the OpenAPI spec to be processed and inserted into the local ChromaDB database

  6. Start asking questions about your API in natural language!

Example Usage with Stripe API

Here are some examples of how you can interact with the Stripe API using Arielle:

Basic Queries

How do I create a new customer?
What are the available payment methods?
Show me how to process a refund.

Complex Workflows

How do I create a subscription with a trial period?
What's the process for handling a disputed charge?
Show me how to set up a webhook for payment failures.

Multi-Intent Queries

How do I fetch all customers, then add a one-off charge for each?
List all active subscriptions and then cancel the most expensive one.

Schema Exploration

What fields are available when creating a charge?
Show me the schema for the Customer object.
What are the possible values for a payment intent status?

Tips

  • Be as specific as possible with your questions
  • You can ask follow-up questions based on previous answers
  • The system understands context, so you can refer to previous parts of the conversation
  • For complex operations, the system will break them down into multiple steps automatically

Development

Prerequisites

  • Node.js 20+
  • npm 9+

Setup

  1. Clone the repository
  2. Install dependencies:
    npm install
  3. Build the project:
    npm run build
  4. Link the package for local development:
    npm link

Scripts

  • npm run build - Compile TypeScript to JavaScript
  • npm run dev - Run in development mode using ts-node
  • npm run lint - Run ESLint
  • npm run format - Format code with Prettier

License

ISC