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

devos-ai

v1.2.0

Published

The AI-Powered Full-Stack Development OS — Natural language to code, execution, debugging, deployment, all from your terminal.

Readme

⚡ DevOS

AI-Powered Full-Stack Development OS

npm version license node

One command to plan, code, test, debug, and deploy entire applications.

Getting Started · Commands · Agents · Models · Deployment · API


What is DevOS?

DevOS is an AI-powered CLI tool that acts as your full development team. Describe what you want to build in plain English, and DevOS will plan, code, test, debug, and deploy it — automatically.

npx devos-ai goal "Build a Twitter clone with auth and deploy to Vercel"

DevOS will:

  1. 📋 Plan — Break down your goal into tasks
  2. 💻 Code — Generate the entire codebase
  3. ▶️ Run — Start the application
  4. 🔧 Debug — Catch and fix errors automatically
  5. 📝 Review — Check code quality
  6. 🚀 Deploy — Ship to production

Install

npm install -g devos-ai

Quick Start

# Set up AI (pick one)
devos config set OPENAI_API_KEY=sk-your-key
# OR use free local models:
ollama pull llama3.3 && devos model add ollama

# Create a project
devos init "Express REST API with JWT auth and PostgreSQL"

# Run with auto-debugging
devos run

# Or go full autopilot
devos goal "Build and deploy a blog with React, markdown support, and Vercel"

Features

| Feature | Description | |---|---| | 🎯 Goal Mode | Describe what you want → get a deployed app | | 🔄 Auto-Debug Loop | Runs your app, catches errors, fixes them automatically | | 🤖 Multi-Agent System | 7 specialized AI agents collaborate on tasks | | 🧠 Smart Router | Auto-selects the best AI model per task | | 🌐 40+ AI Models | OpenAI GPT-5.4, Claude 4.7, Gemini 3.1, Ollama, OpenRouter | | 🖥️ Terminal GUI | Interactive dashboard — just run devos | | 📁 Workspace Folder | Set where AI creates files with devos config set workspace=/path | | 🚀 One-Click Deploy | Vercel, Railway, Fly.io, Docker | | 🔍 Code Search (RAG) | Natural language search across your codebase | | 🛡️ Security Scanner | Detects secrets, SQL injection, XSS, eval() | | 💰 Cost Tracking | Real-time AI usage costs per provider | | 📊 Health Monitor | Auto-healing deployment monitoring | | 🔀 Framework Migration | AI-powered migration between frameworks | | ⌨️ Interactive Shell | Natural language command interface |


Multi-Agent Architecture

User Input → Orchestrator → Planner → Coder → Executor → Debugger → Reviewer → Deployer
                                        ↑______________Auto-Fix Loop______________↓

| Agent | Role | |---|---| | 🎯 Orchestrator | Coordinates all agents, routes tasks | | 📋 Planner | Breaks goals into structured task plans | | 💻 Coder | Generates, edits, and refactors code | | 🔧 Debugger | Analyzes errors and auto-generates fixes | | 📝 Reviewer | Code quality review and security checks | | ▶️ Executor | Runs processes and tests | | 🚀 Deployer | Handles multi-platform deployment | | 📊 Monitor | Health checks with self-healing |


Supported AI Models

Cloud Providers

| Provider | Models | Setup | |---|---|---| | OpenAI | GPT-5.4 Pro, GPT-5 Turbo, o3, o4-mini | devos config set OPENAI_API_KEY=sk-... | | Anthropic | Claude 4.7 Sonnet/Opus, Claude 4.6 Opus/Sonnet | devos config set ANTHROPIC_API_KEY=sk-ant-... | | Google | Gemini 3.1 Pro/Flash, 2.5 Pro | devos config set GOOGLE_API_KEY=AIza... | | OpenRouter | 40+ models via single API | devos config set OPENROUTER_API_KEY=sk-or-... |

Local (Free)

| Provider | Models | Setup | |---|---|---| | Ollama | Llama 3.3, CodeLlama, DeepSeek, Mistral, Qwen | ollama pull llama3.3 && devos model add ollama |

Smart Router

devos model auto  # Automatically picks the best model per task
  • Simple tasks → cheap/fast model (GPT-4o-mini, Gemini 3.1 Flash)
  • Medium tasks → balanced model (GPT-5.4 Pro, Claude 4.7 Sonnet)
  • Complex tasks → premium model (Claude 4.7 Opus, Gemini 3.1 Pro)

Saves 60-80% on AI costs.


CLI Commands

# Project
devos init [description]        # Create new project
devos run [script]              # Run with auto-fix
devos goal <description>        # Full autopilot
devos auto                      # Auto-debug loop

# Development
devos edit <file> <instruction> # AI-powered editing
devos test [file]               # Generate & run tests
devos refactor [glob]           # AI refactoring
devos explain [file|error]      # Explain code/errors
devos find <query>              # RAG-powered code search
devos watch                     # File watcher
devos shell                     # Interactive AI shell

# AI & Config
devos model list|use|auto|add   # Manage models
devos config set|list|reset     # Configuration
devos cost                      # AI usage costs

# Deployment
devos deploy [--target=platform]# Deploy anywhere
devos rollback [version]        # Rollback deployment
devos env set|list|sync         # Environment vars
devos monitor [url]             # Health monitoring
devos status                    # Project status
devos logs [service]            # View logs

# Tools
devos security                  # Security scan
devos migrate <target>          # Framework migration

Deployment

# Auto-detect platform
devos deploy

# Or specify target
devos deploy --target=vercel
devos deploy --target=railway
devos deploy --target=fly
devos deploy --target=docker

DevOS auto-detects your project type:

  • Next.js / React → Vercel
  • Express / API → Railway
  • Full-stack → Fly.io
  • Any project → Docker

Programmatic Usage

import { Orchestrator, AIAdapter } from 'devos-ai';

const orchestrator = new Orchestrator();
await orchestrator.executeGoal('Build a REST API with Express');

// Or use individual agents
import { CoderAgent, DeployerAgent } from 'devos-ai';

const coder = new CoderAgent();
await coder.generateFile('server.js', 'Express server with CORS and rate limiting');

Project Structure

devos-ai/
├── bin/devos.js              # CLI entry point
├── src/
│   ├── cli/
│   │   ├── index.js          # Command registration
│   │   └── commands/         # 22 CLI commands
│   ├── agents/
│   │   ├── orchestrator.js   # Agent coordinator
│   │   ├── planner.js        # Task planning
│   │   ├── coder.js          # Code generation
│   │   ├── debugger.js       # Error analysis
│   │   ├── reviewer.js       # Code review
│   │   ├── executor.js       # Process management
│   │   ├── deployer.js       # Deployment
│   │   └── monitor.js        # Health monitoring
│   ├── ai/
│   │   ├── adapter.js        # Unified AI interface
│   │   ├── router.js         # Smart model routing
│   │   └── providers/        # OpenAI, Anthropic, Google, Ollama, OpenRouter
│   ├── code/analyzer.js      # Static analysis
│   ├── context/
│   │   ├── rag.js            # Code search engine
│   │   └── memory.js         # Project memory
│   └── utils/                # Config, logger, security, cost, git
├── docs/                     # HTML documentation website
├── package.json
├── LICENSE
└── README.md

Requirements

  • Node.js ≥ 18.0.0
  • AI Provider: At least one — OpenAI, Anthropic, Google, Ollama (free), or OpenRouter
  • Deployment (optional): Vercel CLI, Railway CLI, Fly CLI, or Docker

License

MIT © 2025 DevOS Team