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

@timedomain/aceworkflow

v0.1.1

Published

Package, sign, and verify your ACE Studio extension before publishing it.

Downloads

247

Readme

@timedomain/aceworkflow

The toolchain for ACE Studio workflow extensions. It packs a source tree into a .aceworkflow bundle, gets it signed, and checks a signed bundle against a trust anchor.

Commands

aceworkflow pack   <dir> [-o <out.aceworkflow>]     pack a source tree (local, deterministic)
aceworkflow submit <bundle.aceworkflow> [-o <out>]  submit a prebuilt bundle to be signed
aceworkflow verify <bundle.aceworkflow> [--roots <file>]   check a signed bundle
aceworkflow sign   <dir|bundle> [-o <out>] [--roots <file>]   pack → submit → self-verify → write

aceworkflow login  [--token <bearer> | --ad-hoc]    store a credential for a service
aceworkflow logout                                  forget the stored credential
aceworkflow whoami                                  show the resolved credential

Global options: --service <url> (defaults to production), --token <bearer>, --roots <file> (trust anchor for verify and sign's self-verify), --json, --quiet, -y/--yes, --help, --version.

Credentials

One bearer credential resolves in order: --tokenACEWORKFLOW_TOKEN → the stored credential → an interactive prompt. The service decides whether a bearer is a registered API token or an ad-hoc secret; the client never declares a kind. --ad-hoc means "mint an anonymous identity if I have none". The env var always wins and is never persisted — that is the CI and agent path.

Stored credentials go in the OS keychain (macOS Keychain, Windows Credential Manager, Linux Secret Service) when one is available, and fall back to a 0600 file under the OS app-data directory otherwise — Git's credential-helper model. Either way they are keyed by service origin, so a production bearer and a dev bearer never collide. Set ACEWORKFLOW_CREDENTIAL_STORE=file to force the file store (useful in CI images).

Targeting a service

Production is compiled in and silent. --service <url> or ACEWORKFLOW_SERVICE overrides it with any URL, and an override is always announced (on stderr, even under --json/--quiet) so a command can never quietly hit a non-production backend.

For a name you use often, define an alias in config.json (in the OS app-data directory) and pass it to --service:

{ "services": { "dev": "https://…" } }

--service dev then resolves from your own config — no non-production host is baked into this package.

Non-interactive use

A non-TTY session never prompts; -y forces the same. --json emits a single machine-readable object on stdout on every path — a result on success, { error, code } on failure — and the process exit code maps the service's own refusal codes (see ExitCode).