# Send Gopls LSP to your agent
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
## Fast path
- Open the source page via Open source listing.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gopls-lsp",
    "name": "Gopls LSP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/bowen31337/gopls-lsp",
    "canonicalUrl": "https://clawhub.ai/bowen31337/gopls-lsp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gopls-lsp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gopls-lsp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gopls-lsp",
      "status": "source_issue",
      "reason": "not_found",
      "recommendedAction": "review_source",
      "checkedAt": "2026-05-03T23:13:14.673Z",
      "expiresAt": "2026-05-04T23:13:14.673Z",
      "httpStatus": 404,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gopls-lsp",
      "contentType": "text/plain",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gopls-lsp",
        "contentDisposition": null,
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gopls-lsp"
      },
      "scope": "item",
      "summary": "Known item issue.",
      "detail": "This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.",
      "primaryActionLabel": "Open source listing",
      "primaryActionHref": "https://clawhub.ai/bowen31337/gopls-lsp"
    },
    "validation": {
      "installChecklist": [
        "Open the source listing and confirm there is a real package or setup artifact available.",
        "Review SKILL.md before asking your agent to continue.",
        "Treat this source as manual setup until the upstream download flow is fixed."
      ],
      "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/gopls-lsp",
    "downloadUrl": "https://openagent3.xyz/downloads/gopls-lsp",
    "agentUrl": "https://openagent3.xyz/skills/gopls-lsp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gopls-lsp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gopls-lsp/agent.md"
  }
}
```
## Documentation

### gopls LSP

Go language server integration providing comprehensive code intelligence through gopls (the official Go language server).

### Capabilities

Code intelligence: Autocomplete, go-to-definition, find references
Error detection: Real-time diagnostics for compilation errors and issues
Refactoring: Rename symbols, extract function, organize imports
Analysis: Static analysis, code suggestions, unused code detection
Supported extensions: .go

### Installation

Install gopls using the Go toolchain:

go install golang.org/x/tools/gopls@latest

Important: Make sure $GOPATH/bin (or $HOME/go/bin) is in your PATH.

Verify installation:

gopls version

### Usage

The language server runs automatically in LSP-compatible editors. For manual operations:

### Format code

gofmt -w file.go

### Run linter

go vet ./...

### Build and test

go build ./...
go test ./...

### Configuration

Create gopls.yaml in your project or workspace for custom settings:

analyses:
  unusedparams: true
  shadow: true
completeUnimported: true
staticcheck: true

Or configure via environment:

export GOPLS_CONFIG='{"staticcheck": true, "analyses": {"unusedparams": true}}'

### Integration Pattern

When editing Go code:

gopls provides real-time diagnostics in LSP editors
Run go fmt or gofmt to format code
Use go vet for additional static analysis
Run tests with go test before committing

### Common Go Commands

go mod init <module> - Initialize Go module
go mod tidy - Clean up dependencies
go get <package> - Add dependency
go build - Compile packages
go run main.go - Run program
go test - Run tests
go vet - Report suspicious constructs

### More Information

gopls Documentation
GitHub Repository
Go Official Documentation
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: bowen31337
- Version: 1.0.0
## Source health
- Status: source_issue
- Known item issue.
- This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
- Health scope: item
- Reason: not_found
- Checked at: 2026-05-03T23:13:14.673Z
- Expires at: 2026-05-04T23:13:14.673Z
- Recommended action: Open source listing
## Links
- [Detail page](https://openagent3.xyz/skills/gopls-lsp)
- [Send to Agent page](https://openagent3.xyz/skills/gopls-lsp/agent)
- [JSON manifest](https://openagent3.xyz/skills/gopls-lsp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gopls-lsp/agent.md)
- [Download page](https://openagent3.xyz/downloads/gopls-lsp)