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

axiom-unified

v0.1.3

Published

Free daily local agent specialized in coding and project work with safety gates and provider fallback

Readme

Axiom Unified

Axiom Unified is a free daily local agent specialized in coding and project work. It runs locally on your machine and connects to external AI providers for inference. It is designed as a terminal-first coding companion with safety gates, provider fallback, persistent memory, and 30+ coding-focused tools.

Why Axiom?

  • Free-tier focused provider configuration
  • Confirmation gates for destructive operations
  • Coding-specialized tools for project work
  • Persistent memory and project context
  • Local runtime with external-provider inference

Quick Start

Install from source

git clone https://github.com/EchoEe247/axiom-unified.git
cd axiom-unified
npm install
npm run build

Install as a global CLI from a local checkout

npm install -g .
axiom "what can you do?"

The npm package is prepared for publication, but this project has not claimed a public npm release until a separate publish receipt exists.

Your first commands

# Analyze your current project
axiom analyze-project

# Run autonomous agent mode with a complex goal
axiom "optimize build process" --auto

# Visualize the Project Knowledge Graph
axiom map

You can also run the built entry point directly:

node dist/index.js "read package.json and suggest updates"

Features

Coding Specialization

  • Autonomous agency for complex multi-step goals with --auto
  • Project analysis commands such as analyze-project and detect-tech-stack
  • Project mapping through the Knowledge Graph
  • Code quality tools such as security-scan, complexity, and test-coverage
  • Refactoring helpers such as refactor-suggest and bug-predict
  • Integration helpers for IDE, CI/CD, and cloud deployment configuration

Safety First

  • Confirmation gates for file writes, shell commands, and git operations
  • Provider limits, free-tier monitoring, and fallback routing
  • Context-aware memory with privacy controls
  • Granular tool permission classification

Intelligent Systems

  • Persistent memory across sessions
  • Knowledge Graph entity and relationship tracking
  • Provider fallback across Groq, Cerebras, NVIDIA, and Mistral
  • Autonomous planner, executor, and experience learner components

Performance

  • Terminal-first runtime
  • Optional daemon mode with axiom serve
  • Fast local startup
  • Minimal production dependencies

Documentation

Architecture

src/
|-- core/           # Core systems: memory, knowledge graph, context
|-- runtime/        # Runtime systems: loop, dispatcher, planner
|-- tools/          # Tool implementations
|-- daemon/         # Daemon/client architecture
|-- persistence/    # Session storage
`-- providers.ts    # Multi-provider client

Development

Prerequisites

  • Node.js 18+
  • npm 8+

Development commands

npm install          # Install dependencies
npm run check        # TypeScript compilation check
npm test             # Run test suite
npm run build        # Build project
npm run serve        # Start daemon mode

Release-readiness commands

npm run verify:offline
npm pack --dry-run

prepack runs the production build before package creation. prepublishOnly runs the full offline verification gate before any real npm publish attempt.

Adding New Tools

  1. Add the tool implementation in src/tools/.
  2. Register the tool in the registry.
  3. Add appropriate safety gates.
  4. Add focused tests.
  5. Update documentation.

Contributing

License

MIT License. See LICENSE for details.