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

@aiaiai-pt/frankctl

v0.4.3

Published

Terminal-first client for the Frank Low-Code Pipeline platform

Readme

frankctl

Terminal-first CLI for the Frank Low-Code Pipeline platform — scriptable access to sources, streams, transforms, pipelines, backing datasets, and AI assistance.

Install

npm install -g @aiaiai-pt/frankctl
frankctl --help

Requires Node.js >= 18. The binary is frankctl.

Quickstart

frankctl auth login            # authenticate against your Frank instance
frankctl --api-url https://frank.example.com sources list
frankctl pipelines apply -f pipeline.yaml

Full command reference: the Frank docs and frankctl <command> --help.

Develop from source

npm install
npm run build
npm link
frankctl --help

Scope

  • frankctl status
  • frankctl auth login|logout|status|token
  • frankctl config set|get|list
  • frankctl pipelines list|get|validate|apply|export
  • frankctl sources list|get|create|update|delete|discover|sync|logs|history
  • frankctl backing-datasets list|get|create|update|delete (alias: frankctl bd)
  • frankctl sources streams list|set|refresh-schema
  • frankctl transforms list|get|runs|logs|trigger
  • frankctl runs get|wait|cancel
  • frankctl patterns list|get|validate-params|register
  • frankctl schedules list|get|set|delete|pause|resume|trigger (source-scoped)
  • frankctl datasets list|preview|snapshots
  • frankctl ai compose-pipeline|generate-transform|review-sql|fix-ci-failure|suggest|publish-transform

Config files for sources create|update, backing-datasets create|update, and sources streams set accept YAML or JSON (use - to read stdin).

Declarative apply (pipelines apply -f)

frankctl pipelines apply -f vertical.yaml provisions a complete Source + Pipeline + BackingDataset triple from a single multi-doc YAML file. Docs use the kubectl-style envelope (apiVersion: frank.platform/v1, kind:, metadata.name:, spec:). The CLI sorts by kind (Source → Pipeline → BackingDataset), resolves cross-doc name references to UUIDs, and POSTs each doc with ?if-not-exists=true. frankctl pipelines export <id> -o yaml round-trips an existing pipeline back to a multi-doc YAML file ready for adoption into git. See ../docs/guides/cli.md for the full reference.

Environment

  • FRANKCTL_API_URL — Frank API base (default http://localhost:8000)
  • FRANKCTL_KEYCLOAK_URL — Keycloak base (default http://localhost:8180)
  • FRANKCTL_KEYCLOAK_REALM — realm (default frank)
  • FRANKCTL_CLIENT_ID — OAuth client id (default frank-low-code for user flows, frank-api for service account)
  • FRANKCTL_CLIENT_SECRET — client secret (service account only)
  • FRANKCTL_PROFILE — active config profile
  • FRANKCTL_TOKEN — bypass token store entirely
  • FRANK_DEV_MODE=true + FRANKCTL_TENANT_ID=<uuid> — forward X-Tenant-ID header (required today for transforms and source sync routes)
  • PATTERN_WEBHOOK_SECRET — HMAC-SHA256 signing key for frankctl patterns register (CI only; command exits 6 when unset)