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

agentic-workflow-manager

v2.0.1

Published

CLI to manage Agentic Workflows - install skills, workflows, and processes for AI agents

Readme

AWM CLI Core

This directory contains the source code for the agentic-workflow-manager Command Line Interface.

Built with Node.js and TypeScript, the CLI uses @clack/prompts to deliver a zero-friction, interactive Text User Interface (TUI) for installing skills and workflows from configured git registries into the local OS environment.

📁 Directory Structure

The CLI is cleanly layered to decouple configuration mapping from core engine logic:

  • src/index.ts: The main entrypoint, orchestrating Commander args and Clack prompts.
  • src/core/: The core engine modules:
    • registry.ts: Resolves the base registry remote and parses YAML/JSON manifests from ~/.awm/registries/<name>/.
    • discovery.ts: Provides searching, mapping, and categorization inside the registry format.
    • executor.ts: The installation logic handling target validations, filesystem hooks, Copy execution, and Symlink deployment.
  • src/providers/: Encapsulates logic for routing. e.g. mapping antigravity to ~/.gemini/antigravity/ vs mapped opencode to standard OS .agents/ targets.
  • src/utils/: Common helpers like git wrappers or string formatting flags.
  • tests/: Extensive Jest test suites mirroring each module in src/.

🛠 Developer Guide

If you are contributing bug fixes to the CLI or implementing support for a new AI Agent ecosystem (e.g. extending src/providers/), follow these steps to work on the CLI locally:

1. Requirements

Ensure you have Node.js and npm installed.

2. Install Dependencies

Navigate to this directory (/cli/) and install dev packages:

npm install

3. Build the CLI

Because the CLI uses TypeScript, the source must be transpiled to CommonJS/ESM before Node can natively execute the Javascript output via Commander.

npm run build

This generates the runnable output under dist/index.js.

4. Running the Tests

Before submitting a PR, ensure that the core discovery/executor functionality passes the existing test suite:

npm test

The goal is to maintain 100% passing tests for any new CLI parameter flags.

5. Local Execution (Testing changes locally)

Method A: Typescript Native execution (Slower) Useful for quick testing without building.

npm run start -- add "specific-name" --agent antigravity --scope global

Method B: Global NPM Linking (Recommended for interactive QA) Links your compiled dist/ directory directly to your global awm path, ensuring you are testing the exact binary output the end-user will see.

npm run build
npm link

Now simply type awm from any path on your machine.