Managing Posts
Create, list, update, and delete changelog posts using the CLI.
List posts
List options
| Flag | Description |
|---|---|
--status <status> | Filter by status: draft, published, archived |
--limit <n> | Max number of posts (default: 20) |
--offset <n> | Offset for pagination (default: 0) |
Get a post
Create a post
Content is read from stdin:
Or from a file:
Update a post
Update metadata only (no stdin pipe):
Delete a post
Create / Update options
| Flag | Description |
|---|---|
--title <title> | Post title (required for create) |
--tags <tags> | Comma-separated tags: new, fix, improvement, announcement, alert |
--status <status> | draft, published, archived (default: draft) |
--publish-at <date> | ISO date for scheduled publish |
--allow-reactions / --no-allow-reactions | Enable or disable reactions |
--notes <notes> | Internal notes |