Inblog CLI and AI Skills
Install @inblog/cli and @inblog/ai-skills to manage Inblog content from your terminal or AI coding tools.
Use Inblog developer tools when you want to manage blog content programmatically, automate editorial workflows, or let AI coding assistants work with your Inblog blog.
Before You Start
You need:
- An Inblog account on the Team plan or higher
- An API key from
Dashboard→Settings→API Keys - Node.js 18 or newer
Which Tool Should I Use?
| Tool | Best for | What it does |
|---|---|---|
@inblog/cli | Terminal workflows and automation scripts | Manage posts, images, tags, authors, redirects, forms, analytics, and blog settings from the command line |
@inblog/ai-skills | AI coding assistants | Installs Inblog skills for tools such as Codex, Claude Code, Cursor, GitHub Copilot, and Gemini |
AI Skills use the CLI under the hood, so install and authenticate the CLI first if you use the skills.sh installation path.
Install the CLI
npm install -g @inblog/cli
Authenticate with your API key:
inblog auth login
inblog auth status
Try a basic content command:
inblog posts list
Create a post from an HTML file:
inblog posts create \
--title "My Post" \
--slug "my-post" \
--content-file ./content.html
Useful CLI areas include:
inblog postsfor creating, updating, previewing, publishing, scheduling, and deleting postsinblog imagesfor uploading images to the CDNinblog tagsandinblog authorsfor content metadatainblog redirectsfor URL redirect rulesinblog formsandinblog form-responsesfor lead capture datainblog analyticsandinblog search-consolefor performance checksinblog blogsfor blog settings, custom domain status, logo, favicon, and banner configuration
Install AI Skills
Use AI Skills when you want your AI coding assistant to help write SEO posts, manage existing content, analyze traffic, source images, or check your blog setup through natural language.
Recommended installation via skills.sh:
npx skills add inblog-inc/inblog-ai-skills
If you use this path, install the CLI separately:
npm install -g @inblog/cli
You can also install directly from npm:
npx @inblog/ai-skills
The npm installer detects supported AI tools and installs the Inblog skills for them. To install for every detected tool:
npx @inblog/ai-skills --all
To install for specific tools:
npx @inblog/ai-skills --tools claude,cursor
Recommended Workflow
- Create an API key in the Inblog dashboard.
- Install
@inblog/cli. - Run
inblog auth login. - Confirm access with
inblog auth statusandinblog posts list. - Install
@inblog/ai-skillsif you want to use Inblog from an AI coding assistant. - Ask your AI assistant to draft, preview, update, publish, or analyze posts.
Related Links
- Inblog API Docs
@inblog/clion npm@inblog/ai-skillson npminblog-inc/inblog-clisource codeinblog-inc/inblog-ai-skillssource code
Last updated 2026-05-29