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

cobridge-cli-skill

v2026.5.250658

Published

Agent Skill installer for operating CoBridge through the CLI command contract.

Downloads

1,542

Readme

CoBridge CLI Skill

Current Skill version: 2026-05-22T08:45:00Z

Install the real CoBridge CLI first:

npm install -g cobridge-cli

No endpoint variables are required for the default production service. https://cobridge.ai is already the built-in CoBridge production Agent API endpoint.

Install the CoBridge CLI Skill:

npx cobridge-cli-skill@latest install

By default, install/update uses auto mode. It will 自动更新当前 Agent 已安装位置. Fresh installs prefer the shared Agent skills directory (~/.agents/skills), while updates reuse the current cobridge-cli installation when one already exists. This avoids creating a second copy under ~/.codex/skills when your active Skill lives under ~/.agents/skills.

Install or update a specific Agent skills directory:

npx cobridge-cli-skill@latest install --dir ~/.agents/skills
npx cobridge-cli-skill@latest update --dir ~/.agents/skills

Update an already installed CoBridge CLI Skill:

npx cobridge-cli-skill@latest update
npx cobridge-cli-skill@latest update --target codex

After installation, use the browser authorization flow:

cobridge auth login --no-browser --json

Open the returned authorization URL, confirm the workspace, then run cobridge auth status --json until it reports authenticated: true. Use COBRIDGE_TOKEN or cobridge auth login --token <token> --json only for CI, containers, or explicit advanced-user setup.

For a specific workspace, copy the workspace-scoped command from CoBridge account settings or run:

cobridge auth login --profile <name> --workspace <workspace-id> --no-browser --json
cobridge auth status --profile <name> --json
cobridge auth login --workspace <workspace-id> --no-browser --json
cobridge auth login --workspace-name <workspace-name> --no-browser --json

Pending authorization state exposes workspace_id through cobridge auth status --json, cobridge auth status --profile <name> --json, and cobridge auth token source --json when a workspace was requested or resolved. When only the workspace name is known, use --workspace-name; the CLI will use an existing CLI token to resolve that name into a workspace-scoped authorization URL when possible. Do not read browser session storage, browser cookies, Supabase browser tokens, or Chrome profile databases to discover workspace ids. If you need to show candidates first, run cobridge workspace list --json to list workspace names and ids.

Before using CoBridge commands from an agent, run:

cobridge version check --skill-version 2026-05-22T08:45:00Z --json

The CLI and Skill versions are timestamp-based and can move independently. A CLI implementation update does not require a Skill update unless the command surface, command semantics, or agent operating rules changed.