-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generates and formats the help documentation for the `llm-cli` command-line interface using Typer and Prettier.
- Loading branch information
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# `llm-cli` | ||
|
||
**Usage**: | ||
|
||
```console | ||
$ llm-cli [OPTIONS] COMMAND [ARGS]... | ||
``` | ||
|
||
**Options**: | ||
|
||
- `--help`: Show this message and exit. | ||
|
||
**Commands**: | ||
|
||
- `commit` | ||
- `repo` | ||
|
||
## `llm-cli commit` | ||
|
||
**Usage**: | ||
|
||
```console | ||
$ llm-cli commit [OPTIONS] | ||
``` | ||
|
||
**Options**: | ||
|
||
- `--help`: Show this message and exit. | ||
|
||
## `llm-cli repo` | ||
|
||
**Usage**: | ||
|
||
```console | ||
$ llm-cli repo [OPTIONS] COMMAND [ARGS]... | ||
``` | ||
|
||
**Options**: | ||
|
||
- `--help`: Show this message and exit. | ||
|
||
**Commands**: | ||
|
||
- `description` | ||
- `topics` | ||
|
||
### `llm-cli repo description` | ||
|
||
**Usage**: | ||
|
||
```console | ||
$ llm-cli repo description [OPTIONS] | ||
``` | ||
|
||
**Options**: | ||
|
||
- `--help`: Show this message and exit. | ||
|
||
### `llm-cli repo topics` | ||
|
||
**Usage**: | ||
|
||
```console | ||
$ llm-cli repo topics [OPTIONS] | ||
``` | ||
|
||
**Options**: | ||
|
||
- `--help`: Show this message and exit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
set -o errexit -o nounset -o pipefail | ||
|
||
typer llm_cli utils docs --output docs/help.md | ||
prettier --write docs/help.md |