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

@fix-fix/opencode-plugin-nono

v0.1.3

Published

OpenCode plugin integrating nono sandbox context and guidance

Readme

opencode-plugin-nono

OpenCode plugin that integrates nono sandbox context and guidance into your AI agent sessions. This is the OpenCode equivalent of the built-in Claude Code hook that nono provides for Claude.

What it does

With this plugin, when you run OpenCode inside the nono sandbox:

  1. Knows your sandbox limits - The agent sees which paths are allowed and whether network access is blocked
  2. Gets clear guidance on denials - When a tool fails due to sandbox restrictions, the agent is told immediately that it's a hard boundary and how to fix it (restart with --allow)
  3. Stops wasting time on workarounds - No more trying alternative paths, copying files, or suggesting manual steps. The agent tells you to restart nono with the needed permissions

Quick Start

Add to your opencode.json:

{
  "plugins": ["@fix-fix/opencode-plugin-nono@latest"]
}

Run OpenCode inside nono:

nono run --profile -- opencode

Then on encountering an access error the agent won't try to work around it and instead will suggest a solution:

nono run --profile -- opencode 'Show the content of ~/.env file'

✗ read failed
Error: EACCES: permission denied, open '/home/username/.env'

The `~/.env` file is not accessible in the current nono sandbox session due to permission restrictions. The sandbox only allows access to specific directories in your home folder, and `~/.env` is not among them.

**To access this file, you would need to exit and restart the session with:**
nono run --allow ~/.env -- opencode

Requirements

The plugin detects automatically when running under nono (via $NONO_CAP_FILE). If not running under nono, it does nothing.

Supported tools

Denial detection works for: bash, read, write, edit, patch, glob, grep, list.

License

MIT