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

@yagr/agent

v0.2.34

Published

Autonomous local coding agent

Readme

Yagr is a local-first autonomous coding-agent runtime built on DeepAgents.js.

It gives coding agents a real operating environment: local files, shell execution, provider freedom, sessions, checkpoints, runtime events, and multiple control surfaces.

The goal is simple:

Let the agent work autonomously. Never let its work disappear into chat history.

Why Yagr

Most coding agents expose a conversation.

Yagr is built around the stronger idea that autonomous work needs a runtime you can inspect, control, and trust.

  • Grounded in your repo: the agent works against real files, commands, project instructions, and local context.
  • Grounded in execution: shell and file operations are first-class runtime behavior, not a simulated chat trick.
  • Grounded in sessions: work is scoped, resumable, and checkpointable.
  • Grounded in interfaces: use the same runtime from CLI, TUI, Web UI, or Telegram.
  • Grounded in standards: Yagr builds on LangChain and DeepAgents.js instead of hiding everything behind a custom black box.

Positioning

Open-ended does not have to mean opaque.

Yagr is not trying to be a hardcoded workflow runner. It is not bound to a specific orchestrator, Telegram, a specific model provider, or a single interface.

Yagr is the control plane around the agent:

  • the agent stays capable and general
  • providers stay swappable
  • skills stay external and composable
  • facades stay thin
  • runtime behavior stays observable

The target direction is an Impact Ledger: a user-friendly dashboard of meaningful agent effects such as changed files, created scripts, dependency changes, long-running processes, automations, checkpoints, and durable artifacts.

Chat is one view. Impact is the record that matters.

See architecture/target/observability-impact-ledger.md for the target plan.

What Exists Today

  • local coding-agent behavior
  • provider/model configuration
  • account-backed provider proxies
  • session and checkpoint management
  • runtime event streaming
  • CLI/TUI/Web UI/Telegram surfaces

Package Status

@yagr/agent is the assembled app and CLI distribution. It is not the recommended dependency for embedded runtime integrations because it intentionally carries product surfaces and setup/runtime conveniences.

For integrations, compose the granular public packages directly:

  • @yagr/deepagent-bootstrap for agent construction
  • @yagr/provider-runtime for provider/model runtime
  • @yagr/session-service for sessions and checkpoints
  • @yagr/stream-adapter and @yagr/runtime-events for stream and tool activity normalization

This keeps downstream products in control of dependency closure, which matters for packaged environments such as VS Code extensions.

What It Does Not Own

Yagr does not include a built-in domain backend.

If a project uses external tools or orchestrators, the agent can work with them through ordinary local files, shell commands, installed skills, or future plugins. Those integrations are not hardcoded into Yagr core.

That is the point: Yagr should be opinionated about runtime clarity, not about what your agent is allowed to build.

Basic Usage

pnpm install
pnpm run build
node dist/cli.js "inspect this repository and summarize it"

Start the local Web UI:

node dist/cli.js webui

Configure model/runtime settings:

node dist/cli.js setup
node dist/cli.js llm setup

Architecture

See architecture/current/ for the current module map and runtime flows.

See architecture/target/ for target plans that are not yet implemented.