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

@vetala/vetala

v0.6.2

Published

Terminal-first AI coding CLI with tools, memory, and local skills.

Readme

Vetala

Vetala is a terminal-first coding assistant with an interactive TUI, local tools, approval gates, session memory, and a skill system for reusable workflows.

This is the first build and not a stable v1 release, so some bugs are expected.

Vetala terminal UI

Overview

Vetala is designed for code-focused terminal work:

  • interactive CLI built with Go and Bubble Tea
  • multi-turn sessions with persisted state
  • local file, shell, git, and web-capable tool execution
  • approval-aware operations for safer workspace access
  • local skill/ runtime for reusable instructions and references
  • prompt compaction to preserve continuity across longer sessions
  • provider-aware model selection with Sarvam and OpenRouter profiles
  • provider-first /model flow with OpenRouter model-id entry
  • diff previews for file edits and /undo for the last tracked change
  • queued or force-sent follow-up prompts while the current turn is still running
  • startup update notifier powered by update-notifier with “update now” or “update later”
  • built-in HTML search providers with DuckDuckGo by default and Stack Overflow for coding lookups

Current provider support includes Sarvam AI and OpenRouter.

Patch Notes

v0.6.2

Added:

  • Task-kind-aware agent loop: read-only tasks (explain, chat, research) skip verification nudges, shell commands, and task_completed requirements.
  • File read deduplication: read_file returns a short notice for already-read files instead of re-reading them.
  • Empty response retry: the agent retries up to 2 times on empty model responses instead of immediately stopping.
  • TUI slash command menu now supports ↑/↓ arrow navigation with Enter to submit the selected command.

Patched:

  • Reduced premature-stop nudge cap from 3 to 1 for edit tasks to prevent duplicate output.
  • Lowered MAX_READ_LINES from 2000 to 1000 for better context efficiency with smaller models.
  • read_file tool description now warns the model that triggering truncation is token-inefficient.
  • Deliberation guidance provides read-only directives for explain/chat/research tasks.

v0.6.1

Added:

  • Enhanced the core cognitive execution loop with explicit Think -> Act -> Observe -> Reflect guardrails.
  • Added a completion confidence and verification system requiring empirical proof before declaring tasks finished.
  • Migrated from hardcoded default plans to a dynamic, model-driven task planning system with granular state tracking.
  • Introduced a strict constraint to prevent "fake shell execution" and force the use of real filesystem tools over markdown code blocks.

Patched:

  • Added smart API error detection to immediately stop and alert the user on non-retryable OpenRouter guardrail, data policy, or auth errors instead of blind retrying.

v0.6.0

Added:

  • Deliberation-aware TUI turns with thinking summaries, checkbox plans, and live reasoning/phase state.
  • Deterministic active-skill routing with richer pre-turn skill guidance and clearer skill visibility in the UI.
  • Ctrl+K full-turn log copy for sharing the latest prompt, plan, tool activity, and reply context.

Patched:

  • Explicit file-path tasks now stay scoped to the named target instead of drifting into broad repo exploration.
  • Edit plans are evidence-driven, verification is file-targeted, and no-op edits are rejected instead of being reported as successful changes.
  • Tool interruption, repo search cancellation, malformed tool-call recovery, and post-tool activity updates are more reliable.

Compatibility

Vetala is currently tested on Linux.

Published npm installs bundle prebuilt TUI binaries for Linux, macOS, and Windows on x64 and arm64, but macOS and Windows should still be treated as early-support targets until they receive broader validation.

Installation

Global install

npm install -g @vetala/vetala
vetala

The published npm package bundles the TUI binary for supported targets, so end users do not need Go for a normal install.

Local development install

npm install
npm run build:tui
npm link
vetala

npm run build:tui is only needed for source checkouts and requires Go.

The package is published as @vetala/vetala and exposes a global vetala binary through package.json.

Getting Started

Run Vetala in a project directory:

vetala

Or run from source during development:

npm run dev

On startup, Vetala opens an interactive terminal UI and asks you to confirm trust for the current workspace before enabling tool access. It also detects the current host platform, shell, and terminal profile and exposes that context in the UI and agent runtime.

Configuration

Model selection and credential setup are available from inside the TUI through:

/model

The default web search provider is DuckDuckGo HTML. For programming-specific web lookups, Vetala also exposes stack_overflow_search.

Configuration and session data are stored in the user application directory for the current platform. /config also prints the host: and term: lines used in issue reports.

Core Commands

  • /help shows available commands
  • /model updates model and auth settings
  • /skill lists and manages local skills
  • /tools shows available tools
  • /history shows recent session messages
  • /resume <session-id> reopens a saved session
  • /new starts a fresh session
  • /undo reverts the last tracked file edit in the current session
  • /approve shows active approvals
  • /config prints runtime configuration
  • /logout clears locally saved auth state
  • /clear clears the visible transcript
  • /exit exits the application

Skills

Vetala loads local skills from:

skill/<name>/SKILL.md

Skills are indexed locally and exposed through the skill tool so the assistant can:

  • list available skills
  • load a skill overview
  • read referenced files inside a skill
  • pin and unpin skills across turns

This keeps the default prompt smaller while still allowing deeper workflow guidance when needed.

Development

npm run check
npm test
npm run build

Contributing

See CONTRIBUTING.md.

License

Licensed under Apache-2.0. See LICENSE.

Modified third-party material is documented in THIRD_PARTY_LICENSES.md.