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

@aisee/aisee

v0.1.2

Published

AISee Command Line Interface

Readme

AISee CLI

Command-line interface for AISee — automate AEO (Answer Engine Optimization) analysis and multi-channel content distribution from your terminal.

Features

  • Device Authorization Flow (RFC 8628) — browser-based OAuth login, no terminal passwords.
  • AEO Analysis — scan websites, fetch AI-presence reports, competitor analysis, strategic recommendations.
  • Action Pipeline — convert optimization tasks into social media post drafts in one command.
  • Social Media Automation — create, schedule, and publish posts across X, LinkedIn, Reddit, and more.
  • Structured Output — every command supports --format json|table|csv|yaml|jsonl and --fields dot-path selection.
  • Built on apcore-cli 0.7.0 — audit logging, dry-run preflight, pipeline trace, approval gate.

Requirements

  • Run (Node.js): Node.js ≥ 18.0. Standard npm package is lightweight (~2MB).
  • Run (Standalone): No runtime dependency — ships as a self-contained native executable (~60MB).
  • Build: Bun ≥ 1.0 is required to build from source.

Installation

npm (recommended for Node.js users)

npm install -g @aisee/aisee

Installs a lightweight JS bundle that runs on your local Node.js.

bun (recommended for Bun users)

bun install -g @aisee/aisee

Standalone Binary (no Node/Bun required)

Download the pre-compiled binary for your platform from the Releases page.

# macOS/Linux
curl -L https://github.com/aisee-live/aisee-cli/releases/latest/download/aisee -o /usr/local/bin/aisee
chmod +x /usr/local/bin/aisee

Windows — from source

git clone <repository-url>
cd aisee-cli
bun install

.\scripts\install.ps1                          # %LOCALAPPDATA%\Programs\aisee + PATH
.\scripts\install.ps1 -InstallDir "C:\tools"   # or a custom directory

Quick Start

aisee login                              # browser OAuth → save credentials
aisee scan https://example.com           # start AEO analysis
aisee report https://example.com         # view latest report
aisee whoami                             # current user + credit balance

Documentation

| Document | Contents | |---|---| | Command Reference | All commands, flags, and examples | | Specification | Architecture, auth flow, build system, config schema | | Publishing Guide | How to release to npm and manage platform packages |

Building for Distribution

# Current platform (runs automatically on bun install)
bun run prepare

# Specific platform
bun run build:macos-arm64
bun run build:linux-x64
bun run build:windows-x64

# All five platforms at once
bun run build:all

Output binaries land in dist/:

| File | Platform | |---|---| | dist/aisee-darwin-arm64 | macOS Apple Silicon | | dist/aisee-darwin-x64 | macOS Intel | | dist/aisee-linux-x64 | Linux x86-64 | | dist/aisee-linux-arm64 | Linux ARM64 | | dist/aisee-windows-x64.exe | Windows x86-64 |

Tech Stack

| Layer | Package | |---|---| | Runtime | Node.js ≥ 18 / Bun ≥ 1.0 / Standalone | | Language | TypeScript (strict) | | Core SDK | apcore-js ≥ 0.19.0 | | CLI SDK | apcore-cli 0.7.0 | | Toolkit | apcore-toolkit ≥ 0.5.0 | | Schema | Zod v3 |


© 2026 AISee Engineering. All rights reserved.