Use Go Navigator MCP to explore Go code semantically (packages, symbols, definitions/references, context, metrics, deps) and return file/line/snippets; do not modify code.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
name: go-navigator-read
description: Use Go Navigator MCP to explore Go code semantically (packages, symbols, definitions/references, context, metrics, deps) and return file/line/snippets; do not modify code.
---
# Go Navigator (READ) — semantic navigation only
## Scope rules
- READ-ONLY: never call renameSymbol or rewriteAst (or any tool that changes files).
- Prefer semantic tools over raw text search.
## Defaults
- Use "dir": "." unless the user specifies another root.
- For any "package" field, use the exact import path returned by listPackages (go list style).
## Recommended workflows
### Orientation in a new repo
1) listPackages { "dir": "." }
2) getProjectSchema { "dir": ".", "depth": "standard" } (optional)
3) getMetricsSummary { "dir": ".", "package": "<pkg>" } (optional)
4) getDependencyGraph { "dir": ".", "package": "<pkg>" } (optional)
### Understand a symbol
1) getDefinitions { "dir": ".", "ident": "<Ident>" }
2) getReferences { "dir": ".", "ident": "<Ident>" }
3) getSymbolContext { "dir": ".", "ident": "<Ident>", "kind": "<func|type|...>" } (preferred)
4) getFunctionSource / getStructInfo / getFileInfo for deeper inspection
### Interfaces & implementations
- listInterfaces { "dir": ".", "package": "<pkg>" }
- getImplementations { "dir": ".", "name": "<InterfaceOrTypeName>" }
### Complexity, dead code, summary
- getComplexityReport { "dir": ".", "package": "<pkg>" }
- getDeadCodeReport { "dir": ".", "package": "<pkg>", "limit": 10 }
- getMetricsSummary { "dir": ".", "package": "<pkg>" }
## Large result sets
- Use limit/offset pagination where supported (getDefinitions/getReferences).
- Return the most relevant files first.
## Output format
- Always include file paths + line numbers.
- Include minimal snippets (1–5 lines) unless asked for full bodies.
- Summarize findings and propose next tool calls (still read-only).
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...