# Send Go Security Vulnerability to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/go-security-vulnerability",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go-security-vulnerability",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "go-security-vulnerability",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:08:39.486Z",
      "expiresAt": "2026-05-06T07:08:39.486Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go-security-vulnerability",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go-security-vulnerability",
        "contentDisposition": "attachment; filename=\"go-security-vulnerability-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "go-security-vulnerability"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Go Security Vulnerability Skill

Use Go tooling to identify, assess, and fix security vulnerabilities in Go modules. This skill helps detect and remediate vulnerabilities while maintaining application functionality.

### Vulnerability Detection

Scan for vulnerabilities in your Go project:

go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...

Check specific modules for known vulnerabilities:

govulncheck -show verbose ./...

### Assessment Process

Identify Affected Packages: Determine which dependencies contain vulnerabilities
Check Severity: Review the CVE details and potential impact
Verify Usage: Confirm if the vulnerable functions are actually used in your code
Plan Remediation: Choose the appropriate fix strategy

### Direct Dependency Update

Update vulnerable packages to secure versions:

go get -u vulnerable/package@latest
go mod tidy

### Transitive Dependency Handling

For vulnerabilities in transitive dependencies:

go mod why vulnerable/package  # Understand why it's included
go mod edit -replace vulnerable/package=newer-version  # Replace if needed
go mod tidy

### Removal Strategy

If a dependency is unused or can be replaced:

Remove direct imports of the vulnerable code
Run go mod tidy to clean up unused dependencies
Verify application functionality remains intact

### Verification Steps

After applying fixes:

# Verify no vulnerabilities remain
govulncheck ./...

# Ensure application still builds
go build ./...

# Run tests to verify functionality
go test ./...

### JWT Libraries

Issue: github.com/golang-jwt/jwt GO-2025-3553 (excessive memory allocation)
Fix: Update to newer version or switch to golang.org/x/oauth2 alternatives

### Standard Library Updates

Keep Go version updated for security patches
Run go vuln to check for stdlib vulnerabilities

### Best Practices

Regularly scan dependencies with govulncheck
Keep dependencies updated with go get -u
Use go mod tidy to remove unused dependencies
Test thoroughly after vulnerability fixes
Monitor for new vulnerabilities with automated tools
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: irook661
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:08:39.486Z
- Expires at: 2026-05-06T07:08:39.486Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/go-security-vulnerability)
- [Send to Agent page](https://openagent3.xyz/skills/go-security-vulnerability/agent)
- [JSON manifest](https://openagent3.xyz/skills/go-security-vulnerability/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/go-security-vulnerability/agent.md)
- [Download page](https://openagent3.xyz/downloads/go-security-vulnerability)