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

tail-me-everything

v0.1.1

Published

opencode plugin: tee full pipeline output to /tmp/opencode/tee.log before the first grep/tail/head filter

Downloads

310

Readme

tail-me-everything

An opencode plugin that streams the full output of every bash pipeline into a log file you can watch live.

When an agent runs a long command, it usually pipes the output through grep / tail / head to keep its token bill small. To you watching the terminal, nothing shows up until the command finishes — and then only the filtered last lines. This plugin rewrites those commands so the complete output lands in /tmp/opencode/tee.log while the agent keeps seeing only what it asked for.

npm run build | tail -n 20          # what the agent intended
npm run build | tee -a /tmp/opencode/tee.log | tail -n 20   # what actually runs

Watch the agent work

In a second terminal:

tail -f /tmp/opencode/tee.log

You see every line of every long command as it is produced, before the grep / tail / head step discards it.

Install

Add to your opencode config (~/.config/opencode/opencode.json globally, or a project-level opencode.json):

{
  "plugin": ["tail-me-everything"]
}

Requires Linux or macOS (the log path is a Unix path). Restart opencode after editing the config.

How it works

  • Hooks the bash tool before execution and rewrites the command.
  • Inserts | tee -a /tmp/opencode/tee.log at the first pipe to grep, tail, or head — even when a non-filter pipe comes first (ls | sort | head -n 3).
  • Ignores pipes inside single or double quotes (echo "a | grep b" | tail is rewritten only at the real pipe).
  • Never inserts a second tee into an already-rewritten command.
  • Command without a grep/tail/head pipe is left untouched.

Enable / disable

The agent can toggle the plugin itself with the tail_me_toggle tool (enabled: false / enabled: true). The state is persisted in a flag file and survives restarts.

You can also toggle it manually:

touch /tmp/opencode/tail-me-everything.off   # disable
rm    /tmp/opencode/tail-me-everything.off   # enable

Limitations

  • tee captures stdout only. Pass 2>&1 first if you also want stderr in the log (make 2>&1 | tail -n 30).
  • The log grows indefinitely — trim it yourself (: > /tmp/opencode/tee.log to truncate).
  • Only piped commands are affected; a bare head file.txt is left alone.

License

MIT