🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@cle-does-things/gar

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cle-does-things/gar

CLI tool to generate a README for GitHub Actions.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

generate-action-readme

gar (generate-action-readme) is a simple CLI tool to convert a YAML specification for a GitHub Action into a well-formatted README written in GitHub-flavored markdown.

Installation

In order to install gar there are three ways:

  • Using go: if you already have go 1.22+ installed in your environment, installing gar is effortless
go install github.com/AstraBert/generate-action-readme
  • Using npm (recommended):
npm install @cle-does-things/gar
  • Downloading the executable from the releases page: you can download it directly from the GitHub repository or, if you do not want to leave your terminal, you can use curl:
curl -L -o gar https://github.com/AstraBert/generate-action-readme/releases/download/<version>/generate-action-readme_<version>_<OS>_<processor>.tar.gz ## e.g. https://github.com/AstraBert/generate-action-readme/releases/download/0.1.1/generate-action-readme_0.1.1_darwin_amd64.tar.gz

# make sure the downloaded binary is executable (not needed for Windows)
chmod +x gar

In this last case, be careful to specify your OS (supported: linux, windows, macos) and your processor type (supported: amd, arm).

Usage

gar has one command: generate (aliased also to g and gen).

You can use it with two optional flags:

  • -a, --action: path to the YAML file with the action specification
  • -r, --readme: path to the README file to write

Examples

  • With a specific path to action and README:
gar generate --action action/action.yml --readme action/README.md
  • With default paths for action (action.yml) and README (README.md)
gar generate
  • Using command aliases:
gar g --action v1/action.yml --readme v1/README.md
gar gen

Contributing

We welcome contributions! Please read our Contributing Guide to get started.

License

This project is licensed under the MIT License

Keywords

cli

FAQs

Package last updated on 26 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts