| layout | default |
|---|---|
| title | Unified CLI |
Global options such as --json, --cookies, and --publication-url must
appear before the command.
substack drafts create post.mdThe title comes from the first Markdown heading, then the filename if the file
has no heading. Use --title to override it.
List every publication available to the authenticated account:
substack publications listSelect one for a single command:
substack --publication-url https://example.substack.com drafts listPass an ISO 8601 timestamp with a timezone offset or Z:
substack drafts schedule 12345 --at 2030-01-02T09:00:00+01:00Remove the schedule without deleting the draft:
substack drafts unschedule 12345substack --json drafts list --limit 10The command writes a JSON object containing drafts, count, filter,
offset, and limit. Errors are also JSON when --json is present.
substack drafts publish 12345 --no-send
substack drafts delete 12345 --yesPublishing and deletion require confirmation. JSON and noninteractive
workflows must pass --yes. Publishing runs Substack's prepublish check first.
See safety and publishing behavior.
The original console scripts remain supported. See legacy CLI commands.