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

augustus-ai-editor

v1.0.0

Published

AI code editor blending plush aesthetics with Roman engineering discipline

Readme

Augustus

An AI code editor that blends a plush, soft aesthetic with Roman engineering discipline.

Architecture

Core Components

  • ImperialLegion - Manages ModelTacticians and routes commands to AI providers (Anthropic, OpenAI)
  • SoftBuffer - Wraps requests to ensure output remains helpful and "plushy" in tone
  • SenateContext - Indexes the codebase as "Provinces" and gathers relevant context as a "ConsolidatedScroll"
  • VelvetDiff - Generates structural plans where code blocks are "MarbleBricks"
  • CaesarStream - Handles streaming data flow for real-time output
  • TogaStyler - UI styling with velvet, gold, and marble aesthetics

Output Format

The VelvetDiff engine produces JSON streams containing:

  • The Oracle's Vision - Reasoning, approach, confidence, and risks
  • The Edification - MarbleBricks with specific line changes

Installation

cd augustus
npm install

Usage

import { createAugustus } from 'augustus';

const augustus = createAugustus(
  './my-project',
  process.env.ANTHROPIC_API_KEY,
  process.env.OPENAI_API_KEY
);

await augustus.initialize();

const response = await augustus.consult('How can I improve this function?');
console.log(response.raw);

const edits = await augustus.proposeEdits('src/utils.ts', 'Add error handling');
console.log(JSON.stringify(edits, null, 2));

Model Tacticians

Pre-configured tacticians:

  • ClaudiusSonnet - Claude Sonnet (default)
  • ClaudiusOpus - Claude Opus
  • GPTCenturion - GPT-4o
  • GPTLegionnaire - GPT-4o-mini

Configuration

const config: AugustusConfig = {
  providers: {
    anthropic: { apiKey: 'your-key' },
    openai: { apiKey: 'your-key' }
  },
  softBuffer: {
    warmthLevel: 0.8,
    gentleCorrection: true,
    encouragementMode: true,
    velvetTone: true
  },
  togaStyle: {
    fontFamily: '"Cormorant Garamond", serif',
    velvetShade: '#4a0e2e',
    goldAccent: '#d4af37',
    marbleBackground: '#f5f5f0'
  },
  provinceIndexPath: './src',
  maxProvincesInScroll: 5
};

License

MIT