用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/minipostiz-cli --skill minipostiz-devto-setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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
基于 SOC 职业分类
正在显示 SKILL.md
| 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.