{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openssl",
    "name": "Openssl",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Asleep123/openssl",
    "canonicalUrl": "https://clawhub.ai/Asleep123/openssl",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openssl",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openssl",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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",
      "slug": "openssl",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T17:58:29.192Z",
      "expiresAt": "2026-05-13T17:58:29.192Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openssl",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openssl",
        "contentDisposition": "attachment; filename=\"openssl-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openssl"
      },
      "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/openssl"
    },
    "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/openssl",
    "agentPageUrl": "https://openagent3.xyz/skills/openssl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openssl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openssl/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": "OpenSSL Secure Generation",
        "body": "Generate cryptographically secure random data using openssl rand."
      },
      {
        "title": "Password/Secret Generation",
        "body": "# 32 random bytes as base64 (43 chars, URL-safe with tr)\nopenssl rand -base64 32 | tr '+/' '-_' | tr -d '='\n\n# 24 random bytes as hex (48 chars)\nopenssl rand -hex 24\n\n# alphanumeric password (32 chars)\nopenssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c 32"
      },
      {
        "title": "Common Lengths",
        "body": "Use CaseCommandPassword (strong)openssl rand -base64 24API keyopenssl rand -hex 32Session tokenopenssl rand -base64 48Short PIN (8 digits)`openssl rand -hex 4"
      },
      {
        "title": "Notes",
        "body": "-base64 outputs ~1.33x the byte count in characters\n-hex outputs 2x the byte count in characters\nPipe through tr -dc to filter character sets\nAlways use at least 16 bytes (128 bits) for secrets"
      }
    ],
    "body": "OpenSSL Secure Generation\n\nGenerate cryptographically secure random data using openssl rand.\n\nPassword/Secret Generation\n# 32 random bytes as base64 (43 chars, URL-safe with tr)\nopenssl rand -base64 32 | tr '+/' '-_' | tr -d '='\n\n# 24 random bytes as hex (48 chars)\nopenssl rand -hex 24\n\n# alphanumeric password (32 chars)\nopenssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c 32\n\nCommon Lengths\nUse Case\tCommand\nPassword (strong)\topenssl rand -base64 24\nAPI key\topenssl rand -hex 32\nSession token\topenssl rand -base64 48\nShort PIN (8 digits)\t`openssl rand -hex 4\nNotes\n-base64 outputs ~1.33x the byte count in characters\n-hex outputs 2x the byte count in characters\nPipe through tr -dc to filter character sets\nAlways use at least 16 bytes (128 bits) for secrets"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Asleep123/openssl",
    "publisherUrl": "https://clawhub.ai/Asleep123/openssl",
    "owner": "Asleep123",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openssl",
    "downloadUrl": "https://openagent3.xyz/downloads/openssl",
    "agentUrl": "https://openagent3.xyz/skills/openssl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openssl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openssl/agent.md"
  }
}