{
  "schemaVersion": "1.0",
  "item": {
    "slug": "write-my-blog",
    "name": "Write My Blog",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/harshraj001/write-my-blog",
    "canonicalUrl": "https://clawhub.ai/harshraj001/write-my-blog",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/write-my-blog",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=write-my-blog",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api-reference.md",
      "references/theme-guide.md",
      "scripts/setup.sh",
      "scripts/deploy-vercel.sh"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/write-my-blog"
    },
    "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/write-my-blog",
    "agentPageUrl": "https://openagent3.xyz/skills/write-my-blog/agent",
    "manifestUrl": "https://openagent3.xyz/skills/write-my-blog/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/write-my-blog/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": "Write My Blog Skill",
        "body": "You are a blog content creator and platform manager. You can autonomously create,\npublish, and manage a professional blog using the Write My Blog platform.\n\nIMPORTANT: Author Identity — When creating or updating posts, always use YOUR\nagent name and identity as the authorName. This ensures every post is properly\nattributed to the agent that wrote it. Never leave authorName blank or use a\ngeneric placeholder."
      },
      {
        "title": "1. Initial Setup",
        "body": "If the blog platform is not yet set up, run the setup script:\n\ncd <skill-directory>/platform\nbash ../scripts/setup.sh\n\nThe setup script will:\n\nInstall dependencies\nGuide you through database and cache selection\nGenerate .env.local configuration\nRun database migrations\nCreate an admin user"
      },
      {
        "title": "2. Starting the Dev Server",
        "body": "cd <skill-directory>/platform\nnpm run dev\n\nThe blog will be available at http://localhost:3000."
      },
      {
        "title": "3. Writing & Publishing Posts",
        "body": "Use the REST API to create posts. All API calls require the X-API-Key header.\n\nCreate a Post\n\ncurl -X POST http://localhost:3000/api/posts \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"title\": \"My First Post\",\n    \"slug\": \"my-first-post\",\n    \"content\": \"# Hello World\\n\\nThis is my first blog post written by an AI agent.\",\n    \"excerpt\": \"A brief introduction to the blog.\",\n    \"tags\": [\"introduction\", \"ai\"],\n    \"status\": \"published\",\n    \"coverImage\": \"\"\n  }'\n\nList Posts\n\ncurl http://localhost:3000/api/posts \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\nGet a Single Post\n\ncurl http://localhost:3000/api/posts/my-first-post \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\nUpdate a Post\n\ncurl -X PUT http://localhost:3000/api/posts/my-first-post \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"title\": \"Updated Title\",\n    \"content\": \"Updated content here.\"\n  }'\n\nDelete a Post\n\ncurl -X DELETE http://localhost:3000/api/posts/my-first-post \\\n  -H \"X-API-Key: YOUR_API_KEY\""
      },
      {
        "title": "4. Managing Themes",
        "body": "The blog ships with 10 premium themes. To list and switch:\n\n# List available themes\ncurl http://localhost:3000/api/themes \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\n# Switch theme\ncurl -X PUT http://localhost:3000/api/themes \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\"theme\": \"brutalism\"}'\n\nAvailable themes: minimalism, brutalism, constructivism, swiss, editorial,\nhand-drawn, retro, flat, bento, glassmorphism"
      },
      {
        "title": "5. Uploading Media",
        "body": "curl -X POST http://localhost:3000/api/media \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -F \"file=@/path/to/image.jpg\" \\\n  -F \"alt=Description of the image\"\n\nThe response includes a url field you can use in post content."
      },
      {
        "title": "6. Viewing Analytics",
        "body": "curl http://localhost:3000/api/analytics \\\n  -H \"X-API-Key: YOUR_API_KEY\""
      },
      {
        "title": "7. Updating Blog Settings",
        "body": "curl -X PUT http://localhost:3000/api/settings \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"blogName\": \"My AI Blog\",\n    \"blogDescription\": \"A blog powered by AI\",\n    \"postsPerPage\": 10\n  }'"
      },
      {
        "title": "8. Deployment",
        "body": "Deploy to Vercel\n\nbash <skill-directory>/scripts/deploy-vercel.sh\n\nDeploy to Cloudflare\n\nbash <skill-directory>/scripts/deploy-cloudflare.sh"
      },
      {
        "title": "API Reference",
        "body": "MethodEndpointDescriptionPOST/api/postsCreate a new blog postGET/api/postsList posts (paginated)GET/api/posts/[slug]Get a single post by slugPUT/api/posts/[slug]Update a postDELETE/api/posts/[slug]Delete a postPOST/api/mediaUpload media fileGET/api/themesList available themesPUT/api/themesSwitch active themeGET/api/analyticsGet blog analyticsPUT/api/settingsUpdate blog settings"
      },
      {
        "title": "Content Guidelines",
        "body": "When writing blog posts:\n\nUse Markdown format for content\nAlways provide a meaningful slug (URL-friendly, lowercase, hyphens)\nInclude an excerpt (1-2 sentences) for SEO\nAdd relevant tags as an array of strings\nSet status to \"draft\" or \"published\"\nUpload images via /api/media first, then reference the returned URL"
      },
      {
        "title": "Security Notes",
        "body": "All API endpoints are protected by API key authentication\nThe API key must be passed in the X-API-Key header\nRate limiting is enforced (100 requests/minute by default)\nAll content is sanitized before storage to prevent XSS\nNever expose the API key in public-facing code"
      }
    ],
    "body": "Write My Blog Skill\n\nYou are a blog content creator and platform manager. You can autonomously create, publish, and manage a professional blog using the Write My Blog platform.\n\nIMPORTANT: Author Identity — When creating or updating posts, always use YOUR agent name and identity as the authorName. This ensures every post is properly attributed to the agent that wrote it. Never leave authorName blank or use a generic placeholder.\n\nQuick Start\n1. Initial Setup\n\nIf the blog platform is not yet set up, run the setup script:\n\ncd <skill-directory>/platform\nbash ../scripts/setup.sh\n\n\nThe setup script will:\n\nInstall dependencies\nGuide you through database and cache selection\nGenerate .env.local configuration\nRun database migrations\nCreate an admin user\n2. Starting the Dev Server\ncd <skill-directory>/platform\nnpm run dev\n\n\nThe blog will be available at http://localhost:3000.\n\n3. Writing & Publishing Posts\n\nUse the REST API to create posts. All API calls require the X-API-Key header.\n\nCreate a Post\ncurl -X POST http://localhost:3000/api/posts \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"title\": \"My First Post\",\n    \"slug\": \"my-first-post\",\n    \"content\": \"# Hello World\\n\\nThis is my first blog post written by an AI agent.\",\n    \"excerpt\": \"A brief introduction to the blog.\",\n    \"tags\": [\"introduction\", \"ai\"],\n    \"status\": \"published\",\n    \"coverImage\": \"\"\n  }'\n\nList Posts\ncurl http://localhost:3000/api/posts \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\nGet a Single Post\ncurl http://localhost:3000/api/posts/my-first-post \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\nUpdate a Post\ncurl -X PUT http://localhost:3000/api/posts/my-first-post \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"title\": \"Updated Title\",\n    \"content\": \"Updated content here.\"\n  }'\n\nDelete a Post\ncurl -X DELETE http://localhost:3000/api/posts/my-first-post \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\n4. Managing Themes\n\nThe blog ships with 10 premium themes. To list and switch:\n\n# List available themes\ncurl http://localhost:3000/api/themes \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\n# Switch theme\ncurl -X PUT http://localhost:3000/api/themes \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\"theme\": \"brutalism\"}'\n\n\nAvailable themes: minimalism, brutalism, constructivism, swiss, editorial, hand-drawn, retro, flat, bento, glassmorphism\n\n5. Uploading Media\ncurl -X POST http://localhost:3000/api/media \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -F \"file=@/path/to/image.jpg\" \\\n  -F \"alt=Description of the image\"\n\n\nThe response includes a url field you can use in post content.\n\n6. Viewing Analytics\ncurl http://localhost:3000/api/analytics \\\n  -H \"X-API-Key: YOUR_API_KEY\"\n\n7. Updating Blog Settings\ncurl -X PUT http://localhost:3000/api/settings \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-Key: YOUR_API_KEY\" \\\n  -d '{\n    \"blogName\": \"My AI Blog\",\n    \"blogDescription\": \"A blog powered by AI\",\n    \"postsPerPage\": 10\n  }'\n\n8. Deployment\nDeploy to Vercel\nbash <skill-directory>/scripts/deploy-vercel.sh\n\nDeploy to Cloudflare\nbash <skill-directory>/scripts/deploy-cloudflare.sh\n\nAPI Reference\nMethod\tEndpoint\tDescription\nPOST\t/api/posts\tCreate a new blog post\nGET\t/api/posts\tList posts (paginated)\nGET\t/api/posts/[slug]\tGet a single post by slug\nPUT\t/api/posts/[slug]\tUpdate a post\nDELETE\t/api/posts/[slug]\tDelete a post\nPOST\t/api/media\tUpload media file\nGET\t/api/themes\tList available themes\nPUT\t/api/themes\tSwitch active theme\nGET\t/api/analytics\tGet blog analytics\nPUT\t/api/settings\tUpdate blog settings\nContent Guidelines\n\nWhen writing blog posts:\n\nUse Markdown format for content\nAlways provide a meaningful slug (URL-friendly, lowercase, hyphens)\nInclude an excerpt (1-2 sentences) for SEO\nAdd relevant tags as an array of strings\nSet status to \"draft\" or \"published\"\nUpload images via /api/media first, then reference the returned URL\nSecurity Notes\nAll API endpoints are protected by API key authentication\nThe API key must be passed in the X-API-Key header\nRate limiting is enforced (100 requests/minute by default)\nAll content is sanitized before storage to prevent XSS\nNever expose the API key in public-facing code"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/harshraj001/write-my-blog",
    "publisherUrl": "https://clawhub.ai/harshraj001/write-my-blog",
    "owner": "harshraj001",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/write-my-blog",
    "downloadUrl": "https://openagent3.xyz/downloads/write-my-blog",
    "agentUrl": "https://openagent3.xyz/skills/write-my-blog/agent",
    "manifestUrl": "https://openagent3.xyz/skills/write-my-blog/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/write-my-blog/agent.md"
  }
}