Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setups. --- name: ghost description: "Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setu Capability contract not published. No trust telemetry is available yet. Last updated 3/1/2026.
Freshness
Last checked 3/1/2026
Best For
ghost is best for be workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setups. --- name: ghost description: "Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setu
Public facts
4
Change events
1
Artifacts
0
Freshness
Mar 1, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 3/1/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Rwx G
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 3/1/2026.
Setup snapshot
git clone https://github.com/Rwx-G/openclaw-skill-ghost.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Rwx G
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
python3 scripts/ghost.py config # verify credentials + active config python3 scripts/ghost.py site # test connection + show site info python3 scripts/ghost.py posts --limit 3 --fields "id,title,status"
bash
python3 scripts/setup.py # interactive: credentials + permissions + connection test python3 scripts/init.py # validate all configured permissions against live instance
text
GHOST_URL=https://your-ghost.example.com GHOST_ADMIN_KEY=id:secret_hex
bash
python3 scripts/setup.py --cleanup
python
from scripts.ghost import GhostClient
gc = GhostClient()
post = gc.create_post("My Title", html="<p>Body</p>", status="draft")
gc.publish_post(post["id"])bash
# Posts
python3 scripts/ghost.py posts --status published --limit 10
python3 scripts/ghost.py posts --tag devops --fields "id,title,published_at"
python3 scripts/ghost.py post <id_or_slug>
python3 scripts/ghost.py post-create "Title" --html "<p>...</p>" --status draft
python3 scripts/ghost.py post-create "Title" --html-file body.html --tags "DevOps,Linux"
python3 scripts/ghost.py post-create "Title" --html-file body.html --feature-image "https://..."
python3 scripts/ghost.py post-update <id> --fields-json '{"title":"New","custom_excerpt":"..."}'
python3 scripts/ghost.py post-publish <id>
python3 scripts/ghost.py post-unpublish <id>
python3 scripts/ghost.py post-delete <id> # requires allow_delete: true
# Pages
python3 scripts/ghost.py pages
python3 scripts/ghost.py page-create "About" --html "<p>...</p>"
python3 scripts/ghost.py page-publish <id>
# Tags
python3 scripts/ghost.py tags
python3 scripts/ghost.py tag-create "DevOps" --slug devops --desc "DevOps content"
python3 scripts/ghost.py tag-delete <id> # requires allow_delete: true
# Images
python3 scripts/ghost.py image-upload ./image.png --alt "Description"
# Members & newsletters (read)
python3 scripts/ghost.py members --limit 20 # requires allow_member_access: true
python3 scripts/ghost.py newsletters
python3 scripts/ghost.py tiers
# Account
python3 scripts/ghost.py site
python3 scripts/ghost.py me
python3 scripts/ghost.py configFull documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setups. --- name: ghost description: "Ghost CMS content management via Admin API v5.x. Use when: (1) creating, editing, or publishing blog posts or static pages, (2) managing tags, (3) uploading images, (4) reading member/newsletter/tier info, (5) checking site settings. NOT for: theme management (needs Ghost CLI), webhook config, email sending (auto on publish), content import/export (use Ghost Admin UI), or multi-site setu
Full Ghost Admin API v5 client. HS256 JWT auth and all HTTP calls via stdlib (urllib) - zero external dependencies.
Credentials: ~/.openclaw/secrets/ghost_creds ยท Config: ~/.openclaw/config/ghost/config.json
Load this skill immediately when the user says anything like:
python3 scripts/ghost.py config # verify credentials + active config
python3 scripts/ghost.py site # test connection + show site info
python3 scripts/ghost.py posts --limit 3 --fields "id,title,status"
python3 scripts/setup.py # interactive: credentials + permissions + connection test
python3 scripts/init.py # validate all configured permissions against live instance
init.py only runs write/delete tests when
allow_delete=true. Whenallow_delete=false, write tests are skipped - no test artifacts are created, so none can be left behind.
Manual - ~/.openclaw/secrets/ghost_creds (chmod 600):
GHOST_URL=https://your-ghost.example.com
GHOST_ADMIN_KEY=id:secret_hex
Admin API Key: Ghost Admin โ Settings โ Integrations โ Add custom integration โ copy Admin API Key.
config.json - behavior restrictions:
| Key | Default | Effect |
|-----|---------|--------|
| allow_publish | false | allow status=published (enable explicitly to publish) |
| allow_delete | false | allow delete posts/pages/tags |
| allow_member_access | false | enable member read/write |
| default_status | "draft" | status applied when not specified |
| default_tags | [] | tags always merged into new posts |
| readonly_mode | false | override: block all writes |
The skill reads and writes the following paths. All usage is intentional and documented:
| Path | Written by | Purpose |
|------|-----------|---------|
| ~/.openclaw/secrets/ghost_creds | setup.py | Ghost credentials (GHOST_URL, GHOST_ADMIN_KEY). chmod 600. Never committed. |
| ~/.openclaw/config/ghost/config.json | setup.py | Behavior restrictions (allow_publish, allow_delete, etc.). No secrets. Not in skill dir - survives clawhub updates. |
Credentials can also be provided via environment variables (GHOST_URL, GHOST_ADMIN_KEY). The skill checks env vars first.
Cleanup on uninstall: clawhub uninstall ghost-admin removes the skill directory. To also remove credentials and config:
python3 scripts/setup.py --cleanup
On reinstall, any existing config at ~/.openclaw/config/ghost/config.json is picked up automatically.
from scripts.ghost import GhostClient
gc = GhostClient()
post = gc.create_post("My Title", html="<p>Body</p>", status="draft")
gc.publish_post(post["id"])
# Posts
python3 scripts/ghost.py posts --status published --limit 10
python3 scripts/ghost.py posts --tag devops --fields "id,title,published_at"
python3 scripts/ghost.py post <id_or_slug>
python3 scripts/ghost.py post-create "Title" --html "<p>...</p>" --status draft
python3 scripts/ghost.py post-create "Title" --html-file body.html --tags "DevOps,Linux"
python3 scripts/ghost.py post-create "Title" --html-file body.html --feature-image "https://..."
python3 scripts/ghost.py post-update <id> --fields-json '{"title":"New","custom_excerpt":"..."}'
python3 scripts/ghost.py post-publish <id>
python3 scripts/ghost.py post-unpublish <id>
python3 scripts/ghost.py post-delete <id> # requires allow_delete: true
# Pages
python3 scripts/ghost.py pages
python3 scripts/ghost.py page-create "About" --html "<p>...</p>"
python3 scripts/ghost.py page-publish <id>
# Tags
python3 scripts/ghost.py tags
python3 scripts/ghost.py tag-create "DevOps" --slug devops --desc "DevOps content"
python3 scripts/ghost.py tag-delete <id> # requires allow_delete: true
# Images
python3 scripts/ghost.py image-upload ./image.png --alt "Description"
# Members & newsletters (read)
python3 scripts/ghost.py members --limit 20 # requires allow_member_access: true
python3 scripts/ghost.py newsletters
python3 scripts/ghost.py tiers
# Account
python3 scripts/ghost.py site
python3 scripts/ghost.py me
python3 scripts/ghost.py config
gc = GhostClient()
# 1. Create draft
post = gc.create_post(
title="My Article",
html=article_html,
tags=[{"name": "DevOps"}, {"name": "Linux"}],
meta_description="Short SEO description",
status="draft",
)
draft_url = f"{gc.base_url}/ghost/#/editor/post/{post['id']}"
# 2. Return preview link to user for review
# โ f"Draft created: {draft_url}"
# 3. After user approval:
gc.publish_post(post["id"])
# โ f"Published: {post['url']}"
# Create a post with full SEO metadata
post = gc.create_post(
title="Why Rust is Taking Over Systems Programming",
html=content_html,
custom_excerpt="A technical deep-dive into Rust's memory model and adoption trends.",
meta_title="Rust Systems Programming 2025",
meta_description="Why Rust is replacing C++ in systems programming in 2025.",
og_title="Rust is Taking Over Systems Programming",
tags=[{"name": "Rust"}, {"name": "Systems"}],
feature_image="https://example.com/rust.png",
status="draft",
)
result = gc.list_posts(limit="all", tag="devops", fields="id,title,status,published_at")
posts = result["posts"]
drafts = [p for p in posts if p["status"] == "draft"]
published = [p for p in posts if p["status"] == "published"]
# โ summarize backlog for user
for name in ["DevOps", "Security", "Linux", "Cloud"]:
try:
gc.create_tag(name, slug=name.lower())
except Exception:
pass # already exists
allow_publish: false + default_status: draft for a "suggest only" modedefault_tags in config for auto-tagging (e.g. always add "AI-assisted")posts --status draft to surface the content backlog for triageupdated_at conflict guard: update_post/update_page auto-fetches updated_at if omitted.html import works perfectly for agent-generated content.allow_publish: false: Status is silently capped to "draft" - no error raised.--slug for clean URLs.| Skill | Workflow |
|-------|----------|
| summarize | Summarize a URL / PDF โ draft a Ghost post from the summary |
| tavily-search | Research a topic โ structured Ghost draft with sources |
| nextcloud | Save draft .md to NC โ review โ publish to Ghost |
| gmail | Forward a newsletter / article โ draft Ghost post from it |
| api-gateway (linkedin) | Publish Ghost post โ cross-post excerpt to LinkedIn |
See references/api.md for endpoint details, NQL filters, field list, and error codes.
See references/troubleshooting.md for common errors and fixes.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/snapshot"
curl -s "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/contract"
curl -s "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:38:20.946Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Rwx G",
"href": "https://github.com/rwx-g/openclaw-skill-ghost",
"sourceUrl": "https://github.com/rwx-g/openclaw-skill-ghost",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-03-01T06:05:57.157Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-03-01T06:05:57.157Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-ghost/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to ghost and adjacent AI workflows.