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

flow-iam-cli

v1.2.3

Published

Git workflow helper (sprint, feature, hotfix, etc)

Downloads

911

Readme

Preview

flow-iam

The official CLI of flow-iam

About

flow-iam is a custom CLI helper tool to simplify and standardize your Git branching workflow. It provides commands for creating sprints, features, hotfixes, fixes, commits, and PR/MR operations using either GitHub CLI (gh) or GitLab CLI (glab) or BitBucket CLI.


🚀 Features

  • Initialize Git project
  • Create sprint branches (take from master)
  • Create feature branches (take from sprint)
  • Create hotfix (take from master)
  • create fix branches (take from anywhere except master)
  • Commit with validation
  • Create Pull Requests (PR) or Merge Requests (MR) (only for github or gitlab)
  • Visualize commit history
  • Interactive CLI mode
  • push to remote
  • sprint-finish & feature-finish for fast-forward without merge-request or pull request and automatically delete branch local and remote
  • Installing Github/Gitlab/Bitbucket(on progress) platform

[!note] This tool is designed to work with GitHub and GitLab. If you are using a different version of Git or a different version of the Git CLI, you may need to adjust the commands accordingly.

How To install

npm install -g flow-iam-cli

📘 Example Workflows

Every command will be display prompt inputs when needed.

flow-iam # Choice mode
flow-iam init (-i) # Initialize Git project
flow-iam sprint (-s) # create srpint branch from master
flow-iam feature (-f) # create feature branch from spint branch
flow-iam hotfix (-hx) # Create hotfix branch from master by default
flow-iam fix # Create fix branch not from master
flow-iam commit (-c) # Input message (max 50 charactesrs)
flow-iam pr  #  Follow input prompts for PR creation
flow-iam push (-p) # push to remote
flow-iam log (-l) # Interactive log visualization
flow-iam sprint-finish (-sf) # finish sprint branch after merged into development/develop/master/staging, fast-forward to development without Pull request or merge request
flow-iam feature-finish (-ff) # finish feature branch after merged into sprint, fast-forward to sprint without Pull request or merge request
flow-iam install-plat-repo (-ins) # Install the platform CLI based on your operating system. Supported platforms: GitHub, GitLab, and Bitbucket.
flow-iam version (-v, --version) # show version.
flow-iam help (-h) #show help message