{
  "schemaVersion": "1.0",
  "item": {
    "slug": "go-security-vulnerability",
    "name": "Go Security Vulnerability",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/irook661/go-security-vulnerability",
    "canonicalUrl": "https://clawhub.ai/irook661/go-security-vulnerability",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/go-security-vulnerability",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go-security-vulnerability",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/go-security-vulnerability"
    },
    "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/go-security-vulnerability",
    "agentPageUrl": "https://openagent3.xyz/skills/go-security-vulnerability/agent",
    "manifestUrl": "https://openagent3.xyz/skills/go-security-vulnerability/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/go-security-vulnerability/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": "Go Security Vulnerability Skill",
        "body": "Use Go tooling to identify, assess, and fix security vulnerabilities in Go modules. This skill helps detect and remediate vulnerabilities while maintaining application functionality."
      },
      {
        "title": "Vulnerability Detection",
        "body": "Scan for vulnerabilities in your Go project:\n\ngo install golang.org/x/vuln/cmd/govulncheck@latest\ngovulncheck ./...\n\nCheck specific modules for known vulnerabilities:\n\ngovulncheck -show verbose ./..."
      },
      {
        "title": "Assessment Process",
        "body": "Identify Affected Packages: Determine which dependencies contain vulnerabilities\nCheck Severity: Review the CVE details and potential impact\nVerify Usage: Confirm if the vulnerable functions are actually used in your code\nPlan Remediation: Choose the appropriate fix strategy"
      },
      {
        "title": "Direct Dependency Update",
        "body": "Update vulnerable packages to secure versions:\n\ngo get -u vulnerable/package@latest\ngo mod tidy"
      },
      {
        "title": "Transitive Dependency Handling",
        "body": "For vulnerabilities in transitive dependencies:\n\ngo mod why vulnerable/package  # Understand why it's included\ngo mod edit -replace vulnerable/package=newer-version  # Replace if needed\ngo mod tidy"
      },
      {
        "title": "Removal Strategy",
        "body": "If a dependency is unused or can be replaced:\n\nRemove direct imports of the vulnerable code\nRun go mod tidy to clean up unused dependencies\nVerify application functionality remains intact"
      },
      {
        "title": "Verification Steps",
        "body": "After applying fixes:\n\n# Verify no vulnerabilities remain\ngovulncheck ./...\n\n# Ensure application still builds\ngo build ./...\n\n# Run tests to verify functionality\ngo test ./..."
      },
      {
        "title": "JWT Libraries",
        "body": "Issue: github.com/golang-jwt/jwt GO-2025-3553 (excessive memory allocation)\nFix: Update to newer version or switch to golang.org/x/oauth2 alternatives"
      },
      {
        "title": "Standard Library Updates",
        "body": "Keep Go version updated for security patches\nRun go vuln to check for stdlib vulnerabilities"
      },
      {
        "title": "Best Practices",
        "body": "Regularly scan dependencies with govulncheck\nKeep dependencies updated with go get -u\nUse go mod tidy to remove unused dependencies\nTest thoroughly after vulnerability fixes\nMonitor for new vulnerabilities with automated tools"
      }
    ],
    "body": "Go Security Vulnerability Skill\n\nUse Go tooling to identify, assess, and fix security vulnerabilities in Go modules. This skill helps detect and remediate vulnerabilities while maintaining application functionality.\n\nVulnerability Detection\n\nScan for vulnerabilities in your Go project:\n\ngo install golang.org/x/vuln/cmd/govulncheck@latest\ngovulncheck ./...\n\n\nCheck specific modules for known vulnerabilities:\n\ngovulncheck -show verbose ./...\n\nAssessment Process\nIdentify Affected Packages: Determine which dependencies contain vulnerabilities\nCheck Severity: Review the CVE details and potential impact\nVerify Usage: Confirm if the vulnerable functions are actually used in your code\nPlan Remediation: Choose the appropriate fix strategy\nCommon Fix Strategies\nDirect Dependency Update\n\nUpdate vulnerable packages to secure versions:\n\ngo get -u vulnerable/package@latest\ngo mod tidy\n\nTransitive Dependency Handling\n\nFor vulnerabilities in transitive dependencies:\n\ngo mod why vulnerable/package  # Understand why it's included\ngo mod edit -replace vulnerable/package=newer-version  # Replace if needed\ngo mod tidy\n\nRemoval Strategy\n\nIf a dependency is unused or can be replaced:\n\nRemove direct imports of the vulnerable code\nRun go mod tidy to clean up unused dependencies\nVerify application functionality remains intact\nVerification Steps\n\nAfter applying fixes:\n\n# Verify no vulnerabilities remain\ngovulncheck ./...\n\n# Ensure application still builds\ngo build ./...\n\n# Run tests to verify functionality\ngo test ./...\n\nCommon Vulnerabilities\nJWT Libraries\nIssue: github.com/golang-jwt/jwt GO-2025-3553 (excessive memory allocation)\nFix: Update to newer version or switch to golang.org/x/oauth2 alternatives\nStandard Library Updates\nKeep Go version updated for security patches\nRun go vuln to check for stdlib vulnerabilities\nBest Practices\nRegularly scan dependencies with govulncheck\nKeep dependencies updated with go get -u\nUse go mod tidy to remove unused dependencies\nTest thoroughly after vulnerability fixes\nMonitor for new vulnerabilities with automated tools"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/irook661/go-security-vulnerability",
    "publisherUrl": "https://clawhub.ai/irook661/go-security-vulnerability",
    "owner": "irook661",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/go-security-vulnerability",
    "downloadUrl": "https://openagent3.xyz/downloads/go-security-vulnerability",
    "agentUrl": "https://openagent3.xyz/skills/go-security-vulnerability/agent",
    "manifestUrl": "https://openagent3.xyz/skills/go-security-vulnerability/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/go-security-vulnerability/agent.md"
  }
}