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

@klarocards/cli

v1.4.1

Published

Command-line interface for Klaro Cards

Readme

Klaro CLI

Command-line interface for Klaro Cards.

Installation

npm install -g @klarocards/cli

Requires Node.js 18.0.0 or higher.

Getting Started

Login with your Klaro Cards credentials:

klaro login [--env]

Select the project you want to work with:

klaro ls projects          # see available projects
klaro use my-project       # set the active project

Explore the project structure:

klaro ls boards            # list boards in the project
klaro ls dimensions        # list available dimensions
klaro describe board backlog       # see a board's filters and objective
klaro describe dimension status    # see a dimension's values

Start working with cards:

klaro ls                          # list cards (default board)
klaro ls -b backlog               # list cards from a specific board
klaro ls --dims status,assignee   # show specific dimensions
klaro read 42                     # read a card's full content
klaro create "My new card"        # create a card
klaro update 42 status=done       # update a card's dimension
klaro update 42 see_also=1 see_also=2  # set a link dimension
klaro edit 42                     # edit a card in your $EDITOR
klaro write 42 -f card.md         # update a card from a file
klaro describe dimension status   # see a dimension's values

Manage attachments:

klaro attach 42 photo.jpg         # attach a file to a card
klaro ls attachments 42           # list attachments on a card
klaro detach 42 <uuid>            # remove an attachment
klaro detach 42 <uuid> --keep-file  # remove attachment, keep file

Configure defaults and target a different Klaro instance:

klaro config set board backlog                       # set default board
klaro config set api_url http://api.klaro.devel      # use a different instance
klaro config unset api_url                           # reset to https://api.klaro.cards
klaro config list                                    # view current configuration

Run klaro cheatsheet for more examples, or klaro <command> --help for detailed usage.

Usage

Usage: klaro [options] [command]

Command-line interface for Klaro Cards

Options:
  -V, --version                               output the version number
  --trace                                     Enable API request/response tracing
  -p, --project <subdomain>                   Project subdomain
  --dims <dimensions>                         Dimensions to include (comma-separated)
  --board <board>                             Board identifier
  --save-defaults                             Save --dims and --board as project defaults
  -h, --help                                  display help for command

Setup:
  init [folder]                               Initialize Klaro configuration
  login [options]                             Login to Klaro Cards
  logout                                      Logout from Klaro Cards
  whoami                                      Show the currently logged in user
  use <subdomain>                             Set the default Klaro project
  config                                      Manage project configuration and defaults

Cards (and other objects):
  ls                                          List cards, projects, boards, or dimensions
  read [options] <identifiers...>             Read one or more cards and display as markdown
  write [options] <identifier>                Update a card from markdown content (stdin or file)
  create [options] [args...]                  Create a new card in a board
  edit [options] <identifiers...>             Edit one or more cards in your default editor
  update [options] <args...>                  Update one or more cards by identifier
  del [options] <identifiers...>              Delete one or more cards by identifier
  attach [options] <identifier> <files...>    Attach files to a card
  detach [options] <identifier> <attachment>  Remove an attachment from a card
  describe                                    Show detailed information about a dimension or board

Offline:
  fetch [options] <identifiers...>            Download cards as markdown files for offline editing
  sync [options]                              Upload local card changes and delete synced files

Help:
  cheatsheet [options]                        Display a quick reference guide
  help [command]                              display help for command

Run klaro cheatsheet for common usage examples.

Development

npm install     # Install dependencies
npm run build   # Build
npm test        # Run tests

Running from source

Build and run directly:

npm run build
node dist/index.js

Or use watch mode for development (auto-recompiles on changes):

npm run dev

Then in another terminal:

node dist/index.js

To make the klaro command available globally from your local checkout:

npm link
klaro

License

MIT