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

@agenti-fy/setup

v0.3.8

Published

Interactive setup wizard for agenti-fy. Registers nine GitHub Apps (one per built-in persona) via the App Manifest flow, installs them on the target repo, collects Anthropic credentials, and writes a ready-to-use .env. Generates a standalone docker-compos

Readme

@agenti-fy/setup

Interactive deployment wizard for agentify. Automates GitHub App creation (via the App Manifest flow), installation, and .env generation so operators can go from git clone to docker compose up without manual click-through.

For the full operator walkthrough, see docs/setup-wizard.md.

Quick start

pnpm --filter @agenti-fy/setup build
node packages/setup/dist/bin.js

Or, after installing the bin globally:

agentify-setup

Subcommands

| Subcommand | What it does | |---|---| | init | Start a fresh wizard session. Creates ten GitHub Apps, collects Anthropic credentials, and writes .env. | | resume | Continue an interrupted init session from the saved checkpoint. | | verify | Read the generated .env and verify all credentials are reachable. Does not require the passphrase. |

Setup-passphrase

The wizard encrypts sensitive secrets — GitHub App PEM private keys, OAuth client secrets, and webhook secrets — before writing them to the checkpoint state file (~/.config/agentify/setup-<prefix>.json). The encryption uses a short passphrase you supply; the passphrase is never written to disk.

When you are prompted

| Subcommand | Prompt | |---|---| | init | Prompted twice (with confirmation) to set a new passphrase. Both entries must match. | | resume | Prompted once to decrypt the existing checkpoint. | | verify | Not prompted — verify reads from .env, not the checkpoint file. |

Requirements

  • Minimum length: 12 characters. Shorter passphrases are rejected immediately.
  • Confirmation on init: if the two entries do not match, the prompt repeats.

Headless / CI runs

Set the AGENTIFY_SETUP_PASSPHRASE environment variable to bypass the interactive prompt:

AGENTIFY_SETUP_PASSPHRASE="my-long-passphrase" agentify-setup init

Caution: avoid putting the passphrase in shell history (HISTIGNORE), CI job logs, or inline in docker run commands where it may appear in ps output. Prefer a secrets manager that injects it as an env var at runtime.

Loss recovery

If you forget the passphrase the checkpoint file cannot be decrypted — the encrypted values are unrecoverable without the original passphrase.

To start over:

  1. Delete the checkpoint: rm ~/.config/agentify/setup-<prefix>.json
  2. Re-run agentify-setup init (and rotate any GitHub App private keys that were already generated).

Alternatively, run init with a different --prefix value to create a parallel session from scratch.

Cryptographic design

For the full specification — key derivation parameters (scrypt N=2¹⁴, r=8, p=1), AES-256-GCM nonce and tag handling, per-field salt strategy, and v1 → v2 state migration — see docs/adr/001-pem-at-rest-mitigation.md.

See also