Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

zero-skills零技能

Agent Skill

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

总安装

1,747

周安装

70

GitHub Stars

71

下载量

566
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/zeromicro/zero-skills --skill zero-skills

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • zero-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

go-zero Skills for AI Agents

This skill provides comprehensive go-zero microservices framework knowledge, optimized for AI agents helping developers build production-ready services. It covers REST APIs, RPC services, database operations, resilience patterns, and troubleshooting.

🎯 When to Use This Skill

Invoke this skill when working with go-zero:

  • Creating services: REST APIs, gRPC services, or microservices architectures
  • Database integration: SQL, MongoDB, Redis, or connection pooling
  • Production hardening: Circuit breakers, rate limiting, or error handling
  • Debugging: Understanding errors, fixing configuration, or resolving issues
  • Learning: Understanding go-zero patterns and best practices

📚 Knowledge Structure

This skill organizes go-zero knowledge into focused modules. Load specific guides as needed rather than reading everything at once:

Quick Start Guide

Link: Official go-zero Documentation Contains: Installation, first API service, basic commands, hello-world examples (refer to official docs)

Pattern Guides (Detailed Reference)

1. REST API Patterns

File: references/rest-api-patterns.md When to load: Creating HTTP endpoints, implementing CRUD operations, adding middleware Contains:

  • Handler → Logic → Context three-layer architecture
  • Request/response handling with proper types
  • Middleware (auth, logging, metrics, CORS)
  • Error handling with httpx.Error() and httpx.OkJson()
  • Complete CRUD examples with ✅ correct vs ❌ incorrect patterns

2. RPC Service Patterns

File: references/rpc-patterns.md When to load: Building gRPC services, service-to-service communication Contains:

  • Protocol Buffers definition and code generation
  • Service discovery with etcd/consul/kubernetes
  • Load balancing strategies
  • Client configuration and interceptors
  • Error handling in RPC contexts

3. Database Patterns

File: references/database-patterns.md When to load: Implementing data persistence, caching, or complex queries Contains:

  • SQL operations with sqlx (CRUD, transactions, batch inserts)
  • MongoDB integration patterns
  • Redis caching strategies and cache-aside pattern
  • Model generation with goctl model
  • Connection pooling and performance tuning

4. Resilience Patterns

File: references/resilience-patterns.md When to load: Production hardening, handling failures, managing system load Contains:

  • Circuit breaker configuration (Breaker)
  • Rate limiting and API throttling
  • Load shedding under pressure
  • Timeout and retry strategies
  • Graceful shutdown and degradation

5. goctl Command Reference

File: references/goctl-commands.md When to load: Generating code with goctl, setting up new services, post-generation steps Contains:

  • goctl installation and detection
  • API/RPC/Model generation commands with exact flags
  • Post-generation pipeline (mod tidy, import fixing, build verification)
  • Config templates (API, RPC, production)
  • Deployment templates (Dockerfile, Kubernetes, Docker Compose)
  • Middleware and error handler templates
  • API spec patterns (CRUD, JWT, mixed auth)

Supporting Resources

Best Practices

File: best-practices/overview.md When to load: Production deployment, code review, optimization Contains: Configuration management, logging, monitoring, security, performance

Troubleshooting

File: troubleshooting/common-issues.md When to load: Debugging errors, configuration issues, runtime problems Contains: Common error messages, solutions, configuration pitfalls, debugging tips

Claude Code Integration

File: getting-started/claude-code-guide.md When to load: Setting up Claude Code for zero-skills usage Contains: Installation, invocation methods, advanced features (subagents, dynamic context)

Tool Integration Guides

File: getting-started/README.md When to load: Setting up zero-skills with Cursor, GitHub Copilot, Windsurf, or Codex Contains: Feature comparison table, per-tool setup instructions (Claude Code, Cursor, Copilot, Windsurf, Codex)

🚀 Common Workflows

These workflows guide you through typical go-zero development tasks:

Creating a New REST API Service

Steps:

  1. Define API specification in .api file with types and routes
  2. Generate code: goctl api go -api user.api -dir.
  3. Implement business logic in internal/logic/ layer
  4. Add validation and error handling with httpx
  5. Test endpoints with proper request/response handling

Detailed guide: references/rest-api-patterns.md

Implementing Database Operations

Steps:

  1. Design database schema and create tables
  2. Generate model: goctl model mysql datasource -url="..." -table="users" -dir="./model"
  3. Inject model into ServiceContext in internal/svc/service_context.go
  4. Use sqlx methods in logic layer (Insert, FindOne, Update, Delete)
  5. Handle transactions and errors properly with ctx propagation

Detailed guide: references/database-patterns.md

Adding Middleware

Steps:

  1. Create middleware function in internal/middleware/ directory
  2. Define middleware in .api file or register programmatically
  3. Implement authentication/authorization logic
  4. Pass validated data through r.Context()
  5. Handle errors with appropriate HTTP status codes

Detailed guide: references/rest-api-patterns.md

Building an RPC Service

Steps:

  1. Define service in .proto file with messages and RPCs
  2. Generate code: goctl rpc protoc user.proto --go_out=. --go-grpc_out=. --zrpc_out=.
  3. Implement service logic in internal/logic/
  4. Configure service discovery (etcd/consul/kubernetes)
  5. Test with RPC client and handle errors

Detailed guide: references/rpc-patterns.md

⚡ Key Principles

When generating or reviewing go-zero code, always apply these principles:

✅ Always Follow

  • Three-layer separation: Keep Handler (routing) → Logic (business) → Model (data) distinct
  • Structured errors: Use httpx.Error(w, err) for HTTP errors, not fmt.Errorf
  • Configuration: Load with conf.MustLoad(&c, *configFile) and inject via ServiceContext
  • Context propagation: Pass ctx context.Context through all layers for tracing and cancellation
  • Type safety: Define request/response types in .api files, generate with goctl
  • goctl generation: Always use goctl to generate boilerplate, never hand-write handlers/routes

❌ Never Do

  • Put business logic directly in handlers (violates three-layer architecture)
  • Return raw errors with w.Write() or fmt.Fprintf() instead of using httpx helpers
  • Hard-code configuration values (ports, hosts, database credentials)
  • Skip validation of user inputs or forget to check err!= nil
  • Modify generated code (customize via logic layer instead)
  • Bypass ServiceContext injection (leads to tight coupling and testing issues)

📖 Progressive Learning Path

Follow this path based on your needs:

🟢 New to go-zero?

  1. Start here: Official go-zero Quick Start Install go-zero, create your first API, understand basic concepts
  2. Add a database: references/database-patterns.md Connect to MySQL/PostgreSQL, generate models, implement CRUD

🟡 Building production services?

  1. Review best practices: best-practices/overview.md Configuration, logging, monitoring, security checklist
  2. Add resilience: references/resilience-patterns.md Circuit breakers, rate limiting, graceful degradation
  3. Check common pitfalls: troubleshooting/common-issues.md Avoid typical mistakes and know how to debug issues

🔵 Extending capabilities?

  1. Use with Claude Code: getting-started/claude-code-guide.md Learn advanced features like subagents, dynamic context, and argument passing Run demo projects to validate your environment
  2. Verify knowledge: examples/verify-tutorial.sh Script to check if examples work correctly

🔗 Integration with go-zero AI Ecosystem

This skill is part of a two-layer ecosystem for AI-assisted go-zero development:

ToolPurposeBest For
ai-contextConcise workflow instructions (~5KB)GitHub Copilot, Cursor, Windsurf
zero-skills (this repo)Comprehensive knowledge base + goctl reference (~45KB)All AI tools, deep learning, reference

The AI runs goctl directly in the terminal for code generation — no separate MCP server needed. See references/goctl-commands.md for the complete command reference.

Usage in Claude Code:

  • This skill loads automatically when working with go-zero projects
  • Use /zero-skills to invoke manually for go-zero guidance
  • AI runs goctl commands directly in the terminal for code generation
  • Reference specific pattern files when needed (Claude loads them on demand)

See getting-started/claude-code-guide.md for detailed usage instructions.

🌐 Additional Resources

  • Official docs: go-zero.dev - Latest API reference and guides
  • GitHub: zeromicro/go-zero - Source code and examples
  • Community: Discussions, issues, and contributions welcome in the main repository

📝 Version Compatibility

  • Target version: go-zero 1.5+
  • Go version: Go 1.19 or later recommended
  • Updates: Patterns updated regularly to reflect framework evolution
  • Breaking changes: Check official docs for API changes between versions

Quick invocation: Use /zero-skills or ask "How do I [task] with go-zero?" Need help? Reference the specific pattern guide for detailed examples and explanations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.94%
按下载量换算164

Antigravity

22.65%
按下载量换算128

Cursor

18.43%
按下载量换算104

Gemini CLI

11.67%
按下载量换算66

Codex

6.73%
按下载量换算38

trae

3.72%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills