hype
01Skill Claude CodeCodex
Write and maintain documentation using the Hype content generation tool with dynamic code execution, snippets, and includes.
Skill Claude CodeCodex
Write and maintain documentation using the Hype content generation tool with dynamic code execution, snippets, and includes.
Instructions file CodexOpenCode
Instructions for gopherguides/hype, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
Instructions file
Instructions for gopherguides/hype, covering claude code instructions for hype, critical rules, git workflow, project structure and readme generation.
Plugin Claude Code
Plugin marketplace listing 7 plugins: go-workflow, go-dev, productivity, gopher-guides, llm-tools.
Instructions file CodexOpenCode
Instructions for gopherguides/gopher-ai, covering agents.md, project overview, plugins, workflow skills (go-workflow plugin) and example workflow.
Instructions file
Instructions for gopherguides/gopher-ai, covering claude.md, project overview, architecture, plugin components and key workflows.
Skill Claude CodeCodex
WHEN: User asks for a code quality audit, code review, or wants to find code smells, anti-patterns, or non-idiomatic Go code in their project. Also when asked "how good is this code?" or "audit my code." WHEN NOT: When the user wants to fix bugs, run tests, or just lint (use go-lint-audit for linting).
Skill Claude CodeCodex
WHEN: User wants an automated first-pass code review on a PR, diff, or set of changes. Also when asked "review this PR", "review my changes", or "what do you think of this code?" WHEN NOT: Full project audits (use go-code-audit), or when user just wants linting (use go-lint-audit).
Skill Claude CodeCodex
WHEN: User wants to run linting on their Go project, understand lint findings, improve their golangci-lint configuration, or asks "what's wrong with my code?" from a linting perspective. WHEN NOT: Deep code quality audit (use go-code-audit), or auto-fixing lint issues (use /lint-fix command).
Skill Claude CodeCodex
WHEN: User wants to validate their Go project against Gopher Guides coding standards, check documentation completeness, review concurrency patterns, or validate project structure. WHEN NOT: Quick one-off Go questions (use the gopher-guides skill), or linting (use go-lint-audit).
Skill Claude CodeCodex
WHEN: User wants to improve test coverage, find untested code, generate test stubs, or asks "what tests am I missing?" or "how do I improve coverage?" for a Go project. WHEN NOT: When running existing tests, debugging test failures, or benchmarking.
Plugin Claude Code
Go-specific development tools with idiomatic best practices.
Command
Generate and run Go benchmarks with profiling and optimization analysis.
Command
Auto-detect build system, parse errors, and fix until clean.
Command
Cancel any active persistent loop.
Command
Deep-dive explanation of Go code with diagrams.
Command
Auto-fix Go linting issues with golangci-lint.
Command
Profile Go code, identify bottlenecks, optimize, and verify improvements.
Command
Find and remove dead Go code, orphaned tests, and complexity issues.
Command
Generate comprehensive Go tests with table-driven patterns.
Command
Validate bash code blocks in markdown command and skill files.
Command
Run full pre-push verification: build, test, lint, vet, dev-server checks.
Skill Claude CodeCodex
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…
Skill Claude CodeCodex
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…