一键导入
minipostiz-devto-setup
Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Facebook Graph API setup for minipostiz-cli — create app, get page access token + page ID, store credentials
Bluesky AT Protocol setup for minipostiz-cli — create app password, store handle + password
Discord webhook setup for minipostiz-cli — create webhook in a channel, store URL
Mastodon API setup for minipostiz-cli — create application, get access token, store instance URL + token
Reddit OAuth setup for minipostiz-cli — create script app, get client credentials, store with username/password/subreddit
Telegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials
| name | minipostiz-devto-setup |
| description | Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format |
| type | setup |
Dev.to has a simple REST API. One API key is all you need.
| Credential | Flag |
|---|---|
| API Key | --apiKey |
| Tags (optional) | --tags (comma-separated, max 4) |
| Series (optional) | --series |
minipostiz) → Generate API Keyminipostiz auth --platform devto --apiKey "YOUR_API_KEY"
# With optional defaults
minipostiz auth --platform devto \
--apiKey "YOUR_API_KEY" \
--tags "webdev,productivity,tools" \
--series "My Series Name"
# Or via supercli
sc minipostiz auth set-devto --apiKey "YOUR_API_KEY"
minipostiz auth verify --platform devto
minipostiz publish --platform devto --message "# My First Post
This is the body of the article published via minipostiz-cli."
Dev.to posts are articles. minipostiz-cli maps:
--message → article title (markdown heading stripped)minipostiz publish --platform devto --message "# Article Title
## Introduction
Body content here. Supports **bold**, *italic*, \`code\`, etc."
Tags and series can be set at auth time (applied to all posts) or overridden:
# Update auth to set default tags
minipostiz auth --platform devto --apiKey "KEY" --tags "javascript,node,cli"
| Error | Cause | Fix |
|---|---|---|
401 Unauthorized | Invalid API key | Regenerate key at dev.to → Settings → Extensions |
422 Unprocessable | Article validation failed | Ensure title (first line) is non-empty |
| Post published but no tags | Tags not in auth | Add --tags to minipostiz auth --platform devto |
Dev.to API keys do not expire unless deleted from Settings → Extensions.