go-dev
v1.9.0Go-specific development tools with idiomatic best practices
By Gopher GuidesLicense: MIT21 GitHub starsUpdated 1 hour ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 3 skill or MCP entries
- Source updated
- Sep 1, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install go-dev for Codex and Claude Code
codex plugin marketplace add gopherguides/gopher-ai
codex plugin marketplace upgrade gopher-ai
codex plugin add go-dev@gopher-aiPaste and run these commands in a terminal with Codex. They add and refresh the gopher-ai catalog, then install this plugin.
Compatibility: the page URL and API slug “go-dev” remain stable.
- Codex:
go-dev@agent-plugin-marketplace→go-dev@gopher-ai
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/gopherguides/gopher-aiClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/go-dev/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/go/SKILL.md├── skills/go-profiling-optimization/SKILL.md└── skills/validate-skills/SKILL.md
Included Skills3
Idiomatic Go: interfaces, error handling, concurrency, testing, package layout, and debugging. Use when the user writes, reviews, or debugs Go code, or asks any open Go question that doesn't fit a more specific child skill. SKIP for Go performance/profiling work (use go-profiling-optimization) and explicit Gopher Guides training/API requests (use gopher-guides).
Profile and optimize Go performance: pprof CPU/memory/block/mutex profiles, allocation analysis, escape analysis, sync.Pool, GOGC/GOMEMLIMIT tuning, benchmarks with -benchmem, PGO workflow, execution tracing. Use when user asks 'why is this slow', 'is this allocating', mentions pprof/profiling, runs benchmarks, or needs to reduce p99 latency. SKIP for general Go idioms — use `go` skill.
Validate bash and shell code blocks embedded in plugin commands and skills .md files. Catches syntax errors, undefined variables, unclosed quotes, missing semicolons. Use when editing files under plugins/*/commands/*.md or plugins/*/skills/*/SKILL.md, when creating a new command or skill in this repo, or when CI fails on a markdown bash-block syntax check.
Plugin manifests2
{
"name": "go-dev",
"version": "1.9.0",
"description": "Go-specific development tools with idiomatic best practices",
"author": {
"name": "Gopher Guides",
"email": "[email protected]"
},
"homepage": "https://gopherguides.com",
"repository": "https://github.com/gopherguides/gopher-ai",
"license": "MIT",
"keywords": [
"go",
"testing",
"lint",
"explain",
"best-practices"
],
"skills": "./skills/",
"interface": {
"displayName": "Go Dev",
"shortDescription": "Go-specific development tools with idiomatic best practices",
"developerName": "Gopher Guides",
"category": "Development"
}
}{
"name": "go-dev",
"description": "Go-specific development tools with idiomatic best practices",
"version": "1.9.0",
"author": {
"name": "Gopher Guides",
"email": "[email protected]"
},
"homepage": "https://gopherguides.com",
"repository": "https://github.com/gopherguides/gopher-ai",
"license": "MIT",
"keywords": [
"go",
"testing",
"lint",
"explain",
"best-practices"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[go-dev on Agent Plugins Marketplace](https://pluginsmp.com/plugins/go-dev)