npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ghost-admin-cli

v1.2.0

Published

Ghost Admin API CLI tool

Readme

Ghost Admin CLI & Skill

A CLI tool and AI Agent Skill for managing Ghost — the open source platform for bloggers, newsletter creators, and independent publishers.

Package name: ghost-admin-cli

中文文档

Quick Start

  1. Install the skill: npx skills add nixihz/ghost-admin-skill
  2. The skill will auto-install the CLI when needed
  3. When asked for API key, get it from Ghost Admin > Settings > Integrations > Admin API

Example Prompts

Here are example prompts you can use with this skill:

Create a Post

Write a blog post about Claude Code skill development with:
- Title: "Getting Started with Claude Code Skills"
- English slug in YYYY-MM-DD format
- Content covering: what is a skill, why build one, quick start guide
- Set status to draft

Publish a Draft

Publish the latest draft post

Write & Publish with AI

Write and publish a blog post about the latest AI coding tools:
- Clean English title
- Slug in YYYY-MM-DD-title format
- Content in markdown with code examples
- Publish immediately

Usage

Posts

ghost-admin posts list --limit 10 --include tags,authors [--table]
ghost-admin posts get <id-or-slug>
ghost-admin posts create --title "My Post" --content "**Hello World** in Markdown" --status published
ghost-admin posts create --title "My Post" --content ./article.md
ghost-admin posts update <id> --title "Updated Title" --slug 2024-01-15-new-slug
ghost-admin posts delete <id>
ghost-admin posts duplicate <id-or-slug>
ghost-admin posts publish <id-or-slug>
ghost-admin posts search <keyword> [--table]

Pages

ghost-admin pages list
ghost-admin pages get <id-or-slug>
ghost-admin pages create --title "My Page" --content "Page **content** in Markdown"
ghost-admin pages update <id> --title "Updated Title"
ghost-admin pages delete <id>

Images

ghost-admin images upload --file ./image.png --ref "my-image"

Tags

ghost-admin tags list
ghost-admin tags create --name "Technology" --slug "tech"
ghost-admin tags update <id> --name "Tech" --slug "tech-updated"
ghost-admin tags delete <id>

Members

ghost-admin members list --limit 20 --include labels
ghost-admin members get <id>

Site

ghost-admin site info

Tiers

ghost-admin tiers list --include monthly_price,benefits

Newsletters

ghost-admin newsletters list

Other Commands

ghost-admin status     # Check auth status
ghost-admin logout     # Logout

When to Use

This skill activates when you:

  • Mention Ghost CMS, Ghost admin, or Ghost API key
  • Need to manage posts, pages, images, members, or tiers
  • Want to publish or manage blog content on Ghost

API Coverage

Available:

  • Posts (CRUD + Duplicate + Publish + Search), Pages (CRUD + Copy), Images (Upload), Tags (CRUD)
  • Members (Browse, Read), Site (Read), Tiers (Browse), Newsletters (Browse)

Coming soon:

  • Themes (Upload, Activate), Webhooks (CRUD), Users (Browse, Read)

Development

npm install
npm run test

License

MIT