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

@arts1234567/arc-code

v0.1.14

Published

Arc-code - AI-powered coding CLI with Arc 3.4 Ultra

Readme

Arc-code

AI-powered coding CLI with Arc 3.4 Ultra.

Arc-code is an agentic coding assistant that runs in your terminal. It can read files, write code, search your workspace, and run shell commands — all through a single conversational interface.

Install

One command. Works on Windows, Mac, and Linux. Node.js is installed automatically if you don't have it.

Mac / Linux:

curl -fsSL https://github.com/artsblr-bot/arc-code/releases/download/v0.1.4/install.sh | bash

Windows (PowerShell):

iwr -useb https://github.com/artsblr-bot/arc-code/releases/download/v0.1.4/install.ps1 | iex

Then run:

arc

Features

  • Arc 3.4 Ultra model with extended thinking, always on.
  • Five focused tools: read_file, write_file, list_directory, search_files, execute_command.
  • Orange-themed TUI inspired by Claude Code, with a tiny lightning-bug mascot.
  • Animated thinking indicator: spinner + rotating status word + progress bar.
  • Auto-compaction: long conversations are summarised so the context window never overflows.
  • Single key hardcoded for the build. Nothing about the underlying provider appears in the CLI output.

Install

npm install
npm run build

Run

# interactive TUI
npm start

# or directly
node bin/arc.js start

# non-interactive single prompt
node bin/arc.js start -q "what does this project do?"

# in a different directory
node bin/arc.js start -d /path/to/project

Commands inside the TUI

  • Type a message, press Enter to send.
  • Ctrl+C to exit.

Tests

npm test          # runs both smoke + TUI smoke
npm run test:smoke
npm run test:tui

Project layout

src/
  config.ts          # encoded key + model constants
  state.ts           # state manager
  llm/
    provider.ts      # upstream chat client
    system.ts        # Arc 3.4 Ultra system prompt
    compaction.ts    # context-window compactor
    types.ts         # shared LLM types
  tools/
    read.ts          # read_file
    write.ts         # write_file
    list.ts          # list_directory
    search.ts        # search_files (ripgrep + fallback)
    execute.ts       # execute_command
  agent/
    orchestrator.ts  # main reasoning loop
    planner.ts       # step planner
    executor.ts      # tool dispatch
    verifier.ts      # output validation
    retriever.ts     # simple RAG over the workspace
    memory.ts        # long-term fact store
  ui/
    tui.tsx          # main Ink app
    theme.ts         # orange palette
    mascot.tsx       # lightning-bug art
    ChatWindow.tsx   # conversation log
    ThinkingIndicator.tsx  # spinner + word + progress bar
    InputBar.tsx     # prompt input
    words.ts         # ~150 rotating status words

Notes

  • Thinking mode is always enabled. There is no command-line flag to turn it off.
  • The model identifies itself as Arc 3.4 Ultra if asked.
  • The key is encoded as char-code arrays in src/config.ts so the full string does not appear in the compiled binary.