What problem does it solve?
Ghost content management via the Admin API typically requires many repetitive API calls to list, create, update, delete posts and tags, publish drafts, and perform bulk changes. This Skill provides a programmable interface to Ghost Admin API to automate common blogging workflows.
Core Features & Use Cases
- Create, read, update, delete, and publish Ghost posts and manage tags.
- Bulk operations like mass publish/unpublish and tag synchronization.
- Workflows for drafts, scheduled posts, and newsletters to streamline content distribution.
Quick Start
- Install dependencies and set up environment variables (GHOST_URL, GHOST_ADMIN_KEY, GHOST_API_VERSION if needed).
- List posts: python scripts/posts_browse.py --status draft
- Create a post: python scripts/posts_crud.py create --title "My Post" --html "<p>Content</p>" --status draft --tags "tag1,tag2"
- Publish a post: python scripts/posts_crud.py publish --id POST_ID