Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sleepypioneer/community-assistant-cli

A CLI tool to help with community event organisation
https://github.com/sleepypioneer/community-assistant-cli

Last synced: 2 days ago
JSON representation

A CLI tool to help with community event organisation

Awesome Lists containing this project

README

        

# community-assistant-cli

A CLI tool to help with community event organisation.

## Build the CLI binary

```bash
go mod tidy
go build -o community-assist
```

## Run the CLI

```bash
./community-assist [flags]
```

### Commands

#### `help`

```bash
./community-assist help
```

#### `tweet`

Allows you to create a tweet formulated text from an input text file and save it out to a file.

```bash
export OPENAI_API_KEY =
./community-assist tweet --input --output
```

#### `dashboard`

Displays a command line dashboard of stats for the given meetup event.

```bash
./community-assist dashboard --event-id "293908113"
```

## Tests

```bash
go test ./...
```