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

aetheria-cli

v0.1.4

Published

AI-powered game development CLI with local LLM, 45+ tools, autonomous agent mode, and 50+ slash commands

Readme

Aetheria CLI

AI-powered game development CLI with a local embedded LLM, 45+ tools, autonomous agent mode, and 50+ slash commands. Works fully offline by default using a local GGUF model.

Installation

npm install -g aetheria-cli

Requirements: Node.js 18+ · Windows 10/11, macOS, Linux

On first launch Aetheria automatically downloads the local AI model (~4.5 GB, Qwen3-VL-8B Q4_K_M) from HuggingFace. An NVIDIA GPU is recommended but not required.

Quick start

aetheria          # Interactive REPL (chat mode)
aetheria yolo -p "create a jump mechanic in TypeScript" -s 5   # Autonomous agent

Key features

  • Local LLM by default — Qwen3-VL-8B GGUF, ~35 tok/s with an RTX 4060
  • Cloud providers — OpenAI, Anthropic, Groq, Gemini, Mistral, Ollama and more
  • 45+ built-in tools — file I/O, Git, web search, system info, code parsing
  • Autonomous agent (yolo) — multi-step tasks with doom-loop detection
  • 50+ slash commands/model, /memory, /agents, /architect, /voice, /stats, /sessions
  • GameDev commandsbalance, prototype, gdd, shader, level, mechanic, asset
  • MCP support — connect any Model Context Protocol server
  • Permission modes — bypass · default · acceptEdits · plan · delegate · dontAsk
  • Memory Bank — structured project documentation that persists across sessions

Switching AI provider

# Use OpenAI instead of local model
aetheria config set provider openai
aetheria config set apiKey sk-...

# Use Anthropic
aetheria config set provider anthropic
aetheria config set apiKey sk-ant-...

# Use Ollama (local server)
aetheria config set provider ollama
aetheria config set model llama3.2

Autonomous agent examples

aetheria yolo -p "create a complete Phaser 3 platformer with player movement and enemies" -s 10
aetheria yolo -p "refactor all TypeScript files to use strict mode" -s 5
aetheria yolo -p "analyze the codebase and generate a GDD" -m design -s 8

GameDev commands

aetheria balance stats player.json
aetheria prototype mechanic "dash ability with cooldown"
aetheria gdd create
aetheria shader create "water ripple effect"
aetheria level design "procedural dungeon with traps"

All commands

aetheria               Interactive REPL
aetheria yolo          Autonomous agent
aetheria design        Generate Game Design Document
aetheria generate      Generate code from description
aetheria analyze       Analyze code file
aetheria refactor      Refactor code
aetheria review        Code review
aetheria search        Semantic search in codebase
aetheria sessions      Manage sessions
aetheria memory        Persistent project memory
aetheria skills        Custom skills
aetheria config        Configuration
aetheria ollama        Ollama management
aetheria mcp           MCP servers
aetheria watch         File watcher (AI! / AI? triggers)
aetheria stats         Session statistics
aetheria check         System check

License

MIT © SwonDev