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

actdocs

v1.1.2

Published

Generate GitHub Action documentation from action.yml

Readme

ActDocs

Automatic documentation generator for GitHub Actions.

ActDocs reads your action.yml file and produces clean, accurate documentation for inputs and outputs that can be injected directly into your README.md.

ActDocs keeps your Action documentation synchronized automatically and reduces the need for manual updates.

Features

  • Optional .actdocs.json configuration for enhanced control
  • Command line configuration overrides
  • Markdown compatible descriptions
  • Multiple rendering formats
  • Runtime validation powered by Zod
  • JSON Schema support for editor autocomplete
  • Designed for CI and automation workflows

Installation

pnpm add -D actdocs
# or
npm install -D actdocs

You can also run it without installing:

npx -y actdocs

Usage

Basic

Generate documentation using the default settings:

actdocs

This command will:

  1. Load the default configuration values
  2. Load .actdocs.json if it exists
  3. Apply command line overrides if provided
  4. Read the action.yml file
  5. Merge metadata with custom configuration
  6. Inject the generated documentation into your README

Examples

Render output in table format:

actdocs --format=table

Use a different README file:

actdocs --readmepath=DOCS.md

Change the heading level of generated sections:

actdocs --headingLevel=2

Customize the placeholder marker:

actdocs --readmePlaceholder=docs

CLI Configuration

ActDocs allows configuration to be overridden directly through the command line.

Configuration precedence follows this order:

Default values
   ↓
.actdocs.json
   ↓
Command line arguments

Command line options always override values defined in the configuration file.

Initialize Configuration

Create a starter configuration file:

actdocs init

This command generates a .actdocs.json file with sensible defaults.

Configuration File (.actdocs.json)

ActDocs can be configured using a .actdocs.json file located in the repository root.

Example:

{
  "$schema": "./actdocs.schema.json",
  "actionpath": "action.yml",
  "readmepath": "README.md",
  "format": "section"
}

Rendering Modes

Section Mode (Default)

Section mode renders structured documentation blocks that include:

  • Clear section titles
  • Detailed descriptions
  • Required and default value indicators
  • Deprecation warnings when applicable

Table Mode

Table mode renders a structured table that includes:

  • Name
  • Description
  • Required status
  • Default value

Deprecated inputs can be displayed separately when applicable.

Placeholder Injection

ActDocs updates content between specific markers inside your README:

<!-- actdocs:start -->
<!-- actdocs:end -->

Only the content between these markers is replaced; All other content in the README remains unchanged.