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

arise-jinwoo-cli

v1.0.17

Published

Arise - AI coding assistant CLI for terminal

Readme

Arise

A terminal AI coding assistant CLI — like Gemini CLI or Claude Code, but runs anywhere.

 █████╗ ██████╗ ██╗███████╗███████╗
██╔══██╗██╔══██╗██║██╔════╝██╔════╝
███████║██████╔╝██║███████╗█████╗  
██╔══██║██╔══██╗██║╚════██║██╔══╝  
██║  ██║██║  ██║██║███████║███████╗
╚═╝  ╚═╝╚═╝  ╚═╝╚═╝╚══════╝╚══════╝

Features

  • Chat with any OpenAI-compatible LLM (opencode.ai, NVIDIA NIM, or custom)
  • File operations: read, write, edit, append — including large files with chunked reading
  • Bash execution, web search/fetch, background tasks, cron jobs
  • Sub-agents for parallel autonomous work
  • Session save/resume with checkpoints and branching
  • Works on Termux (Android), Linux, macOS

Install on Termux (Android)

Open Termux and run these commands one by one:

# 1. Update packages
pkg update && pkg upgrade -y

# 2. Install Node.js and git
pkg install nodejs git -y

# 3. Create your arise workspace
mkdir -p /storage/emulated/0/arise
cd /storage/emulated/0/arise

# 4. Clone or copy arise into this folder
# If you have the zip, extract it here. Or:
git clone <your-repo-url> .

# 5. Install dependencies
npm install

# 6. Make the CLI runnable globally (optional)
npm link

# 7. Set your API key
mkdir -p ~/.arise
echo 'OPENAI_API_KEY=your_key_here' > ~/.arise/.env

# Now run it
npm start
# Or if linked globally:
arise

Termux Storage Access

If Termux cannot access /storage/emulated/0/:

termux-setup-storage

Then restart Termux.

Running arise from any directory in Termux

# From the arise folder
npm start

# Or if you ran npm link:
arise

# To work on files in your storage
cd /storage/emulated/0/MyProject
arise

Quick Start (Linux / macOS)

npm install
npm start

Configuration

Config is stored in ~/.arise/

  • config.json — active model, provider settings
  • .env — API keys

Commands

| Command | Description | |---------|-------------| | /help | Show all commands | | /model | Interactive model selector | | /model <id> | Switch model directly | | /apikey <key> | Save API key | | /provider nvidia <key> | Use NVIDIA NIM | | /provider opencode | Use opencode.ai | | /provider custom <url> <key> | Use any OpenAI-compatible API | | /resume | List and restore sessions | | /clear | Clear chat | | /rewind | List checkpoints | | /rewind <n> | Rewind to checkpoint N | | /branch <n> | Fork from checkpoint N | | /init | Analyze codebase, create CLAUDE.md | | /exit | Exit |

Keyboard shortcuts:

  • Ctrl+M — Open model selector
  • Ctrl+O — View agent details
  • ESC — Cancel / clear input
  • @filename — Mention a file

Providers

opencode.ai (default)

/provider opencode

NVIDIA NIM

/provider nvidia nvapi-xxxx

Then pick a model with /model — recommended NVIDIA models:

  • meta/llama-3.3-70b-instruct
  • mistralai/mixtral-8x22b-instruct-v0.1
  • microsoft/phi-3-medium-4k-instruct
  • google/gemma-2-27b-it
  • qwen/qwen2.5-72b-instruct

Note: Some NVIDIA models don't support function calling. Arise automatically falls back to plain chat mode for those.

Custom (any OpenAI-compatible API)

/provider custom https://api.your-provider.com/v1 your-key

Working with Large Files

Arise can read and edit files of any size:

  • Reading large files: The AI automatically reads in 500-line chunks. Use offset and limit in the prompt if needed.
  • Editing large files: Use the edit_file tool with SEARCH/REPLACE blocks.
  • Appending: Use append_file to add content to large files without rewriting them.
  • Absolute paths: Fully supported, e.g. /storage/emulated/0/arise/myfile.js

Updating

cd /storage/emulated/0/arise   # or wherever you installed it
git pull
npm install