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

openpond-code

v0.1.4

Published

OpenPond CLI (API key only)

Readme

openpond-code

API-key CLI + local TUI client for OpenPond.

API key CLI (openpond/op)

Install:

npm i -g openpond-code
# or
npx --package openpond-code openpond tool list handle/repo
# or (curl installer)
curl -fsSL https://openpond.ai/install.sh | bash

Login (stores key in ~/.openpond/config.json):

openpond login
# or (non-interactive)
openpond login --api-key opk_...

Commands:

openpond tool list <handle>/<repo>
openpond tool run <handle>/<repo> <tool> --body '{"foo":"bar"}'
openpond deploy watch <handle>/<repo> --branch main
openpond template status <handle>/<repo>
openpond template branches <handle>/<repo>
openpond template update <handle>/<repo> --env production
openpond repo create --name my-repo --path .
openpond repo push --path . --branch main
openpond apps list [--handle <handle>] [--refresh]
openpond apps tools
openpond apps deploy <handle>/<repo> --env production --watch
openpond apps env get <handle>/<repo>
openpond apps env set <handle>/<repo> --env '{"OPENTOOL_PUBLIC_HL_SIGNAL_BOT_CONFIG":"..."}'
openpond apps performance [--app-id <id>]
openpond apps agent create --prompt "Build a daily digest agent"
openpond apps tools execute <appId> <deploymentId> <tool> --body '{"foo":"bar"}'
openpond apps positions tx --method GET --params '{"status":"open"}'
openpond opentool init --dir .

Command reference:

  • openpond login: prompt for API key and save to ~/.openpond/config.json.
  • openpond login --api-key <key>: save the API key without prompting.
  • openpond tool list <handle>/<repo>: list tools for the latest deployment.
  • openpond tool run <handle>/<repo> <tool> [--body <json>] [--method <METHOD>]: run a tool on the latest deployment.
  • openpond deploy watch <handle>/<repo> [--branch <branch>]: stream deployment logs for the latest deployment.
  • openpond template status <handle>/<repo>: check whether a template update is available.
  • openpond template branches <handle>/<repo>: list available template branches.
  • openpond template update <handle>/<repo> [--env preview|production]: deploy the latest template commit.
  • openpond repo create --name <name> [--path <dir>] [--empty|--opentool] [--deploy-on-push]: create an internal repo and attach the git remote.
  • openpond repo push [--path <dir>] [--branch <branch>]: push the current git branch using a tokenized remote (non-interactive, restores origin after push).
  • openpond apps list [--handle <handle>] [--refresh]: list apps for your account, optionally filtered by handle.
  • openpond apps tools: list tools for your account (public API).
  • openpond apps deploy <handle>/<repo> [--env preview|production] [--watch]: trigger a deployment for an app.
  • openpond apps env get <handle>/<repo>: get OPENTOOL_PUBLIC_* env vars for an app.
  • openpond apps env set <handle>/<repo> --env <json>: set OPENTOOL_PUBLIC_* env vars for an app.
  • openpond apps performance [--app-id <id>]: fetch performance summary, optionally scoped to an app.
  • openpond apps agent create --prompt <text> [--template-id <id>]: create an agent from a prompt (streams deploy logs by default).
  • openpond apps tools execute <appId> <deploymentId> <tool> [--body <json>] [--method <METHOD>] [--headers <json>]: execute a tool for a specific deployment.
  • openpond apps positions tx [--method <GET|POST>] [--body <json>] [--params <json>]: read or submit positions.
  • openpond opentool <init|validate|build> [args]: run OpenTool CLI commands via npx opentool.

TypeScript package

Programmatic API that mirrors the CLI command surface:

import { createClient } from "openpond-code";

const client = createClient({ apiKey: process.env.OPENPOND_API_KEY! });

const { tools } = await client.tool.list("handle/repo");
const result = await client.tool.run("handle/repo", "myTool", {
  body: { foo: "bar" },
});

const apps = await client.apps.list();
const accountTools = await client.apps.tools();
const performance = await client.apps.performance({ appId: "app_123" });
const repo = await client.repo.create({ name: "my-repo", repoInit: "empty" });

await client.apps.agentCreate(
  { prompt: "Build a daily digest agent" },
  {
    onItems: (items) => {
      for (const item of items) {
        console.log(item);
      }
    },
  }
);

You can override hosts with baseUrl, apiUrl, and toolUrl in createClient, or via OPENPOND_BASE_URL, OPENPOND_API_URL, and OPENPOND_TOOL_URL.

Examples live in examples.

Local TUI

Minimal terminal client for OpenPond chat + history. This is a standalone folder intended to be extracted into its own repo later.

Run

bun install
bun run dev

Cache:

  • ~/.openpond/cache.json caches app/tool lists for 1 hour and refreshes automatically on next use.