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 DashboardSettingsAPI Keys
  • Node.js 18 or newer

Which Tool Should I Use?

ToolBest forWhat it does
@inblog/cliTerminal workflows and automation scriptsManage posts, images, tags, authors, redirects, forms, analytics, and blog settings from the command line
@inblog/ai-skillsAI coding assistantsInstalls 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 posts for creating, updating, previewing, publishing, scheduling, and deleting posts
  • inblog images for uploading images to the CDN
  • inblog tags and inblog authors for content metadata
  • inblog redirects for URL redirect rules
  • inblog forms and inblog form-responses for lead capture data
  • inblog analytics and inblog search-console for performance checks
  • inblog blogs for 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
  1. Create an API key in the Inblog dashboard.
  2. Install @inblog/cli.
  3. Run inblog auth login.
  4. Confirm access with inblog auth status and inblog posts list.
  5. Install @inblog/ai-skills if you want to use Inblog from an AI coding assistant.
  6. Ask your AI assistant to draft, preview, update, publish, or analyze posts.

Last updated 2026-05-29