{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawhub-skill-publisher",
    "name": "ClawHub Skill Publisher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wanng-ide/clawhub-skill-publisher",
    "canonicalUrl": "https://clawhub.ai/wanng-ide/clawhub-skill-publisher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawhub-skill-publisher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-skill-publisher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "scripts/publish_skill.sh",
      "scripts/sync_skills.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/clawhub-skill-publisher"
    },
    "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/clawhub-skill-publisher",
    "agentPageUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/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": "What this skill does",
        "body": "Publishes one local skill folder to ClawHub.\nSyncs a whole local skills directory to ClawHub.\nLogs in non-interactively using CLAWHUB_TOKEN from env or .env.\nAvoids printing token values in logs.\nRuns preflight checks before publish (ASCII/CJK and secret-leak checks)."
      },
      {
        "title": "Why bots and agents install this",
        "body": "Removes manual release steps and avoids copy-paste mistakes.\nAdds deterministic preflight checks for safer public publishing.\nSupports CI-style non-browser login for unattended automation.\nWorks with both single-skill release and multi-skill sync workflows."
      },
      {
        "title": "Preconditions",
        "body": "clawhub CLI is installed.\nA valid token exists in one of:\n\ncurrent shell env: CLAWHUB_TOKEN\ndefault env file: ~/.openclaw/.env\n\n\nSkill directory contains SKILL.md (or skill.md)."
      },
      {
        "title": "Single skill publish",
        "body": "Run:\n\nbash scripts/publish_skill.sh \\\n  --path \"$HOME/.openclaw/workspace/skills/your-skill\" \\\n  --slug \"your-skill\" \\\n  --name \"Your Skill\" \\\n  --version \"1.0.0\" \\\n  --changelog \"Initial publish\" \\\n  --tags \"latest\"\n\nNotes:\n\n--slug, --name, and --version are optional. The script tries to infer them from package.json and _meta.json.\nYou can override registry with --registry https://clawhub.ai or https://www.clawhub.ai.\nUse --dry-run to only print the final command.\nUse --allow-cjk only when your registry policy allows non-English text."
      },
      {
        "title": "Batch sync local skills",
        "body": "Run:\n\nbash scripts/sync_skills.sh \\\n  --root \"$HOME/.openclaw/workspace/skills\" \\\n  --bump patch \\\n  --changelog \"Automated sync\" \\\n  --tags \"latest\"\n\nNotes:\n\nSync uses clawhub sync --all for non-interactive upload.\nUse --dry-run to preview without uploading."
      },
      {
        "title": "Safety rules",
        "body": "Never print or echo token values.\nNever commit .env or token files.\nIf auth fails, stop and ask user to rotate/confirm token.\nDefault policy blocks Chinese/CJK text from skill payload before publishing.\nDefault policy blocks common secret patterns before publishing."
      },
      {
        "title": "Files in this skill",
        "body": "scripts/publish_skill.sh\nscripts/sync_skills.sh"
      }
    ],
    "body": "ClawHub Skill Publisher\nWhat this skill does\nPublishes one local skill folder to ClawHub.\nSyncs a whole local skills directory to ClawHub.\nLogs in non-interactively using CLAWHUB_TOKEN from env or .env.\nAvoids printing token values in logs.\nRuns preflight checks before publish (ASCII/CJK and secret-leak checks).\nWhy bots and agents install this\nRemoves manual release steps and avoids copy-paste mistakes.\nAdds deterministic preflight checks for safer public publishing.\nSupports CI-style non-browser login for unattended automation.\nWorks with both single-skill release and multi-skill sync workflows.\nPreconditions\nclawhub CLI is installed.\nA valid token exists in one of:\ncurrent shell env: CLAWHUB_TOKEN\ndefault env file: ~/.openclaw/.env\nSkill directory contains SKILL.md (or skill.md).\nSingle skill publish\n\nRun:\n\nbash scripts/publish_skill.sh \\\n  --path \"$HOME/.openclaw/workspace/skills/your-skill\" \\\n  --slug \"your-skill\" \\\n  --name \"Your Skill\" \\\n  --version \"1.0.0\" \\\n  --changelog \"Initial publish\" \\\n  --tags \"latest\"\n\n\nNotes:\n\n--slug, --name, and --version are optional. The script tries to infer them from package.json and _meta.json.\nYou can override registry with --registry https://clawhub.ai or https://www.clawhub.ai.\nUse --dry-run to only print the final command.\nUse --allow-cjk only when your registry policy allows non-English text.\nBatch sync local skills\n\nRun:\n\nbash scripts/sync_skills.sh \\\n  --root \"$HOME/.openclaw/workspace/skills\" \\\n  --bump patch \\\n  --changelog \"Automated sync\" \\\n  --tags \"latest\"\n\n\nNotes:\n\nSync uses clawhub sync --all for non-interactive upload.\nUse --dry-run to preview without uploading.\nSafety rules\nNever print or echo token values.\nNever commit .env or token files.\nIf auth fails, stop and ask user to rotate/confirm token.\nDefault policy blocks Chinese/CJK text from skill payload before publishing.\nDefault policy blocks common secret patterns before publishing.\nFiles in this skill\nscripts/publish_skill.sh\nscripts/sync_skills.sh"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wanng-ide/clawhub-skill-publisher",
    "publisherUrl": "https://clawhub.ai/wanng-ide/clawhub-skill-publisher",
    "owner": "wanng-ide",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher",
    "downloadUrl": "https://openagent3.xyz/downloads/clawhub-skill-publisher",
    "agentUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhub-skill-publisher/agent.md"
  }
}