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

braaand

v0.3.0

Published

CLI for Braaand — brand infrastructure for agentic automation

Readme

braaand

CLI for Braaand — brand infrastructure for agentic automation.

Manage brands, assets, templates, projects, ad sets, and renders from the terminal. AI agents use the same tool via Claude Code skills.

Install

npm install -g braaand

Auth

braaand auth login     # Device auth flow (opens browser)
braaand whoami         # Who you're authed as + brand counts
braaand auth logout    # Remove stored credentials

Commands

Brands

braaand brands list
braaand brands get <id>
braaand brands config <id>                             # colors, fonts, voice, tokens
braaand brands info <id>                               # Full dump with asset URLs
braaand brands knowledge <id> [sectionId]
braaand brands portal <id>                             # Open brand portal in browser
braaand brands create <name> [--description <d>]
braaand brands update <id> [--name <n>] [--description <d>]
braaand brands delete <id> --yes --confirm-brand-id <id>

Assets

braaand assets list <brandId>
braaand assets get <brandId> <assetId> [--meta] [--output <path>]
braaand assets upload <brandId> <file> [--name <n>] [--type logo|image|font|icon|symbol|document]
braaand assets delete <brandId> <assetId>

Templates

braaand templates list <brandId>
braaand templates get <brandId> <templateId>
braaand templates discover <brandId>                   # Agent-facing catalog
braaand templates create <brandId> <name> [--from <file.json>]
braaand templates delete <brandId> <templateId> [--force]

System templates

braaand system-templates list
braaand system-templates instantiate <id> --brand <brandId>

Projects & ad sets

braaand projects list <brandId>
braaand projects create <brandId> <name> [--description <d>]
braaand projects update <brandId> <projectId> [--name <n>]
braaand projects delete <brandId> <projectId>

braaand adsets list <brandId> <projectId>
braaand adsets create <brandId> <projectId> <name> --ads @ads.json
braaand adsets update <brandId> <projectId> <adSetId> --ads @ads.json
braaand adsets delete <brandId> <projectId> <adSetId>

Rendering

# Single format
braaand render <brandId> <templateId> --format 1x1 --output hero.png

# Multiple formats (comma-separated)
braaand render <brandId> <templateId> --format 1x1,9x16,4x5 --output hero
# → writes hero-1x1.png, hero-9x16.png, hero-4x5.png

# All formats the template supports
braaand render <brandId> <templateId> --all-formats --output hero

# Batch render a saved ad set
braaand render batch <brandId> <projectId> <adSetId> --output-dir ./renders

Onboarding & sync

braaand onboard <file.json>                            # Create brand + config + assets
braaand sync [brandId] [--dir <path>]                  # Sync brand assets locally

Config

braaand config show                                    # Current API URL + auth state
braaand config set-url <url>                           # Default: https://www.braaand.ai

Output

All commands output JSON to stdout. Pipe to jq for filtering:

braaand brands list | jq '.[].name'
braaand assets list my-brand | jq '.[] | select(.type == "font") | .name'

More

See braaand.ai for full documentation.