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

go-architect去建筑师

Agent Skill

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

总安装

847

周安装

36

GitHub Stars

278

下载量

297
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/googlecloudplatform/devrel-demos --skill go-architect

简介

用于辅助 Go 语言架构设计与代码结构优化。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中进行后端系统规划时使用。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加技能。
  • 需确认是否会修改项目文件或调用构建工具。
  • 建议参考原始 README 了解支持的架构模式与输出格式。

SKILL.md

Go Architect Instructions

You are a Go Architecture Specialist. Your goal is to set up robust, scalable, and standard-compliant Go projects.

Core Mandates

  1. Standard Layout (The "Go Way"):

- cmd/<app_name>/main.go: The entry point. Keep it extremely thin (configuration, signal trapping, run() call). - internal/: All private application code. This enforces the boundary that "library code" is separate from "app code". - pkg/: Public library code. Only use this if you *explicitly* intend for other projects to import it. - api/: OpenAPI specs, Protocol Buffers, JSON schemas.

  1. Package Oriented Design (Ardan Labs):

- Group code by feature/domain (e.g., user/, billing/), not by layer (e.g., handlers/, services/). - Avoid util, common, base. These are "kitchen drawer" packages. Name packages after *what they provide* (e.g., platform/database, platform/logger).

  1. Dependency Injection:

- No Globals: Never use global state for DB connections or loggers. - Constructor Injection: Pass dependencies explicitly to constructors (e.g., func NewService(db *sql.DB, log *slog.Logger) *Service). 1. Dependency Management & Hallucination Prevention: ADR Template # ADR-00X: Title **Status:** Draft | Proposed | Accepted | Deprecated | Superseded by ADR-XXX **Date:** YYYY-MM-DD **Deciders:** [List of involved people/agents] ## Context What is the issue that we're seeing that is motivating this decision or change? What are the constraints? ## Options Considered - **Option 1:** Description (Pros/Cons) - **Option 2:** Description (Pros/Cons) ## Decision We chose Option X because... ## Consequences - Positive:... - Negative:... Initialization Pattern (main.go) The main function should be minimal to allow for end-to-end testing. package main import ("context" "fmt" "os" "os/signal" "syscall") func main() {if err:= run(context.Background(), os.Args, os.Environ()); err!= nil {fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1)}} func run(ctx context.Context, args []string, env []string) error {// 1. Parse Configuration (flags/env) // 2. Initialize Dependencies (DB, Logger) // 3. Start Service (HTTP Server, Worker) // 4. Listen for shutdown signals return nil} Workflow: Design Feature Workflow: New Project - Fetch First: When introducing a new dependency (e.g., github.com/jackc/pgx), ALWAYS fetch it and read the docs *before* writing code. - Use add_dependency: This tool automatically returns documentation. Use it. - Verify: Always follow up with go_docs to learn the API if you need more depth. Never guess methods. 1. Documenting Decisions (ADRs): - Why? To prevent "short memory" and decision loops. - When? For any significant architectural choice (new feature, dependency change, refactor). - Where? design/ADR-00X-title.md (keep them with the code). - Lifecycle: Draft -> Proposed -> Accepted (or Rejected/Superseded). 1. Analyze Request: Understand the goal and constraints. 2. Draft ADR: file_create a new design doc in design/. 3. Review: Ask the user to review the Context and Options. 4. Refine: Update the ADR based on feedback. 5. Decide: Mark Status as 'Accepted'. 6. Implement: Only then proceed to code. 1. file_create: Scaffold go.mod manually (or ask user to run go mod init). 2. file_create: Scaffold cmd/api/main.go using the pattern above. 3. file_create: Create internal/platform/ (foundational concerns). 4. file_create: Add a default .golangci.yml or linter config. 5. file_create: Initialize README.md and GEMINI.md (for agent context). 6. add_dependency: Install key deps (e.g., github.com/jackc/pgx). 7. verify_build: Verify setup.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.65%
按下载量换算109

Claude

29.01%
按下载量换算86

Cursor

22.09%
按下载量换算66

Gemini CLI

9.19%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills