โ† All skills
Tencent SkillHub ยท Developer Tools

Ecto

Ghost.io Admin API CLI for managing blog posts, pages, tags, and content.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Ghost.io Admin API CLI for managing blog posts, pages, tags, and content.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md, Taskfile.yml, cmd/auth.go, cmd/auth_test.go

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

ecto - Ghost.io Admin API CLI

Manage Ghost.io blogs via the Admin API. Supports multi-site configuration, markdown-to-HTML conversion, and JSON output for scripting.

Authentication

ecto auth add <name> --url <ghost-url> --key <admin-api-key> ecto auth list ecto auth default <name> ecto auth remove <name> Environment overrides: GHOST_URL, GHOST_ADMIN_KEY, GHOST_SITE

Posts

ecto posts [--status draft|published|scheduled|all] [--limit N] [--json] ecto post <id|slug> [--json] [--body] ecto post create --title "Title" [--markdown-file file.md] [--stdin-format markdown] [--tag tag1,tag2] [--status draft|published] ecto post edit <id|slug> [--title "New Title"] [--markdown-file file.md] [--status draft|published] ecto post delete <id|slug> [--force] ecto post publish <id|slug> ecto post unpublish <id|slug> ecto post schedule <id|slug> --at "2025-01-25T10:00:00Z"

Pages

ecto pages [--status draft|published|all] [--limit N] [--json] ecto page <id|slug> [--json] [--body] ecto page create --title "Title" [--markdown-file file.md] [--status draft|published] ecto page edit <id|slug> [--title "New Title"] [--markdown-file file.md] ecto page delete <id|slug> [--force] ecto page publish <id|slug>

Tags

ecto tags [--json] ecto tag <id|slug> [--json] ecto tag create --name "Tag Name" [--description "desc"] ecto tag edit <id|slug> [--name "New Name"] [--description "desc"] ecto tag delete <id|slug> [--force]

Images

ecto image upload <path> [--json]

Site Info

ecto site [--json] ecto settings [--json] ecto users [--json] ecto user <id|slug> [--json] ecto newsletters [--json] ecto newsletter <id> [--json]

Webhooks

ecto webhook create --event <event> --target-url <url> [--name "Hook Name"] ecto webhook delete <id> [--force] Events: post.published, post.unpublished, post.added, post.deleted, page.published, etc.

Multi-Site

Use --site <name> to target a specific configured site: ecto posts --site blog2

Common Workflows

Create and publish from markdown: ecto post create --title "My Post" --markdown-file post.md --tag blog --status published Pipe content from stdin: echo "# Hello World" | ecto post create --title "Quick Post" --stdin-format markdown Schedule a post: ecto post schedule future-post --at "2025-02-01T09:00:00Z" Batch publish drafts: for id in $(ecto posts --status draft --json | jq -r '.posts[].id'); do ecto post publish "$id" done

Limitations

Ghost API does not support listing images or webhooks Member/subscription management not available via Admin API Read-only access to users

Full Docs

Run ecto --ai-help for comprehensive documentation.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Files1 Config
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • Taskfile.yml Config
  • cmd/auth_test.go Files
  • cmd/auth.go Files