You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documents that the --ai flag accepts any stdin→stdout CLI and provides
a table of common providers (Amp, Claude, OpenAI, Gemini, Ollama) with
their commands, required secrets, and install instructions.
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ Or download directly from [GitHub Releases](https://github.com/wevm/changelogs-r
86
86
|---------|-------------|
87
87
|`init`| Initialize `.changelog/` directory |
88
88
|`add`| Create a new changelog interactively |
89
-
|`add --ai "claude -p"`| Generate changelog using AI |
89
+
|`add --ai "<command>"`| Generate changelog using AI (see [Supported AI Providers](#supported-ai-providers))|
90
90
|`status`| Show pending changelogs and releases |
91
91
|`version`| Apply version bumps and update changelogs |
92
92
|`publish`| Publish unpublished packages to crates.io |
@@ -129,6 +129,29 @@ Added new feature X that does Y.
129
129
Fixed bug Z in the parser.
130
130
```
131
131
132
+
## Supported AI Providers
133
+
134
+
The `--ai` flag and GitHub Action `ai` input accept any CLI command that reads from stdin and outputs text. The diff is piped to the command, and the output becomes the changelog entry.
0 commit comments