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

avodado

v0.42.2

Published

Documentation-as-code CLI: write Markdown with typed YAML blocks for API docs, architecture & system design (C4, ERDs, sequence diagrams), frontend & design systems, ADRs and decision records, planning, and slide presentations. Validate like code with `av

Downloads

5,466

Readme

avodado

Documentation-as-code. Write docs as plain Markdown with typed, fenced YAML blocks — diagrams, tables, API references, decision records — and avo validates them like code, renders them to HTML, slides, PDF, or PowerPoint, and lets you edit them in a visual studio. The .md files on disk stay the single source of truth.

avo is the command-line tool. It shows a friendly interactive UI in your terminal, and plain text output in CI.

Install

pnpm add -D avodado      # or: npm i -D avodado  ·  yarn add -D avodado

The command is available as both avo (short) and avodado. Try it with no install: npx avodado demo.

Previously published as @avodado/cli — now avodado. Same tool; update your dependency.

Quick example

A doc is normal Markdown, plus fenced blocks for anything structured. Put this in docs/orders.md:

## Checkout flow

```sequence
title: Place an order
actors:
  - { id: user, name: Shopper }
  - { id: api, name: Orders API }
messages:
  - user -> api: POST /orders
  - api --> user: 201 Created
```

Then run:

avo check docs/orders.md      # validates every block against its schema
avo html  docs/orders.md -p   # renders a styled HTML page and opens it
avo slides docs/orders.md -p  # …or a slide deck   ·   avo pdf docs/orders.md  → a PDF
avo pptx  docs/orders.md      # …or a real PowerPoint deck (add --editable for native text)
avo studio                    # edit visually — forms + live preview

avo check prints the exact file, line, and a fix when something's wrong (a bad field, a broken link, a duplicate id), and exits non-zero — so it drops straight into CI.

Get started on a real project

avo demo        # see it instantly — renders a showcase of every block and opens it
avo init        # scaffold docs/, config, and set up your AI tools (interactive)
avo tour        # a short, guided, hands-on walkthrough

Let your AI write the docs

After avo init, the AI tools in your repo already know the block grammar, so you can just ask them to "document the checkout flow as a sequence diagram."

avo install claude    # or: cursor · copilot · windsurf  (installs the authoring skill + adapter)
avo skill             # print the grammar as a system prompt (paste into ChatGPT / any AI)
avo mcp               # setup for Model Context Protocol clients (@avodado/mcp)

Common commands

avo check [globs]                 # validate docs (default: docs/**/*.md; --json for machine output)
avo html | slides | pdf <file>    # render one doc (-p opens it, -o writes to a path)
avo build                         # build a static HTML site from all docs → dist/
avo studio                        # local visual editor: edit, browse the site, present as slides
avo new <template|block>          # scaffold a doc (adr, runbook…) or a single block (sequence, erd…)
avo theme                         # pick a theme (textbook · minimal · soft · dark · teal · slate)
avo sync openapi <spec>           # generate an API doc from an OpenAPI spec
avo sync csv <file>               # turn a CSV into a table / chart block

Run avo --help (or avo <command> --help) for everything.

Exit codes (for CI)

| Code | Meaning | | --- | --- | | 0 | Clean (or warnings only) | | 1 | One or more errors — avo check failed | | 2 | Usage error (e.g. a missing flag) |

Set AVO_PLAIN=1 to force plain text output even in a terminal.

Configuration

Optional avodado.config.{json,ts,js,mjs,yml,yaml} in your project root. Defaults:

{ "docsDir": "docs", "outDir": "dist" }

Learn more

Full docs and the block reference: avodado.dev.