用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill postiz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | postiz |
| description | Use the Postiz CLI to publish posts (create, schedule, upload images) to any configured integrations. |
This skill documents how to use the Postiz CLI to manage social media posts.
It should NOT contain user-specific channel IDs, default publication rules, or language policy.
The postiz binary must be available in your PATH.
Auth (required):
POSTIZ_API_KEYPOSTIZ_BASE_URLCreating a post follows a one or two-step process depending on whether images are included.
Find the IDs for the channels you want to post to.
postiz channels --pretty
If your post needs images, upload them first to get a public URL. You can repeat this for multiple images.
postiz upload-file --file-path /path/to/image.jpg --pretty
Capture the file.path from the JSON response. This is the URL you'll use in the next step.
Create a single post or a thread.
Draft (safe default):
If --status is omitted, the post is created as draft by default.
postiz posts create --content "Your post text" --integrations <id> --pretty
Single post:
postiz posts create --content "Your post text" --integrations <id> --status now --pretty
Scheduled post with image:
postiz posts create \
--content "Your post text" \
--integrations <id> \
--status scheduled \
--scheduled-date "YYYY-MM-DDTHH:mm:ss+01:00" \
--images "https://public-url-from-upload.png" \
--pretty
Thread / Multiple posts:
Add multiple --content flags. They will be posted in order as a thread.
postiz posts create \
--content "First tweet" \
--content "Second tweet" \
--integrations <id> \
--pretty
To avoid line break issues (like literal \n), pass multi-line content directly to the CLI or use a subshell to read from a file:
postiz posts create --content "$(cat post.txt)" --integrations <id> --pretty
postiz posts list --start-date YYYY-MM-DD --end-date YYYY-MM-DD --pretty: List posts in a date range.postiz posts delete --id <postId> --pretty: Delete a scheduled or draft post.