{
  "schemaVersion": "1.0",
  "item": {
    "slug": "strapi",
    "name": "Strapi CMS",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ilya-ryzhov/strapi",
    "canonicalUrl": "https://clawhub.ai/ilya-ryzhov/strapi",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/strapi",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=strapi",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "claw.json",
      "examples/usage.md",
      "instructions.md",
      "package-lock.json"
    ],
    "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": "strapi",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T12:24:25.496Z",
      "expiresAt": "2026-05-16T12:24:25.496Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=strapi",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=strapi",
        "contentDisposition": "attachment; filename=\"strapi-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "strapi"
      },
      "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/strapi"
    },
    "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/strapi",
    "agentPageUrl": "https://openagent3.xyz/skills/strapi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/strapi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/strapi/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": "Strapi CMS Skill",
        "body": "Manage content in a Strapi headless CMS instance via the official @strapi/client SDK."
      },
      {
        "title": "Setup",
        "body": "During installation, enter your Strapi API Token in the API Key field.\nThen add STRAPI_BASE_URL to the env section:\n\n{\n  skills: {\n    entries: {\n      strapi: {\n        enabled: true,\n        apiKey: \"your-strapi-api-token\",     // → STRAPI_API_TOKEN\n        env: {\n          STRAPI_BASE_URL: \"http://localhost:1337/api\"\n        }\n      }\n    }\n  }\n}"
      },
      {
        "title": "Capabilities",
        "body": "Collection types: find, findOne, create, update, delete entries\nSingle types: find, update, delete the document\nContent introspection: discover types, schemas, components, relations, inspect real data\nSchema management: create/update/delete content types, components, fields (destructive)\nForm layout: configure edit form field order, sizes, labels, descriptions (local/dev only)\nDraft & publish: list drafts, publish, unpublish, create as draft or published\nFiles: list, get, upload (local path or URL), update metadata, delete media files\nUsers & Permissions: list, create, update, delete end users; view roles; login, register, password reset\nLocales (i18n): list, create, delete locales\nLocalized content: CRUD per locale, translation status, fetch all locales at once\nRaw fetch: direct HTTP to any Strapi endpoint"
      },
      {
        "title": "Usage",
        "body": "See instructions.md for full agent instructions.\nSee examples/usage.md for conversation examples."
      }
    ],
    "body": "Strapi CMS Skill\n\nManage content in a Strapi headless CMS instance via the official @strapi/client SDK.\n\nSetup\n\nDuring installation, enter your Strapi API Token in the API Key field. Then add STRAPI_BASE_URL to the env section:\n\n{\n  skills: {\n    entries: {\n      strapi: {\n        enabled: true,\n        apiKey: \"your-strapi-api-token\",     // → STRAPI_API_TOKEN\n        env: {\n          STRAPI_BASE_URL: \"http://localhost:1337/api\"\n        }\n      }\n    }\n  }\n}\n\nCapabilities\nCollection types: find, findOne, create, update, delete entries\nSingle types: find, update, delete the document\nContent introspection: discover types, schemas, components, relations, inspect real data\nSchema management: create/update/delete content types, components, fields (destructive)\nForm layout: configure edit form field order, sizes, labels, descriptions (local/dev only)\nDraft & publish: list drafts, publish, unpublish, create as draft or published\nFiles: list, get, upload (local path or URL), update metadata, delete media files\nUsers & Permissions: list, create, update, delete end users; view roles; login, register, password reset\nLocales (i18n): list, create, delete locales\nLocalized content: CRUD per locale, translation status, fetch all locales at once\nRaw fetch: direct HTTP to any Strapi endpoint\nUsage\n\nSee instructions.md for full agent instructions. See examples/usage.md for conversation examples."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ilya-ryzhov/strapi",
    "publisherUrl": "https://clawhub.ai/ilya-ryzhov/strapi",
    "owner": "ilya-ryzhov",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/strapi",
    "downloadUrl": "https://openagent3.xyz/downloads/strapi",
    "agentUrl": "https://openagent3.xyz/skills/strapi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/strapi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/strapi/agent.md"
  }
}