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

@tt0/tado

v0.3.0

Published

Codex-only terminal Agent OS for macOS.

Downloads

76

Readme

@tt0/tado

Codex-only terminal Agent OS for macOS.

npx @tt0/tado
# or
npm install -g @tt0/tado
tado

tado opens the Agent OS TUI and starts a profile-owned tadod runtime daemon when needed. The desktop app is not required.

Requirements

  • macOS on Apple Silicon or Intel.
  • Node.js 18 or newer for the npm launcher.
  • The Codex CLI installed and authenticated in your shell.

Tado does not store Codex credentials. The runtime profile stores only non-secret provider preferences such as model, reasoning effort, permission mode, alternate-screen behavior, and the account label default, which uses your existing Codex CLI auth.

Commands

The npm package installs these binaries:

  • tado - public TUI entrypoint.
  • tadod - profile daemon.
  • tado-list, tado-read, tado-send, tado-events - runtime A2A helpers.
  • tado-deploy - spawn a new runtime session.
  • tado-bootstrap, tado-kanban, tado-eternal, tado-dispatch.
  • tado-mcp - Rust MCP bridge.
  • tado-projects, tado-system.

codex is the only public AI provider. shell and raw remain utility session kinds for terminal work. Legacy claude and cowork requests are rejected with clear errors.

TUI Controls

  • Tab / Shift-Tab: move between Agent OS pages.
  • Shift+1-Shift+7: jump to Work, Board, Mux, Events, Use, Projects, Settings.
  • /: open command autocomplete.
  • /codex <prompt>: spawn a Codex session.
  • /spawn <command>: spawn a shell PTY utility session.
  • Plain text + Enter on Projects: spawn the default Codex agent in that project.
  • Shift+X: kill and delete the selected runtime session.
  • Settings uses arrows and Space instead of raw JSON.

Agent definitions are read from .codex/agents/.

Package Notes

This package ships prebuilt Rust binaries for darwin-arm64 and darwin-x64. The Rust crates are internal to this release and are not published to crates.io.

To verify a generated tarball:

cd npm/tado
npm pack --dry-run --json
npm pack
prefix="$(mktemp -d)"
npm install --prefix "$prefix" ./tt0-tado-0.3.0.tgz
"$prefix/bin/tado" --help
"$prefix/bin/tadod" --help

Publishing should use a temporary npm config or environment token only. Do not commit tokens:

tmp_config="$(mktemp)"
printf '//registry.npmjs.org/:_authToken=%s\n' "$NPM_TOKEN" > "$tmp_config"
NPM_CONFIG_USERCONFIG="$tmp_config" npm publish --access public
rm -f "$tmp_config"