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

aoform-toolkit

v1.0.5

Published

CLI toolkit to deploy and update AO processes from YAML configs

Readme

aoform-toolkit

aoform-toolkit is a CLI for deploying AO processes from YAML config files. It keeps a local state file and only re-sends source code when content changes.

This project is a fork of AOForm originally developed by AF (Autonomous Finance), maintained independently with custom functionality.

Install

npm install --save-dev aoform-toolkit

Use with npx:

npx aoform --help

Quick Start

  1. Create a config file:
npx aoform init
  1. Provide a wallet (any one of these):
# Option A: explicit env var
WALLET_JSON="your_wallet_json"

# Option B: local wallet.json in your project
./wallet.json #at the root of your project
  1. Deploy processes:
npx aoform deploy

CLI Commands

aoform init

  • Creates processes.yaml in the current directory.
  • Option: -n, --name <name> to create a custom YAML filename.

aoform deploy

  • Deploys or updates processes from YAML config.
  • Options:
    • -f, --file <path> custom YAML file path.
    • -u, --url <url> custom HyperBEAM node URL.
    • -s, --scheduler <scheduler> custom scheduler.
    • --wallet-path <path> custom wallet JSON file path.

Configuration (processes.yaml)

Top-level value must be an array of process entries.

- name: My-App-V2
  file: build/output.lua
  resetModules: true
  module: cNlipBptaF9JeFAf4wUmpi43EojNanIBos3EfNrEOWo
  tags:
    - name: Process-Type
      value: My-App

Fields:

  • name (required): logical process name used in state tracking.
  • file (required): Lua source file path.
  • resetModules (optional): unload modules before eval.
  • module (optional): AO module id.
  • tags (optional): spawn tags as { name, value }.

Wallet Resolution Order

When running aoform deploy, wallet JSON is resolved in this order:

  1. --wallet-path <path>
  2. ./wallet.json in the current working directory
  3. WALLET_JSON environment variable

Example:

export WALLET_JSON="$(cat ~/.aos.json)"

Alternatively, use a .env file:

# .env
WALLET_JSON={"address":"...","privateKey":"..."}

State Files

  • Default state file: state.yaml
  • With a custom deploy file (for example -f my-processes.yaml): state-my-processes.yaml

The state file stores process IDs and code hashes so unchanged processes are skipped on future deploys.

Local Development

npm install
npm run build
npm run aoform -- --help

License

MIT. See LICENSE.

Contributing

See CONTRIBUTING.md.