ghost

Installation
SKILL.md

Ghost Admin API

Use the bundled standard-library client. The connector injects:

  • $GHOST_SITE_URL — site root, such as https://blog.example.com
  • $GHOST_ADMIN_API_KEY — Ghost custom integration key (id:hexsecret)

The key grants administrative publishing access. Never print, log, or place it in command arguments.

G="$SKILL_DIR/scripts/ghost.py"
[ -f "$G" ] || G=$(find /tmp -maxdepth 8 -path '*/skills/*/ghost/scripts/ghost.py' 2>/dev/null | head -1)
[ -f "$G" ] || { echo "ghost script not found" >&2; exit 1; }

python3 "$G" posts --limit 10

Create a private draft

Installs
7
GitHub Stars
17
First Seen
Jul 28, 2026
ghost — acedatacloud/skills