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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@frycz/atm

v1.1.0

Published

Set up private GitHub repos and push commits quickly

Downloads

1,076

Readme

atm

In the era of AI tools, drafting new ideas is easier than ever. atm helps you set up private GitHub repos for your ideas and save iterations quickly.

With a single atm init command, the tool prepares a private repository. Develop your project by adding changes and quickly pushing them with atm s. That's it.

No need to visit github.com to create a private repo and set it up locally. No need for "add" -> "commit" -> "push" repetitive flow.

Installation

# Global installation (recommended)
bun install -g @frycz/atm
# or
npm install -g @frycz/atm

Alternatively, you can use bunx or npx

bunx @frycz/atm
# or
npx @frycz/atm
# later remember
bunx @frycz/atm [command]
# or
npx @frycz/atm [command]

Prerequisites

Quick Start

# Create a new private GitHub repo
atm init

# go to the repo directory (if not already there)
cd [repo-directory]

# Add or modify files
# Then commit all and push to origin with one command:
atm s

# Or with a custom commit message
atm s add new feature

Commands

atm init

Initialize a new private GitHub repository. This command will:

  1. Prompt for your GitHub username (auto-detected from gh)
  2. Prompt for a repository name
  3. Prompt for a local directory (defaults to ./<repo-name>)
  4. Create a private repository on GitHub
  5. Initialize a local git repository with a README
  6. Push the initial commit
$ atm init
GitHub username [yourname]:
Repository name: my-project
Directory [./my-project]:

Creating private repo yourname/my-project...
Initializing git...
Pushing to GitHub...

Done! Repository created at /path/to/my-project

Using atm init in an existing repository

If you run atm init inside an existing git repository, it will detect this and offer to create only the atm.json configuration file. This is useful when you want to start using atm with a project that already has a GitHub remote set up.

$ cd existing-project
$ atm init

Git repository detected in: /path/to/existing-project

Remote URL: [email protected]:yourname/existing-project.git
Host: github
Visibility: private

This will only create an atm.json file. No new repository will be created.

Create atm.json in this directory? [y/N]: y

atm.json created successfully.
You can now use 'atm s' to save and push changes.

atm s

Quick save - stages all changes, commits with the default message from config, and pushes to origin.

atm s

atm s <message>

Stages all changes, commits with your custom message, and pushes to origin.

atm s fix login bug
atm s add user authentication

atm -h / atm --help

Print help.

atm -h

atm -v / atm --version

Print version.

atm -v

Configuration

After running atm init, a atm.json file is created in your repository containing:

{
  "defaultCommitMessage": "save"
}

You can change the default commit message used by atm s by editing this file.

Troubleshooting

gh CLI is not installed

Install the GitHub CLI from https://cli.github.com/

macOS:

brew install gh

Windows:

winget install GitHub.cli

Linux:

# Debian/Ubuntu
sudo apt install gh

# Fedora
sudo dnf install gh

gh CLI is not authenticated

Run the following command and follow the prompts:

gh auth login

atm.json not found

You need to initialize the repository first:

atm init

FAQ

Q: What does "atm" stand for? A: It's "all to main".

Q: Can I tell my friend about atm? A: Yes, go ahead!

License

MIT