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

@simplelittledev/fastcode

v0.1.3

Published

FastCode — a blazing-fast TUI coding assistant. Multi-LLM, skills.sh skills, slash commands. Works on Termux, Linux, Windows, and macOS.

Readme

⚡ FastCode

npm install -g @simplelittledev/fastcode
fastcode

Short alias included:

fc

🌈 What Is FastCode?

FastCode is a beautiful TUI coding assistant that runs inside your terminal. It connects to your favorite AI provider, keeps the workflow command-driven, and supports Anthropic-style Agent Skills for specialized abilities.

It is built for developers who want an AI assistant that feels quick, direct, and usable from anywhere: Linux, macOS, Windows, and Android through Termux.


✨ Highlights

| Feature | What You Get | | --- | --- | | 🎨 Colorful TUI | Big FastCode banner, themes, transcript bubbles, status bar | | 🤖 Multi-provider | Anthropic, OpenAI, Gemini, OpenRouter, Groq, DeepSeek, Mistral, Ollama | | 🧠 Agent Skills | Install and enable SKILL.md powered workflows | | 🧩 Plugins | Import always-active plugin packs with bundled skills | | 🛠️ Coding Agent | Shell, file editing, grep, patching, and sandboxed local tools | | ⚡ Slash commands | Switch models, manage keys, enable skills, inspect config | | 📱 Termux-ready | Stable UI mode helps avoid flicker on Android terminals | | 🔐 Local config | Keys and preferences stay under ~/.fastcode |


🚀 Install

Global install

npm install -g @simplelittledev/fastcode
fastcode

Run without installing globally

npx @simplelittledev/fastcode

Start with a prompt

fastcode "explain this repository"

🔑 Add Your API Key

Use environment variables:

export ANTHROPIC_API_KEY="sk-ant-..."
export OPENAI_API_KEY="sk-..."
export OPENROUTER_API_KEY="sk-or-..."

Or save a key from inside FastCode:

/login openai sk-...
/login anthropic sk-ant-...

Then start chatting:

fastcode

🧩 Providers

| Provider | Default Model | Auth | | --- | --- | --- | | anthropic | claude-3-5-sonnet-latest | ANTHROPIC_API_KEY or CLAUDE_API_KEY | | openai | gpt-4o-mini | OPENAI_API_KEY | | google | gemini-1.5-flash | GEMINI_API_KEY or GOOGLE_API_KEY | | openrouter | anthropic/claude-3.5-sonnet | OPENROUTER_API_KEY | | groq | llama-3.3-70b-versatile | GROQ_API_KEY | | deepseek | deepseek-chat | DEEPSEEK_API_KEY | | mistral | mistral-small-latest | MISTRAL_API_KEY | | ollama | llama3.2 | Local, no API key required |

Switch anytime:

/provider openai
/model gpt-4o-mini

🪄 Agent Skills

FastCode can install and inject Anthropic-style skills into the system prompt.

/skills search pdf
/skills install pdf
/skills install anthropics/skills/pdf
/skills install https://example.com/my-skill/SKILL.md
/skills enable pdf
/skills list
/skills info pdf

Installed skills live here:

~/.fastcode/skills/<name>/SKILL.md

🛠️ Coding Agent

FastCode can act as a local coding agent. Agent mode is enabled by default and works with any provider, including local Ollama models.

/agent status
/agent on
/agent off
/tools
/cwd

Available tools include:

shell, pwd, read_file, read_many, write_file, append_file, apply_patch,
replace_in_file, list_files, grep, stat_path, make_dir, copy_file,
move_path, delete_file

Tools run inside a sandbox rooted at the directory where you start FastCode. File tools cannot access paths outside that root. Shell commands run with:

FASTCODE_SANDBOX=1
FASTCODE_SANDBOX_ROOT=<current-working-directory>

Example:

cd ~/my-project
fastcode "run the tests, find the failing file, patch it, and verify the fix"

🧩 Plugins

Plugins are always-active behavior packs. A plugin folder can contain:

my-plugin/
├── PLUGIN.md
└── skills/
    └── reviewer/
        └── SKILL.md

Import and enable a plugin:

/plugin import ./my-plugin reviewer
/plugin list
/plugin info reviewer
/plugin disable reviewer
/plugin enable reviewer
/plugin remove reviewer

Installed plugins live under:

~/.fastcode/plugins/

🎮 Slash Commands

| Command | Action | | --- | --- | | /help | Show command list | | /agent [on/off/status] | Toggle local coding-agent tools | | /tools | Show available coding tools | | /cwd | Show agent sandbox root | | /plugin ... | Import and manage always-active plugin packs | | /provider [id] | List or switch provider | | /model [id] | List or switch model | | /login <provider> <key> | Save API key | | /logout <provider> | Remove API key | | /skills ... | Search, install, enable, disable, list skills | | /theme [id] | Switch theme | | /cost | Show token and cost usage | | /system [text] | Show or update system prompt | | /whoami | Show configured provider keys | | /config | Print config and paths | | /clear | Clear conversation | | /reset | Reset config | | /about | Show version and platform | | /exit | Quit |

Keyboard controls:

Esc       cancel streaming
Ctrl+C    press twice to quit

🎨 Themes

/theme fastcode
/theme neon
/theme sunset
/theme matrix
/theme mono

Want the calmest terminal experience?

FASTCODE_STABLE_UI=1 fastcode

Termux enables stable UI automatically.


📱 Termux

Install Node.js first:

pkg install nodejs
npm install -g @simplelittledev/fastcode
fastcode

If the command is not found, check your npm global binary path:

npm bin -g
echo "$PATH"

FastCode stores config inside your home directory:

~/.fastcode/
├── config.json
├── auth.json
├── skills/
├── plugins/
├── cache/
├── sessions/
└── logs/

You can move that root with:

FASTCODE_HOME=/path/to/fastcode fastcode

🛠️ Development

git clone https://github.com/SimpleLittleDev/FastCode
cd FastCode
npm install
npm run dev

Quality checks:

npm run check

Or run each step:

npm test
npm run typecheck
npm run lint
npm run build

Run the built CLI:

node ./bin/fastcode.mjs

📦 Publish Notes

The package exposes two global commands:

{
  "bin": {
    "fastcode": "./bin/fastcode.mjs",
    "fc": "./bin/fastcode.mjs"
  }
}

Publish public scoped releases with:

npm publish --access public

📜 License

MIT © SimpleLittleDev