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

@nozich/lightagent

v0.1.2

Published

Zero-Dependency, State-Preserving Agent CLI — written in Rust

Readme

LightAgent ⚡

LightAgent is a blazingly fast, zero-dependency, state-preserving terminal AI coding assistant written in Rust.

Unlike heavy, bloated agent frameworks that crash, consume gigabytes of RAM, require constant confirmations, and lose their memory during branch switches or restarts, LightAgent is built for speed, local privacy, and absolute resilience.


🌟 Key Features

  • 🚀 Zero Dependencies: Compiled to a single static binary. No Python environment, node_modules, or heavy runtimes required.
  • 💾 State-Preserving (.agent/ jsonl): Saves every execution step, command stdout, and compiler output inside a local .agent/state.jsonl file. If your system restarts, terminal disconnects, or you switch git branches, LightAgent aligns itself with your Git commit history and resumes exactly where it left off.
  • 🤖 YOLO Mode: Enable --yolo mode and let the agent run, edit files, compile, and execute tests autonomously in a loop until your test suite passes. No constant confirmation prompts.
  • 🎛️ Ollama Native: Defaults to running against local models (like qwen2.5-coder) at http://localhost:11434 for free, 100% private execution. Also supports OpenAI and Anthropic APIs.

📦 Installation & Quickstart

1. Run via npx (Zero-Setup)

Run the agent instantly on any directory:

# Start a new task in YOLO mode
npx lightagent start "Fix the failing test in tests/auth.rs" --yolo

# Resume an interrupted task
npx lightagent resume --yolo

2. Install globally via NPM

npm install -g lightagent-cli

# Now use it directly
lightagent start "Refactor payment module"

3. Build from Source (Cargo required)

git clone https://github.com/anilcan-kara/lightagent.git
cd lightagent
cargo build --release

# Binary will be available at target/release/lightagent

4. Direct Binary Download

You can download the precompiled static binary for your platform directly from the GitHub Release assets:


🛠️ CLI Reference

Zero-Dependency, State-Preserving Agent CLI

Usage: lightagent <COMMAND>

Commands:
  start    Start a new engineering task
  resume   Resume the active task from the local state
  status   Show the status of the current task and git alignment
  clear    Clear the current active task state
  help     Print this message or the help of the given subcommand(s)

Resuming & Git Alignment

When running lightagent resume, the tool compares the Git commit hash at task initialization with the current HEAD. If a branch switch or code modification has occurred, it alerts you of code drift:

$ lightagent resume
Resuming active task...
Warning: Git commit drift detected! Current commit differs from task start commit.

🛡️ License

MIT — Anilcan Kara