https://github.com/imseanconroy/utility-kit
A collection of my most commonly used command-line utilities
https://github.com/imseanconroy/utility-kit
cli command-line-tool golang
Last synced: 8 months ago
JSON representation
A collection of my most commonly used command-line utilities
- Host: GitHub
- URL: https://github.com/imseanconroy/utility-kit
- Owner: ImSeanConroy
- License: mit
- Created: 2024-02-20T16:10:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-23T22:40:05.000Z (9 months ago)
- Last Synced: 2025-09-24T00:22:06.413Z (9 months ago)
- Topics: cli, command-line-tool, golang
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Utility Kit
A collection of my most commonly used command-line utilities — things I reach for weekly like generating secure passwords or picking meal ideas — and it will continue to grow as I add more tools over time.
## Table of Contents
- [Getting Started](#getting-started)
- [Usage](#usage)
- [Password Generator](#password-generator)
- [Meal Ideas](#meal-ideas)
- [Lorem Ipsum Generator](#lorem-ipsum-generator)
- [Secret Token Generator](#secret-token-generator)
- [License](#license)
- [Support](#support)
## Getting Started
### Prerequisites
Before getting started, ensure you have the following installed:
* [Go](https://go.dev/dl/) (1.18+ recommended)
### Installation
The following contains instruction for getting this application running locally:
1. Clone the repository:
```bash
git clone https://github.com/imseanconroy/utility-kit.git
cd utility-kit
```
2. Build the binary:
```bash
go build -o kit
```
3. (Optional) Install globally:
```bash
mv kit /usr/local/bin/
```
Now you can run `kit` from anywhere in your terminal.
## Usage
Generate a password:
```bash
kit password
```
Generate a meal suggestion:
```bash
kit meals
```
Generate lorem ipsum placeholder text:
```bash
kit lorem --words 100
```
Generate a cryptographically secure token:
```bash
kit token --length 64
```
## License
This project is distributed under the MIT License – see the [LICENSE](LICENSE) file for information.
## Support
If you are having problems, please let me know by [raising a new issue](https://github.com/imseanconroy/utility-kit/issues/new/choose).