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

@tetsuo-ai/agenc

v0.1.0

Published

Public CLI and launcher for the AgenC framework

Readme

agenc

Public CLI and launcher for the AgenC framework.

This package owns the user-facing global install surface:

npm install -g @tetsuo-ai/agenc
agenc onboard
agenc start
agenc
agenc ui

It does not expose the runtime source tree directly. Instead, it installs and launches the matching AgenC runtime artifact for the current supported platform.

The supported npm install identity is @tetsuo-ai/agenc. The unscoped agenc package name is not part of the supported public release contract.

Current public support is intentionally narrow:

  • Linux x64
  • Node >=18.0.0

Current validated release-gate lanes:

  • Node 18 minimum floor
  • Node 20 mainline lane

Production release channel:

  • npm package: @tetsuo-ai/agenc
  • runtime artifact host: GitHub Releases on tetsuo-ai/agenc-core
  • trust: embedded signed manifest + embedded public key + embedded trust policy

After the matching runtime artifact is installed, agenc can continue to run offline against the local install. The npm package name is scoped, but the CLI binary remains agenc.

agenc exposes two primary local operator surfaces against the same daemon:

  • agenc attaches the terminal operator console
  • agenc ui opens or prints the local dashboard URL on /ui/

For automation or remote shells, use:

agenc ui --no-open

First-party connector lifecycle

The first V1 connector is Telegram. It is managed through the same daemon as the CLI and dashboard; there is no separate connector service to start.

agenc connector list
agenc connector status telegram
agenc connector add telegram --bot-token-env TELEGRAM_BOT_TOKEN
agenc connector remove telegram

For non-interactive shells or secret managers, you can pipe the bot token on stdin instead:

printf '%s' "$TELEGRAM_BOT_TOKEN" | agenc connector add telegram --bot-token-stdin

Connector health and pending-restart state are exposed through both:

  • agenc connector status telegram
  • agenc ui on the dashboard status view

Wrapper-local runtime management

agenc runtime where
agenc runtime install
agenc runtime update
agenc runtime uninstall

Development

The embedded runtime manifest in generated/ is produced by the agenc-core artifact preparation scripts. Local smoke tests use the same packaged manifest flow as publish/release preparation.