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

yuva-ai

v1.2.1

Published

Yuva AI - Development agent framework with 12 agents, 20 LLM platforms, on-demand prompts, and auto-detection

Downloads

60

Readme

Yuva AI

A lightweight development agent framework with 12 specialized agents, 19 LLM platforms, on-demand prompts, and auto-detection.

npm version License: MIT Tests

What is this?

A development agent framework that turns your AI coding tool into a multi-agent system:

  • 12 Specialized Dev Agents — Requirements, Planning, Execution, Testing, Security, Debugging, and more
  • On-Demand Prompts — Agent prompts served from the package, not copied to your project
  • Auto-Detection — Detects your AI tool (Claude, OpenCode, Cursor, Codex, etc.) and configures automatically
  • 19 LLM Platforms — Works with Claude, GPT, Gemini, Ollama, OpenCode, Cursor, and more
  • Lightweight Init — Creates only 3 files instead of 67
  • Hybrid Orchestrator — CLI scans your project, AI picks the right agents
  • Session Persistence — Never lose progress across conversations
  • Zero Dependencies — Pure Node.js, installs in seconds

Quick Start

# Install globally
npm install -g yuva-ai

# Initialize in your project (auto-detects your AI tool)
yuva init

# Or specify your tool
yuva init opencode
yuva init cursor
yuva init codex

That's it. Open your project in your AI tool — it reads AGENTS.md and knows how to use agents.

How It Works

┌─────────────────────────────────────────────────────────────┐
│                    AGENTS.md (Orchestrator)                   │
│  AI reads this file and learns how to use the agent system   │
└─────────────────────────────────────────────────────────────┘
                              │
                    ┌─────────┴─────────┐
                    ▼                   ▼
         ┌──────────────────┐  ┌──────────────────┐
         │ yuva agent       │  │ yuva agent       │
         │ orchestrate      │  │ show <name>      │
         │                  │  │                  │
         │ Scans project:   │  │ Returns full     │
         │ - existing code? │  │ agent prompt     │
         │ - language?      │  │ from package     │
         │ - framework?     │  │ on demand        │
         │ - git status?    │  │                  │
         └──────────────────┘  └──────────────────┘
                    │                   │
                    ▼                   ▼
         ┌──────────────────────────────────────────┐
         │          DEVELOPMENT AGENTS (12)          │
         ├──────────────────────────────────────────┤
         │ Existing Code │ Requirements │ Planner   │
         │ Execution     │ Tester       │ Reviewer  │
         │ Security      │ Debugger     │ Refactor  │
         │ Continuity    │ Risk         │ State Mgr │
         └──────────────────────────────────────────┘

CLI Commands

# Setup
yuva init                  # Auto-detect AI tool and initialize
yuva init opencode         # Initialize for specific tool
yuva init cursor --force   # Reinitialize for different tool
yuva doctor                # Diagnose setup issues

# Agent Commands
yuva agent show <name>     # Get full agent prompt (on demand)
yuva agent list            # List all available agents
yuva agent orchestrate     # Scan project context (JSON output)

# List & Custom Agents
yuva list                  # List all installed agents
yuva add create <name>     # Create a custom agent
yuva add remove <name>     # Remove an agent

# Multi-LLM
yuva llm list              # List supported LLMs
yuva llm use <name>        # Switch LLM platform
yuva llm detect            # Detect current LLM
yuva llm generate          # Generate configs for all LLMs

# Configuration
yuva config                # Show current config
yuva config set <k> <v>    # Set a config value

# Session Persistence (auto-saves)
yuva session start "goal"  # Start tracking a session
yuva session log "message" # Log progress
yuva session resume        # Get full context (for AI or you)
yuva session status        # Show session state
yuva session end           # End current session

# Analytics
yuva status                # Show project status
yuva help                  # Show full help

Available Agents

| Agent | Command | Purpose | |-------|---------|---------| | Existing Code | yuva agent show existingcode | Analyze existing codebase before changes | | Requirements | yuva agent show requirements | Gather and clarify what to build | | Risk Assessment | yuva agent show riskassessment | Identify risks before development | | Planner | yuva agent show planning | Create architecture and detailed plans | | Execution | yuva agent show execution | Implement code step-by-step | | Continuity | yuva agent show continuity | Resume from last session state | | Tester | yuva agent show tester | Create and run tests | | Reviewer | yuva agent show reviewer | Code quality analysis | | Security | yuva agent show security | Security vulnerability audit | | Debugger | yuva agent show debugger | Bug investigation and fixing | | Refactor | yuva agent show refactor | Code improvement and cleanup | | State Manager | yuva agent show statemanager | Update session files |

Multi-LLM Support

Works with 20 AI platforms. Auto-detected on yuva init:

Commercial

| Platform | Config | Auto-Detect | |----------|--------|-------------| | Claude (Claude Code, VS Code) | AGENTS.md | Yes | | GPT / Codex CLI | AGENTS.md | Yes | | Gemini | GEMINI.md | Yes | | GitHub Copilot | .github/copilot-instructions.md | Yes | | Cursor | .cursor/rules/yuva.mdc | Yes | | Windsurf | .windsurfrules | Yes | | Cody | .sourcegraph/instructions.md | Yes | | Amazon Q | .amazonq/instructions.md | Yes | | Antigravity (Google) | AGENTS.md | Yes |

Open Source / Local

| Platform | Config | Auto-Detect | |----------|--------|-------------| | Ollama (Llama, Mistral, DeepSeek, Qwen) | OLLAMA_INSTRUCTIONS.md | Yes | | LM Studio | OLLAMA_INSTRUCTIONS.md | - | | Jan.ai | OLLAMA_INSTRUCTIONS.md | - | | Continue.dev | .continue/instructions.md | Yes | | Open Interpreter | AGENTS.md | - | | LLM CLI | AGENTS.md | - | | Tabby | AGENTS.md | - |

Terminal / CLI

| Platform | Config | Auto-Detect | |----------|--------|-------------| | OpenCode | AGENTS.md | Yes | | Kilo Code | .kilo/instructions.md | Yes | | Aider | .aider.conf.yml | Yes |

# Switch platforms anytime
yuva llm use opencode
yuva llm use cursor
yuva llm use ollama

Project Structure (After yuva init)

your-project/
├── AGENTS.md                       # Orchestrator (source of truth)
├── .aiautomations/
│   ├── config.json                 # Tool config + package path
│   └── agents.md                   # Agent index
└── .cursor/rules/yuva.mdc         # (only if Cursor detected)

Agent prompts are served on demand from the installed package — no file bloat.

Session Persistence

Never lose context between terminal sessions. Sessions auto-save after every yuva command — no manual save needed.

# Day 1 — Start working
yuva session start "Build user auth with JWT"
# ... work normally, run any yuva commands ...
# Session auto-saves git state, changed files, and context after each command

# Day 2 — Come back, new terminal
yuva session resume        # Full context: goal, decisions, files changed, activity log
# AI picks up exactly where you left off

# Log important progress
yuva session log "Added login endpoint" --type code
yuva session decision "Use bcrypt" "Industry standard for password hashing"

# When done
yuva session end

Session files are stored in .session/ (auto-gitignored) and include:

  • session.json — structured state for tools
  • context.md — human/AI-readable context summary
  • log.md — timestamped activity log
  • state.md — current status overview

Custom Agents

# Create a custom agent
yuva add create my-agent

# This creates a local override in:
# .aiautomations/prompts/my-agentagent.md

# Local agents always take priority over package agents

Development

npm install
npm test
npm run test:coverage
npm run lint
npm run doctor

Works With

Commercial: Claude Code, Cursor, Windsurf, GitHub Copilot, Gemini CLI, Amazon Q, Cody, Antigravity Open Source: Ollama, LM Studio, Jan.ai, Continue.dev, Open Interpreter, LLM CLI, Tabby Terminal: OpenCode, Codex CLI, Kilo Code, Aider Models: Llama 3, Mistral, CodeLlama, DeepSeek, Qwen, Phi-3, GPT-4, Claude, Gemini

Contributing

  1. Create agent prompt in template/.aiautomations/prompts/
  2. Add to AGENT_MAP in lib/commands/agent.js
  3. Add tests
  4. Submit PR

License

MIT License - see LICENSE file for details.

Links