{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ecto",
    "name": "Ecto",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/visionik/ecto",
    "canonicalUrl": "https://clawhub.ai/visionik/ecto",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ecto",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecto",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "Taskfile.yml",
      "cmd/auth.go",
      "cmd/auth_test.go"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "ecto",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T19:20:26.121Z",
      "expiresAt": "2026-05-09T19:20:26.121Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecto",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ecto",
        "contentDisposition": "attachment; filename=\"ecto-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ecto"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ecto"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ecto",
    "agentPageUrl": "https://openagent3.xyz/skills/ecto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ecto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ecto/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ecto - Ghost.io Admin API CLI",
        "body": "Manage Ghost.io blogs via the Admin API. Supports multi-site configuration, markdown-to-HTML conversion, and JSON output for scripting."
      },
      {
        "title": "Authentication",
        "body": "ecto auth add <name> --url <ghost-url> --key <admin-api-key>\necto auth list\necto auth default <name>\necto auth remove <name>\n\nEnvironment overrides: GHOST_URL, GHOST_ADMIN_KEY, GHOST_SITE"
      },
      {
        "title": "Posts",
        "body": "ecto posts [--status draft|published|scheduled|all] [--limit N] [--json]\necto post <id|slug> [--json] [--body]\necto post create --title \"Title\" [--markdown-file file.md] [--stdin-format markdown] [--tag tag1,tag2] [--status draft|published]\necto post edit <id|slug> [--title \"New Title\"] [--markdown-file file.md] [--status draft|published]\necto post delete <id|slug> [--force]\necto post publish <id|slug>\necto post unpublish <id|slug>\necto post schedule <id|slug> --at \"2025-01-25T10:00:00Z\""
      },
      {
        "title": "Pages",
        "body": "ecto pages [--status draft|published|all] [--limit N] [--json]\necto page <id|slug> [--json] [--body]\necto page create --title \"Title\" [--markdown-file file.md] [--status draft|published]\necto page edit <id|slug> [--title \"New Title\"] [--markdown-file file.md]\necto page delete <id|slug> [--force]\necto page publish <id|slug>"
      },
      {
        "title": "Tags",
        "body": "ecto tags [--json]\necto tag <id|slug> [--json]\necto tag create --name \"Tag Name\" [--description \"desc\"]\necto tag edit <id|slug> [--name \"New Name\"] [--description \"desc\"]\necto tag delete <id|slug> [--force]"
      },
      {
        "title": "Images",
        "body": "ecto image upload <path> [--json]"
      },
      {
        "title": "Site Info",
        "body": "ecto site [--json]\necto settings [--json]\necto users [--json]\necto user <id|slug> [--json]\necto newsletters [--json]\necto newsletter <id> [--json]"
      },
      {
        "title": "Webhooks",
        "body": "ecto webhook create --event <event> --target-url <url> [--name \"Hook Name\"]\necto webhook delete <id> [--force]\n\nEvents: post.published, post.unpublished, post.added, post.deleted, page.published, etc."
      },
      {
        "title": "Multi-Site",
        "body": "Use --site <name> to target a specific configured site:\n\necto posts --site blog2"
      },
      {
        "title": "Common Workflows",
        "body": "Create and publish from markdown:\n\necto post create --title \"My Post\" --markdown-file post.md --tag blog --status published\n\nPipe content from stdin:\n\necho \"# Hello World\" | ecto post create --title \"Quick Post\" --stdin-format markdown\n\nSchedule a post:\n\necto post schedule future-post --at \"2025-02-01T09:00:00Z\"\n\nBatch publish drafts:\n\nfor id in $(ecto posts --status draft --json | jq -r '.posts[].id'); do\n  ecto post publish \"$id\"\ndone"
      },
      {
        "title": "Limitations",
        "body": "Ghost API does not support listing images or webhooks\nMember/subscription management not available via Admin API\nRead-only access to users"
      },
      {
        "title": "Full Docs",
        "body": "Run ecto --ai-help for comprehensive documentation."
      }
    ],
    "body": "ecto - Ghost.io Admin API CLI\n\nManage Ghost.io blogs via the Admin API. Supports multi-site configuration, markdown-to-HTML conversion, and JSON output for scripting.\n\nQuick Reference\nAuthentication\necto auth add <name> --url <ghost-url> --key <admin-api-key>\necto auth list\necto auth default <name>\necto auth remove <name>\n\n\nEnvironment overrides: GHOST_URL, GHOST_ADMIN_KEY, GHOST_SITE\n\nPosts\necto posts [--status draft|published|scheduled|all] [--limit N] [--json]\necto post <id|slug> [--json] [--body]\necto post create --title \"Title\" [--markdown-file file.md] [--stdin-format markdown] [--tag tag1,tag2] [--status draft|published]\necto post edit <id|slug> [--title \"New Title\"] [--markdown-file file.md] [--status draft|published]\necto post delete <id|slug> [--force]\necto post publish <id|slug>\necto post unpublish <id|slug>\necto post schedule <id|slug> --at \"2025-01-25T10:00:00Z\"\n\nPages\necto pages [--status draft|published|all] [--limit N] [--json]\necto page <id|slug> [--json] [--body]\necto page create --title \"Title\" [--markdown-file file.md] [--status draft|published]\necto page edit <id|slug> [--title \"New Title\"] [--markdown-file file.md]\necto page delete <id|slug> [--force]\necto page publish <id|slug>\n\nTags\necto tags [--json]\necto tag <id|slug> [--json]\necto tag create --name \"Tag Name\" [--description \"desc\"]\necto tag edit <id|slug> [--name \"New Name\"] [--description \"desc\"]\necto tag delete <id|slug> [--force]\n\nImages\necto image upload <path> [--json]\n\nSite Info\necto site [--json]\necto settings [--json]\necto users [--json]\necto user <id|slug> [--json]\necto newsletters [--json]\necto newsletter <id> [--json]\n\nWebhooks\necto webhook create --event <event> --target-url <url> [--name \"Hook Name\"]\necto webhook delete <id> [--force]\n\n\nEvents: post.published, post.unpublished, post.added, post.deleted, page.published, etc.\n\nMulti-Site\n\nUse --site <name> to target a specific configured site:\n\necto posts --site blog2\n\nCommon Workflows\n\nCreate and publish from markdown:\n\necto post create --title \"My Post\" --markdown-file post.md --tag blog --status published\n\n\nPipe content from stdin:\n\necho \"# Hello World\" | ecto post create --title \"Quick Post\" --stdin-format markdown\n\n\nSchedule a post:\n\necto post schedule future-post --at \"2025-02-01T09:00:00Z\"\n\n\nBatch publish drafts:\n\nfor id in $(ecto posts --status draft --json | jq -r '.posts[].id'); do\n  ecto post publish \"$id\"\ndone\n\nLimitations\nGhost API does not support listing images or webhooks\nMember/subscription management not available via Admin API\nRead-only access to users\nFull Docs\n\nRun ecto --ai-help for comprehensive documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/visionik/ecto",
    "publisherUrl": "https://clawhub.ai/visionik/ecto",
    "owner": "visionik",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ecto",
    "downloadUrl": "https://openagent3.xyz/downloads/ecto",
    "agentUrl": "https://openagent3.xyz/skills/ecto/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ecto/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ecto/agent.md"
  }
}