yanmxa/cc-plugins
Agent
Go runtime bug reviewer. Hunts correctness AND concurrency bugs: nil dereferences, unchecked type assertions, swallowed errors, resource leaks, race conditions, goroutine leaks, deadlocks, channel misuse, mutex issues, context misuse. The most critical review agent — catches bugs before production.
yanmxa/cc-plugins
Agent
Go idiomatic developer — writes clean, readable Go covering naming, code structure, patterns, scoping, AND error handling design (sentinel errors, wrapping, error flow, resilient APIs). Use when writing or refactoring Go code that needs to follow Google/Uber style guides and standard error patterns.
yanmxa/cc-plugins
Agent
Go performance developer. Helps write efficient Go code: preallocation, string building, escape analysis awareness, struct layout, sync.Pool, and hot-path patterns.
yanmxa/cc-plugins
Agent
Go security reviewer. Reviews code for injection vulnerabilities, unsafe crypto, secret exposure, input validation gaps, SSRF, path traversal, and OWASP Top 10 issues. Catches security bugs that scanners miss.
yanmxa/cc-plugins
Agent
Go structure & architecture reviewer. Reviews project layout, package boundaries, dependency direction, coupling, API surface, interface placement, type design, and code navigability. Catches design issues that create long-term maintenance burden.
yanmxa/cc-plugins
Agent
Go testing developer. Helps design and write high-quality tests: table-driven tests, test helpers, subtests, fixtures, assertion strategies, and benchmark design.