{
  "schemaVersion": "1.0",
  "item": {
    "slug": "discord-hub-my",
    "name": "Discord Hub My",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ingejanben268/discord-hub-my",
    "canonicalUrl": "https://clawhub.ai/ingejanben268/discord-hub-my",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/discord-hub-my",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=discord-hub-my",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "discord_send.sh",
      "references/discord-api-overview.md",
      "references/discord-app-commands.md",
      "references/discord-auth-and-tokens.md"
    ],
    "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. 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. 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/discord-hub-my"
    },
    "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/discord-hub-my",
    "agentPageUrl": "https://openagent3.xyz/skills/discord-hub-my/agent",
    "manifestUrl": "https://openagent3.xyz/skills/discord-hub-my/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/discord-hub-my/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Purpose",
        "body": "Provide a production-oriented guide for building Discord bot workflows via the REST API and Interactions, focusing on professional command UX, safe operations, and direct HTTPS usage (no SDKs)."
      },
      {
        "title": "Best fit",
        "body": "You want command-first bot behavior and clear interaction flows.\nYou prefer direct HTTP requests without a library dependency.\nYou need a structured map of Discord API surfaces."
      },
      {
        "title": "Not a fit",
        "body": "You need a full SDK or gateway client implementation.\nYou plan to stream large media uploads directly."
      },
      {
        "title": "Quick orientation",
        "body": "Read references/discord-api-overview.md for base URL, versioning, and object map.\nRead references/discord-auth-and-tokens.md for token types and security boundaries.\nRead references/discord-interactions.md for interaction lifecycle and response patterns.\nRead references/discord-app-commands.md for slash, user, and message commands.\nRead references/discord-messages-components.md for messages, embeds, and components.\nRead references/discord-gateway-webhooks.md for gateway vs webhook tradeoffs.\nRead references/discord-rate-limits.md for throttling and header-based handling.\nRead references/discord-request-templates.md for HTTP payload templates.\nRead references/discord-feature-map.md for the full surface checklist."
      },
      {
        "title": "Required inputs",
        "body": "Bot token and application ID.\nInteraction endpoint public key (if using interaction webhooks).\nCommand list and UX tone.\nAllowed intents and event scope."
      },
      {
        "title": "Expected output",
        "body": "A clear bot workflow plan, command design, and operational checklist."
      },
      {
        "title": "Operational notes",
        "body": "Prefer interactions and slash commands over prefix parsing.\nAlways validate incoming interaction signatures.\nKeep payloads small and respond quickly to interactions."
      },
      {
        "title": "Security notes",
        "body": "Never log tokens or secrets.\nUse least-privilege permissions and scopes."
      }
    ],
    "body": "Discord Bot API Skill (Advanced)\nPurpose\n\nProvide a production-oriented guide for building Discord bot workflows via the REST API and Interactions, focusing on professional command UX, safe operations, and direct HTTPS usage (no SDKs).\n\nBest fit\nYou want command-first bot behavior and clear interaction flows.\nYou prefer direct HTTP requests without a library dependency.\nYou need a structured map of Discord API surfaces.\nNot a fit\nYou need a full SDK or gateway client implementation.\nYou plan to stream large media uploads directly.\nQuick orientation\nRead references/discord-api-overview.md for base URL, versioning, and object map.\nRead references/discord-auth-and-tokens.md for token types and security boundaries.\nRead references/discord-interactions.md for interaction lifecycle and response patterns.\nRead references/discord-app-commands.md for slash, user, and message commands.\nRead references/discord-messages-components.md for messages, embeds, and components.\nRead references/discord-gateway-webhooks.md for gateway vs webhook tradeoffs.\nRead references/discord-rate-limits.md for throttling and header-based handling.\nRead references/discord-request-templates.md for HTTP payload templates.\nRead references/discord-feature-map.md for the full surface checklist.\nRequired inputs\nBot token and application ID.\nInteraction endpoint public key (if using interaction webhooks).\nCommand list and UX tone.\nAllowed intents and event scope.\nExpected output\nA clear bot workflow plan, command design, and operational checklist.\nOperational notes\nPrefer interactions and slash commands over prefix parsing.\nAlways validate incoming interaction signatures.\nKeep payloads small and respond quickly to interactions.\nSecurity notes\nNever log tokens or secrets.\nUse least-privilege permissions and scopes."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ingejanben268/discord-hub-my",
    "publisherUrl": "https://clawhub.ai/ingejanben268/discord-hub-my",
    "owner": "ingejanben268",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/discord-hub-my",
    "downloadUrl": "https://openagent3.xyz/downloads/discord-hub-my",
    "agentUrl": "https://openagent3.xyz/skills/discord-hub-my/agent",
    "manifestUrl": "https://openagent3.xyz/skills/discord-hub-my/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/discord-hub-my/agent.md"
  }
}