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

@vendian/cli

v0.0.43

Published

Public Vendian CLI bootstrapper and launcher

Readme

Vendian CLI

Command-line tools for signing in to Vendian and running local agent workflows.

npm install -g @vendian/cli
vendian
vendian login
vendian init --output-dir ./agents
vendian create "My Agent" --output-dir ./agents
vendian cloud local run --collection-id YOUR_COLLECTION --path ./agents/my-agent --input-json '{}'
vendian cloud local serve --agents-dir ./agents

Commands

vendian
vendian login
vendian doctor
vendian update
vendian init --output-dir ./agents
vendian create "My Agent" --output-dir ./agents
vendian validate ./agents/my-agent --runtime
vendian test ./agents/my-agent --dry-run --mock-credentials
vendian models
vendian cloud local run --collection-id YOUR_COLLECTION --path ./agents/my-agent --input-json '{}'
vendian cloud local serve --agents-dir ./agents

Run vendian with no arguments to open the interactive menu. It shows your current endpoint connections and guides common local workflows, including running one local agent immediately or starting the long-lived local daemon.

vendian login opens a browser sign-in, prepares the local runtime, and stores the credentials needed by the CLI for the selected endpoint. vendian setup is kept as an alias for existing users.

vendian doctor checks the local installation. vendian update refreshes the managed runtime without changing your agents.

After login, regular vendian cloud ... commands are forwarded to the managed runtime installed by the CLI.

Agent authoring commands are also forwarded to the managed Python SDK CLI. vendian init writes the current SDK-owned authoring docs into .vendian-docs/, and vendian create scaffolds agents from the SDK templates. Updating the managed runtime refreshes these docs and templates with the Python SDK. The CLI remembers workspaces initialized with vendian init and refreshes their .vendian-docs/ automatically after vendian update or a managed auto-update.

Local Data

Vendian stores its managed runtime and CLI state under your user profile:

  • Windows: %LOCALAPPDATA%\Vendian\cli
  • macOS/Linux: ~/.vendian/cli

To use a different location:

VENDIAN_CLI_HOME=/path/to/vendian-cli vendian login

Agent Dependencies

Keep agent-specific packages in each agent's requirements.txt. The Vendian CLI manages the Vendian runtime separately so agent dependencies stay focused on the agent's own code.

License

Proprietary. All rights reserved. See LICENSE.