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

@topogram/extractor-step-functions-workflows

v0.1.0

Published

Package-backed Topogram extractor for AWS Step Functions workflow definitions.

Downloads

81

Readme

@topogram/extractor-step-functions-workflows

Package-backed Topogram extractor for local AWS Step Functions workflow definitions.

Status: current Audience: extractor authors and maintainers Use when: you need to extract review-only workflow candidates from Amazon States Language files.

This extractor reads local Amazon States Language JSON or YAML files and returns review-only Topogram workflow candidates. It does not call AWS APIs, read cloud credentials, inspect execution history, mutate source files, or write canonical topo/** records.

Author Loop

npm install
npm test
npm run docs:rag:check
TOPOGRAM_CLI=/path/to/topogram/engine/src/cli.js npm run check
npm run release:preflight

npm run check runs:

  • adapter unit tests;
  • docs/RAG checks;
  • topogram extractor check .;
  • package-backed extraction against fixtures/basic-source;
  • topogram extract plan;
  • topogram query extract-plan;
  • topogram adopt --list;
  • fixture mutation guard.

Extracted Evidence

The extractor scans checked-in local files such as:

  • *.asl.json
  • *.asl.yaml
  • *.asl.yml
  • states.json
  • states.yaml
  • state-machine.json

It emits:

  • workflow_definitions
  • workflow_states
  • workflow_transitions

State candidates come from States keys. Transition candidates come from Next, Default, Choices, Catch, and visible branch starts. State type metadata carries initial, terminal, and error where it can be inferred statically.

Boundaries

V1 is intentionally local and deterministic:

  • no AWS SDK calls;
  • no credential loading;
  • no deployed state-machine discovery;
  • no execution-history inspection;
  • no IAM inference;
  • no source mutation;
  • no adoption semantics in the package.

CloudFormation, CDK, SAM, Serverless, Terraform, and deployed AWS discovery are future scope unless a package can recover the embedded ASL definition deterministically.

Topogram core owns normalization, persistence, reports, extract plans, adoption, and canonical workflow records.