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

@assemblyline-agents/orgo

v6.1.0

Published

Official Assembly Line Orgo cloud computer-use connection plugin.

Readme

@assemblyline-agents/orgo

Official Assembly Line connection plugin for isolated Orgo cloud desktops. It wraps Orgo's documented REST API in a reviewed SDK connection so the agent receives screenshots as image content and never receives the API's VNC password fields. The bridge follows the screenshot resource URL returned by Orgo, downloads the bounded image with host-only API authorization, and preserves its actual media type instead of treating the URL as encoded image bytes.

Setup

Create an Orgo API key, store it through the selected secret provider, then add the plugin:

assembly-line add orgo agent

The selected plugin enables all reviewed Orgo tools. Gate high-impact actions explicitly:

capabilities:
  orgo:
    connections:
      orgo:
        approval:
          delete_computer: always
          execute_bash: always
          execute_python: always

Use disable under the same connection to hide an operation. Orgo computers are persistent cloud resources and may continue billing until stopped or deleted. Use dedicated workspaces, configure auto-stop where appropriate, and review the authority granted to unattended workloads.

Set ORGO_API_BASE_URL only for a developer-controlled Orgo-compatible endpoint. It is non-secret connection configuration. ORGO_API_KEY is a connection credential resolved just in time and delivered only to the trusted Orgo connection or credential sink.

orgo__capture_file exports one exact desktop path into a private, run-scoped asset descriptor. The bytes stay host-side and may be consumed by another trusted connection in the same run; the model receives only the opaque asset ID, filename, media type, size, and digest.

For a login value stored in 1Password, focus the target field and call the connection tool with identifiers and intent only:

{
  "source_connection": "onepassword",
  "reference": "op://Charlie/PeerComps/password",
  "target": { "computer_id": "charlie-browser" },
  "purpose": "Sign in to PeerComps"
}

orgo__credential_fill resolves and types the value entirely host-side and returns only { "status": "filled" }. Continue with ordinary screenshot, click, and keyboard tools after authentication.