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

aix-agent

v0.1.0

Published

One command to run AI agents locally. Any LLM. Any tool. No lock-in.

Downloads

136

Readme


npx aix-agent "analyze this project and find bugs"

That's it. One command. No config files. No setup.

What it does

AIX is an autonomous AI agent that runs locally on your machine. Give it a task in plain English, and it will:

  1. Think about what needs to be done
  2. Act by reading files, running commands, searching code
  3. Observe the results
  4. Repeat until the task is done

Quick Start

# Uses whichever API key you have set
export ANTHROPIC_API_KEY=sk-...  # or OPENAI_API_KEY, GEMINI_API_KEY, GROQ_API_KEY

npx aix-agent "what does this project do?"

No API key? It falls back to Ollama (local LLMs).

Why AIX?

| | AIX | AutoGPT | Claude Code | |---|:---:|:---:|:---:| | One command to start | ✅ | ❌ | ❌ | | Any LLM provider | ✅ | OpenAI only | Claude only | | Local LLM support | ✅ (Ollama) | ❌ | ❌ | | Zero config | ✅ | ❌ | ❌ | | Dependencies | 0 | 50+ | N/A | | Works as library | ✅ | ❌ | ❌ |

Supported Providers

| Provider | Env Variable | Default Model | |----------|-------------|---------------| | Claude | ANTHROPIC_API_KEY | claude-sonnet-4-20250514 | | GPT | OPENAI_API_KEY | gpt-4o | | Gemini | GEMINI_API_KEY | gemini-2.0-flash | | Groq | GROQ_API_KEY | llama-3.3-70b-versatile | | Ollama | (none needed) | llama3.1 |

Built-in Tools

The agent comes with 6 built-in tools:

| Tool | What it does | |------|-------------| | read_file | Read any file | | write_file | Create or modify files | | list_dir | Browse directories | | shell | Run shell commands | | search_files | Grep through code | | web_fetch | Fetch URLs |

Usage as Library

import { runAgent } from "aix-agent";

const result = await runAgent("find security vulnerabilities in src/", {
  llm: { provider: "claude", model: "claude-sonnet-4-20250514" },
  verbose: true,
  maxTurns: 20,
});

console.log(result.output);

CLI Options

aix "your task here"              Run a task
aix --provider claude "task"      Force a specific provider
aix --model gpt-4o "task"         Force a specific model
aix --max-turns 50 "task"         Increase max iterations
aix --verbose "task"              Show thinking and tool calls
aix --help                        Show help

Examples

# Analyze a project
aix "what does this codebase do? give me a summary"

# Fix bugs
aix "the tests in src/auth.test.ts are failing. fix them"

# Refactor code
aix "refactor src/api.ts to use async/await instead of callbacks"

# Security audit
aix "find security vulnerabilities in this project"

# Write tests
aix "write unit tests for src/utils.ts"

License

MIT