Token导航 LogoToken导航TokenDH.com
研究检索external-serviceunknown未标认证来源可访问许可证需确认审计未展示

golang-code-reviewGo 代码审查

Agent Skill

golang-code-review 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

408

周安装

17

下载量

136
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:golang-code-review(Go 代码审查)
来源仓库:https://smithery.ai
仓库路径:golang-code-review
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

golang-code-review 用于查找、检索和筛选相关信息。

  • 适合在 Local Agent 中根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件操作。
  • 注意是否会执行命令或访问外部资源,确保操作安全可控。

SKILL.md

Golang Code Review

Perform thorough Go code reviews incorporating both external Go best practices and project-specific patterns.

Review Process

1. Understand the Context

Before reviewing, gather context:

  • Read the PR description or understand the change purpose
  • Identify the domain/package being modified
  • Check if this affects core business logic, API endpoints, or tests

2. Load Relevant References

Based on the review type, read appropriate references:

  • Always read: references/teetsh-patterns.md for project-specific patterns
  • For general code quality: references/effective-go.md for Go best practices
  • For bug prevention: references/common-mistakes.md for antipatterns
  • For security-sensitive code (auth, payments, user input, external APIs): references/security.md

3. Review Scope by Type

Full PR Review: Check all aspects - architecture, implementation, tests, security

Architecture Review: Focus on package structure, interfaces, separation of concerns, domain boundaries

Test Review: Focus on test quality, coverage, behavior vs implementation testing

Single Function/File: Focus on implementation quality, naming, error handling

4. Provide Structured Feedback

Organize feedback by priority:

Critical Issues

Security vulnerabilities, data loss risks, concurrency bugs, resource leaks

Important Issues

Architecture problems, missing error handling, incorrect business logic, test gaps

Suggestions

Code clarity, performance optimizations, idiomatic Go patterns

Positive Feedback

Well-designed patterns, good test coverage, clear naming

5. Code Examples

For each issue, provide:

  • What: Describe the problem
  • Why: Explain the risk or impact
  • How: Show code example of the fix

Key Review Areas

Project-Specific Patterns

Check adherence to Teetsh patterns:

  • Functions extracted with proper abstraction levels
  • Return structs instead of multiple values for related data
  • Vanilla Go testing without assertion libraries
  • Behavior-driven tests checking outcomes not implementation
  • Comments explain why, not what
  • Multi-tenancy: school_id included in queries
  • Analytics events defined in pkg/externals/tracker/client.go
  • REST structure: domain/repo/service/handler separation

Go Best Practices

  • Proper error handling with context wrapping
  • Correct concurrency patterns (goroutines, channels, mutexes)
  • Interface usage: accept interfaces, return structs
  • Resource management with defer
  • Idiomatic naming and structure

Security

For auth, payments, user input, external API code:

  • Input validation and sanitization
  • SQL injection prevention (parameterized queries)
  • Proper password hashing (bcrypt)
  • Secure token generation (crypto/rand)
  • TLS configuration
  • Authorization checks

Testing

  • Test both success and error cases
  • Isolated test state (no global state)
  • Behavior verification not implementation details
  • Vanilla Go testing (t.Error, t.Fatal, t.Errorf)
  • Clear test names describing what is tested

Review Output Format

Structure your review as:

## Critical Issues
[Issues that must be fixed before merge]

## Important Issues
[Issues that should be fixed]

## Suggestions
[Optional improvements]

## Positive Feedback
[What was done well]

For each issue:

### [Area]: [Brief description]

**Problem**: [What's wrong and why it matters]

**Current code**:

[Show problematic code]


**Suggested fix**:

[Show corrected code]


**Reference**: [Link to specific pattern/practice]

Example Review Snippets

Function Design Issue


### Function Design: Mixed abstraction levels in GetUserData

**Problem**: Function mixes high-level flow with low-level details, making it hard to understand intent

**Current code**:

func GetUserData(id int) (*User, error) { query := "SELECT * FROM users WHERE id = ?" row := db.QueryRow(query, id) var user User err := row.Scan(&user.ID, &user.Name, &user.Email) if err != nil { return nil, err } // ... more low-level operations }


**Suggested fix**:

func GetUserData(id int) (*User, error) { user, err := findUserByID(id) if err != nil { return nil, fmt.Errorf("failed to get user data: %w", err) } return user, nil }

func findUserByID(id int) (*User, error) { query := "SELECT * FROM users WHERE id = ?" row := db.QueryRow(query, id) var user User if err := row.Scan(&user.ID, &user.Name, &user.Email); err != nil { return nil, err } return &user, nil }


**Reference**: See `references/teetsh-patterns.md` - Function Design

Testing Issue


### Testing: Using assertion library instead of vanilla Go

**Problem**: Project uses vanilla Go testing for better stack traces and no external dependencies

**Current code**:

assert.Equal(t, expected, result) assert.NotNil(t, user)


**Suggested fix**:

if result != expected { t.Errorf("Expected %v, got %v", expected, result) } if user == nil { t.Fatal("user should not be nil") }


**Reference**: See `references/teetsh-patterns.md` - Testing Patterns

Security Issue


### Security: SQL injection vulnerability

**Problem**: User input concatenated into SQL query allows SQL injection attacks

**Current code**:

query := "SELECT * FROM users WHERE email = '" + email + "'" db.Query(query)


**Suggested fix**:

query := "SELECT * FROM users WHERE email = $1" db.Query(query, email)


**Reference**: See `references/security.md` - SQL Injection Prevention

When NOT to Comment

Avoid feedback on:

  • Trivial formatting issues (gofmt handles this)
  • Personal style preferences not in project patterns
  • Nitpicks that don't affect functionality or maintainability
  • Issues already addressed in other comments

Multi-file Review Strategy

For PRs with many files:

  1. Start with architecture overview (new packages, major changes)
  2. Review core business logic files first
  3. Review tests for core logic
  4. Review supporting files (handlers, viewmodels)
  5. Summarize overall assessment

After Review

If significant issues found:

  • Summarize the most important themes
  • Suggest whether changes are required before merge
  • Offer to explain any patterns or practices in detail

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

84.85%
按下载量换算115

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills