Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

go-validator去验证器

Agent Skill

go-validator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

公开资料未说明

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:go-validator(去验证器)
来源仓库:https://github.com/cristiano-pacheco/ai-tools
仓库路径:skills/go-validator
安装命令:
npx skills add https://github.com/cristiano-pacheco/ai-tools --skill go-validator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cristiano-pacheco/ai-tools --skill go-validator

简介

go-validator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Go Validator

Generate validator files for GO modular architecture conventions.

When to Use

  • Create domain validators (password, email, username, etc.)
  • Input sanitization and business rule validation
  • Any validation logic returning typed domain errors

Two-File Pattern

Every validator requires two files:

  1. Port interface: internal/modules/<module>/ports/<validator_name>_validator.go
  2. Validator implementation: internal/modules/<module>/validator/<validator_name>_validator.go

Port File Structure

The port file contains only the interface definition with its documentation comment.

Example structure:

package ports

// PasswordValidator validates password strength according to security policies.
type PasswordValidator interface {
	Validate(password string) error
}

Validator File Structure

The validator implementation file follows this order:

  1. Package declaration and imports
  2. Constants - validation rules, thresholds, limits
  3. Struct definition - the validator implementation struct
  4. Interface assertion - compile-time check with var _ ports.XxxValidator = (*XxxValidator)(nil)
  5. Constructor - NewXxxValidator function
  6. Methods - validation methods (e.g., Validate)

Example structure:

package validator

import (
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/errs"
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/ports"
)

// 2. Constants
const (
	minLength = 8
	maxLength = 128
)

// 3. Struct definition
type PasswordValidator struct{}

// 4. Interface assertion
var _ ports.PasswordValidator = (*PasswordValidator)(nil)

// 5. Constructor
func NewPasswordValidator() *PasswordValidator {
	return &PasswordValidator{}
}

// 6. Methods
func (v *PasswordValidator) Validate(password string) error {
	// validation logic
	return nil
}

Port Interface Structure

Location: internal/modules/<module>/ports/<validator_name>_validator.go

package ports

// PasswordValidator validates password strength according to security policies.
type PasswordValidator interface {
	Validate(password string) error
}

Validator Variants

Stateless validator (no dependencies)

Most validators are stateless utilities with no external dependencies.

package validator

import (
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/errs"
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/ports"
)

type EmailValidator struct{}

var _ ports.EmailValidator = (*EmailValidator)(nil)

func NewEmailValidator() *EmailValidator {
	return &EmailValidator{}
}

func (v *EmailValidator) Validate(email string) error {
	// Validation logic
	return nil
}

Stateful validator (with dependencies)

Use when validation requires external data or configuration.

package validator

import (
	"context"

	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/errs"
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/ports"
)

type UsernameValidator struct {
	userRepo ports.UserRepository
	minLen   int
	maxLen   int
}

var _ ports.UsernameValidator = (*UsernameValidator)(nil)

func NewUsernameValidator(
	userRepo ports.UserRepository,
	minLen int,
	maxLen int,
) *UsernameValidator {
	return &UsernameValidator{
		userRepo: userRepo,
		minLen:   minLen,
		maxLen:   maxLen,
	}
}

func (v *UsernameValidator) Validate(ctx context.Context, username string) error {
	if len(username) < v.minLen {
		return errs.ErrUsernameTooShort
	}

	// Check uniqueness using repository
	exists, err := v.userRepo.ExistsByUsername(ctx, username)
	if err != nil {
		return err
	}
	if exists {
		return errs.ErrUsernameAlreadyExists
	}

	return nil
}

Multi-field validator

Use when validation involves multiple related fields.

Port interface:

package ports

// RegistrationValidator validates all fields for user registration.
type RegistrationValidator interface {
	ValidateEmail(email string) error
	ValidatePassword(password string) error
	ValidatePasswordMatch(password, confirmPassword string) error
}

Implementation:

package validator

import (
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/errs"
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/ports"
)

type RegistrationValidator struct{}

var _ ports.RegistrationValidator = (*RegistrationValidator)(nil)

func NewRegistrationValidator() *RegistrationValidator {
	return &RegistrationValidator{}
}

func (v *RegistrationValidator) ValidateEmail(email string) error {
	// Email validation logic
	return nil
}

func (v *RegistrationValidator) ValidatePassword(password string) error {
	// Password validation logic
	return nil
}

func (v *RegistrationValidator) ValidatePasswordMatch(password, confirmPassword string) error {
	if password != confirmPassword {
		return errs.ErrPasswordMismatch
	}
	return nil
}

Validation Constants

Define validation rules as constants at the package level for clarity and maintainability.

const (
	minPasswordLength = 8
	maxPasswordLength = 128
	minUsernameLength = 3
	maxUsernameLength = 32
)

Error Handling

Validators MUST return typed domain errors from the module's errs package. When adding new custom errors, translations are mandatory in locale files.

// In internal/modules/<module>/errs/errs.go
var (
	ErrPasswordTooShort         = errors.New("password must be at least 8 characters")
	ErrPasswordMissingUppercase = errors.New("password must contain at least one uppercase letter")
	ErrPasswordMissingLowercase = errors.New("password must contain at least one lowercase letter")
	ErrPasswordMissingDigit     = errors.New("password must contain at least one digit")
	ErrPasswordMissingSpecial   = errors.New("password must contain at least one special character")
)

For every new custom error added to internal/modules/<module>/errs/errs.go:

  • Add the translation key to locales/en.json
  • Add the same translation key to every other existing locale file (e.g., locales/pt_BR.json)

Context Usage

Validators that perform I/O operations (database lookups, API calls) MUST accept context.Context as the first parameter.

// Stateless validator - no context needed
func (v *PasswordValidator) Validate(password string) error

// Stateful validator with I/O - context required
func (v *UsernameValidator) Validate(ctx context.Context, username string) error

Naming

  • Port interface: XxxValidator (in ports package)
  • Implementation struct: XxxValidator (in validator package, same name — disambiguated by package)
  • Constructor: NewXxxValidator, returns a pointer of the struct implementation
  • Validation method: Validate for single-purpose validators, or descriptive names for multi-purpose validators

Fx Wiring

Add to internal/modules/<module>/fx.go:

Stateless validator:

fx.Provide(
	fx.Annotate(
		validator.NewPasswordValidator,
		fx.As(new(ports.PasswordValidator)),
	),
),

Stateful validator with dependencies:

fx.Provide(
	fx.Annotate(
		validator.NewUsernameValidator,
		fx.As(new(ports.UsernameValidator)),
	),
),

The stateful validator's dependencies (e.g., ports.UserRepository) are automatically injected by Fx. Constructor parameters that are primitive types (e.g., minLen, maxLen) should be provided via configuration or fx.Supply.

Dependencies

Validators depend on interfaces only. Common dependencies:

  • ports.XxxRepository — for uniqueness checks or data lookups
  • ports.XxxService — for external validation services
  • Configuration values — passed as constructor parameters

Testing

Validators MUST have comprehensive unit tests covering:

  1. Valid input passes validation
  2. Each invalid condition returns the correct error
  3. Edge cases (empty strings, boundary values, special characters)

Test file location: internal/modules/<module>/validator/<validator_name>_validator_test.go

package validator_test

import (
	"testing"

	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/errs"
	"github.com/cristiano-pacheco/pingo/internal/modules/<module>/validator"
	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

func TestPasswordValidator_ValidPassword_Passes(t *testing.T) {
	// Arrange
	v := validator.NewPasswordValidator()

	// Act
	err := v.Validate("SecureP@ssw0rd")

	// Assert
	require.NoError(t, err)
}

func TestPasswordValidator_TooShort_ReturnsError(t *testing.T) {
	// Arrange
	v := validator.NewPasswordValidator()

	// Act
	err := v.Validate("Ab1!")

	// Assert
	require.Error(t, err)
	assert.ErrorIs(t, err, errs.ErrPasswordTooShort)
}

Critical Rules

  1. No standalone functions: When a file contains a struct with methods, do not add standalone functions. Use private methods on the struct instead.
  2. Two files: Port interface in ports/, implementation in validator/
  3. Interface in ports: Interface lives in ports/<name>_validator.go
  4. Interface assertion: Add var _ ports.XxxValidator = (*XxxValidator)(nil) below the struct
  5. Constructor: MUST return pointer *XxxValidator
  6. Stateless by default: Only add dependencies when validation requires external data
  7. Context when needed: Accept context.Context only for validators performing I/O
  8. Typed errors: Return domain errors from module's errs package
  9. Error translations: Every new custom error must have entries in locales/en.json and all other existing locale files
  10. Constants: Define validation rules as package-level constants
  11. No comments on implementations: Do not add redundant comments above methods in the implementations
  12. Add detailed comment on interfaces: Provide comprehensive comments on the port interfaces to describe their purpose and validation rules
  13. Comprehensive tests: Test valid cases and all invalid conditions

Workflow

  1. Create port interface in ports/<name>_validator.go
  2. Create validator implementation in validator/<name>_validator.go
  3. Define validation constants
  4. Add typed errors to module's errs/errs.go if needed
  5. Add translations for each new custom error in locales/en.json and all other existing locale files
  6. Create comprehensive unit tests in validator/<name>_validator_test.go
  7. Add Fx wiring to module's fx.go
  8. Run make test to verify tests pass
  9. Run make lint to verify code quality
  10. Run make nilaway for static analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.91%
按下载量换算55

Claude

30.22%
按下载量换算45

Cursor

18.05%
按下载量换算27

Gemini CLI

8.05%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills