MCP HubMCP Hub
SKILL·D17966

go-skills-router

eduardo-sl
업데이트됨 6 days ago
2 조회
68
9
68
GitHub에서 보기
메타ai

정보

이 스킬은 Go 관련 작업의 적절한 전문화된 스킬 선택이 불분명할 때 라우팅 테이블 역할을 수행합니다. 스킬 간 중복을 해결하고, 다중 관심사 작업에 대한 보조 스킬을 추천하며, 사용 가능한 Go 기능의 인덱스를 제공합니다. 모호한 쿼리, 중복되는 스킬 경계 처리, 또는 단일 스킬을 직접 로드하기보다 "어떤 Go 스킬을 사용할 수 있는지" 묻고자 할 때 이 스킬을 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add eduardo-sl/go-agent-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/eduardo-sl/go-agent-skills
Git 클론대체
git clone https://github.com/eduardo-sl/go-agent-skills.git ~/.claude/skills/go-skills-router

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Go Skills Router

This repository publishes 33 Go skills. Their triggers necessarily overlap — "this is slow" could be performance, concurrency, database, or a leak. Use the tables below to pick the owner, then load the secondary skills in the same pass rather than discovering them one at a time.

This is an index. Every skill it names stands alone and can be read without this one.

Routing Table

TaskPrimaryAlso load
Format, name, or lay out codego-coding-standardsgo-documentation
Review a diff or a PRgo-code-reviewthe skill owning the domain under review
Return, wrap, or inspect errorsgo-error-handlinggo-defensive-coding for nil-heavy code
Pass deadlines, cancel workgo-contextgo-concurrency-review if goroutines are involved
Adopt newer Go featuresgo-modernizego-ci to raise the toolchain in CI
Slices, maps, sets, preallocationgo-data-structuresgo-performance-review
Write godoc, examples, deprecationsgo-documentationgo-coding-standards
Guard against panics and silent corruptiongo-defensive-codinggo-error-handling
Review package layout and dependency directiongo-architecture-reviewgo-interface-design
Start a new project or servicego-project-layoutgo-dependency-injection, go-ci
Design an interface or a typego-interface-designgo-design-patterns
Apply a known patterngo-design-patternsgo-interface-design
Wire dependencies, remove globalsgo-dependency-injectiongo-project-layout
Build an HTTP APIgo-api-designgo-openapi, go-observability
Work from an OpenAPI specgo-openapigo-api-design, go-test-quality
Build a GraphQL APIgo-graphqlgo-database, go-api-design
Build a gRPC servicego-grpcgo-api-design, go-observability
Build a CLIgo-cligo-project-layout, go-binary-size
Query a database, manage transactionsgo-databasego-error-handling, go-security-audit
Write goroutines, channels, syncgo-concurrency-reviewgo-context, go-test-quality
Audit for vulnerabilitiesgo-security-auditgo-dependency-audit, go-defensive-coding
Reduce allocations, optimise a hot pathgo-performance-reviewgo-data-structures
Shrink a binary or imagego-binary-sizego-ci
Add logs, metrics, tracesgo-observabilitygo-context
Debug a panic, leak, or deadlockgo-troubleshootinggo-concurrency-review, go-performance-review
Write or improve testsgo-test-qualitygo-test-table-driven
Structure a test matrixgo-test-table-drivengo-test-quality
Audit go.mod, check CVEsgo-dependency-auditgo-security-audit
Set up CI, linting, coverage gatesgo-cigo-dependency-audit
Restructure existing code safelygo-refactoringgo-semantic-tools, plus the skill owning the target shape
Find callers, implementers, renamego-semantic-toolsgo-refactoring
Write a commit messagegit-commit

Boundaries Between Overlapping Skills

Load the one that owns the question being asked, not the one that matches a keyword in the code.

"It is slow."

  • go-performance-review — the code allocates or copies too much. Owns benchmarks, pprof, and optimisation patterns.
  • go-concurrency-review — the code contends on a lock or serialises work that could run in parallel.
  • go-database — the query is the problem: missing index, N+1, pool exhaustion.
  • go-troubleshooting — you do not yet know which of the three it is. Start here to find out, then hand off.

"It crashed."

  • go-troubleshooting — a panic, deadlock, or leak already happened. Diagnosis, profiles, delve.
  • go-defensive-coding — prevention. Nil traps, aliasing, overflow, the constructs that make the next crash impossible.
  • go-concurrency-review — a data race or a goroutine lifecycle bug.

"Is this secure?"

  • go-security-audit — external threats: injection, auth, secrets, TLS.
  • go-dependency-audit — known CVEs in modules you import.
  • go-defensive-coding — internal correctness bugs that are not attacks.

"How should this be structured?"

  • go-architecture-review — the shape of an existing codebase.
  • go-project-layout — the shape of a new one.
  • go-interface-design — the shape of one type or contract.
  • go-refactoring — the process of getting from the current shape to the target shape. Load it alongside whichever skill above owns that target.

"How do I expose this?"

  • go-api-design — HTTP handlers, middleware, shutdown. Protocol-agnostic server concerns.
  • go-openapi — the contract is a spec and code is generated from it.
  • go-graphql — the client picks the shape of the response.
  • go-grpc — protobuf contract, interceptors, streaming.

"Tests."

  • go-test-quality — what to test, how to isolate it, what to mock, synctest, goleak, benchmarks.
  • go-test-table-driven — the table pattern specifically: when it helps, how to shape the case struct, when to stop using it.

"Style."

  • go-coding-standards — the rules the code should follow.
  • go-code-review — applying rules to someone else's change, with severity.
  • go-modernize — rules that changed because the language moved.
  • go-ci — making a machine enforce them.

Multi-Concern Tasks

A real task usually crosses three skills. Load them together at the start rather than sequentially.

RequestLoad
"Build a gRPC service with tests"go-grpc + go-test-quality + go-error-handling
"This endpoint is slow under load"go-troubleshooting + go-performance-review + go-database
"Harden this service before launch"go-security-audit + go-dependency-audit + go-defensive-coding + go-ci
"Split this monolith"go-architecture-review + go-refactoring + go-semantic-tools
"Scaffold a new CLI"go-project-layout + go-cli + go-ci + go-binary-size
"Migrate this to the current Go release"go-modernize + go-test-quality + go-ci

Full Catalogue

CategorySkills
Code Qualitygo-coding-standards go-code-review go-error-handling go-context go-modernize go-data-structures go-documentation
Architecturego-architecture-review go-project-layout go-interface-design go-api-design go-openapi go-graphql go-grpc go-design-patterns go-dependency-injection go-cli
Datago-database
Safety & Performancego-concurrency-review go-security-audit go-defensive-coding go-performance-review go-observability go-troubleshooting
Testinggo-test-quality go-test-table-driven
Workflowgo-dependency-audit go-ci go-refactoring go-semantic-tools go-binary-size git-commit go-skills-router

Verification Checklist

  1. The primary skill matches the question being asked, not a keyword in the code
  2. Secondary skills were loaded in the same pass, not discovered one at a time
  3. For a diagnosis task, go-troubleshooting ran before an optimisation skill
  4. For a restructuring task, go-refactoring was paired with the skill owning the target shape
  5. If exactly one skill applies, it was loaded directly without routing

GitHub 저장소

eduardo-sl/go-agent-skills
경로: skills/(workflow)/go-skills-router
0
FAQ

자주 묻는 질문

go-skills-router Skill이란 무엇인가요?

go-skills-router은(는) eduardo-sl이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 go-skills-router 관련 작업을 수행할 수 있게 합니다.

go-skills-router은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. go-skills-router을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

go-skills-router은(는) 어떤 카테고리에 속하나요?

go-skills-router은(는) 메타 카테고리에 속합니다.

go-skills-router은(는) 무료로 사용할 수 있나요?

네. go-skills-router은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

content-collections
메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기
polymarket
메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기
creating-opencode-plugins
메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기
sglang
메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기