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

echoai

v2.3.3

Published

Echo - Intelligent AI terminal with autonomous agents, 6 providers (Claude, GPT, Groq, OpenRouter, Meta, Gemini), and advanced output optimization

Readme

Echo AI

Echo AI is a local-first AI coding assistant with a CLI runtime, session persistence, tool orchestration, layered permissions, background task execution, and a VS Code extension.

NPM Version License: MIT TypeScript

What It Does

Echo AI combines a terminal-first developer workflow with an AI-native runtime:

  • Fast CLI startup with lazy initialization and memoized config/provider loading
  • Streamed model output and structured tool-call execution
  • Parallel read-only tool batches and serialized mutating tool execution
  • Layered permission rules with automated safe-path approvals
  • Persistent sessions, event logs, approvals, artifacts, and session memory
  • Background shell tasks with logs, status tracking, and stop controls
  • Subagent session forking with optional isolated worktrees
  • MCP tool/server integration
  • VS Code extension for editor-triggered Echo AI workflows

Architecture Highlights

Runtime Kernel

The runtime is built around a streamed event loop:

  • assistant deltas and tool calls flow through a unified event stream
  • tools execute through a permission-aware orchestration layer
  • sessions are persisted as structured runtime state instead of transient chat text

Security Model

Echo AI treats permissions as a runtime concern, not a UI afterthought:

  • layered rules: policy -> flag -> local -> project -> user
  • safe-path approvals for known low-risk reads and writes
  • permission resolver orchestration for automated and interactive decisions
  • workspace-bound built-in file tools
  • background task logs and metadata guarded through managed runtime paths

Terminal Experience

The CLI renders structured runtime events instead of dumping raw text output. The TUI package also includes a vendored terminal rendering stack for richer terminal interfaces.

Installation

The commands below assume the CLI package is published as echoai.

If you publish under a scope such as @loopxo/echoai, replace echoai in the commands below with your scoped package name.

npm install -g echoai

Run it:

echoai

Local development install:

git clone https://github.com/Loopxo/echoai.git
cd echoai
pnpm install
pnpm run build

Quick Start

Interactive mode:

echoai

Direct prompt:

echoai "Explain how this repository is structured"

Run with explicit provider/model:

echoai "Refactor this TypeScript utility" --provider claude --model claude-3-5-sonnet

Session workflows:

echoai sessions list
echoai sessions show <session-id> --messages
echoai sessions export <session-id> --format markdown

Background tasks:

echoai tasks start "pnpm test"
echoai tasks ps
echoai tasks logs <session-id> <task-id> --follow
echoai tasks kill <session-id> <task-id>

Security and permissions:

echoai security status
echoai security audit
echoai security permissions

VS Code Extension

The VS Code extension lives in packages/extensions/vscode.

Package a Marketplace upload file:

cd packages/extensions/vscode
npm run package

That produces a .vsix file you can upload in the Visual Studio Marketplace publisher dashboard.

The extension currently shells out to the latest published Echo AI CLI, so keep the CLI release and extension release aligned.

MCP Support

Echo AI supports MCP-compatible tools and servers.

Common commands:

echoai mcp list
echoai mcp add --id my-tool --name "My Tool" --transport stdio --command "/path/to/server"
echoai mcp tools
echoai mcp call calculator expression="2+2*3"

Treat MCP configuration as trusted configuration. A malicious stdio command or remote MCP endpoint can execute code or expose data.

Development

Install dependencies:

pnpm install

Build everything:

pnpm run build

Run tests:

pnpm exec vitest run --passWithNoTests

Validate release readiness:

pnpm run validate

Run the CLI locally:

pnpm run dev

Release

CLI / npm

Update the root package version in package.json, then:

pnpm run validate
npm publish

If the package is scoped, publish with public access:

npm publish --access public

VS Code Extension

Update the extension version in packages/extensions/vscode/package.json, then:

cd packages/extensions/vscode
npm run package

Upload the generated .vsix in the Visual Studio Marketplace publisher portal, or publish with vsce publish if your publisher auth is configured locally.

Repository

Contributing

Issues and pull requests are welcome. Keep changes focused, testable, and aligned with the runtime-first architecture of the project.