feat(skills): add go-pro skill with hybrid architecture#51
Open
quybquang wants to merge 2 commits into
Open
Conversation
- Create .agent/skills/go-pro/SKILL.md with 15 sections covering: Go philosophy, project structure, concurrency, error handling, interface design, framework selection, database patterns, testing, performance, clean architecture, API design, logging, modules, anti-patterns, and decision checklist - Register go-pro in backend-specialist agent skills - Add go-pro to ARCHITECTURE.md skill tables (count 36→37) - Add Go/Golang keywords to intelligent-routing domain detection
- Rewrite SKILL.md to ~295 lines (core only): philosophy, project structure, error handling, interfaces, logging, modules, anti-patterns, decision checklist - Add 7 deep-dive reference files under references/: concurrency, frameworks, database, testing, performance, clean-architecture, api-design - SKILL.md includes index table for selective loading
|
@quybquang is attempting to deploy a commit to the vudovn2's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add a new
go-proAI skill for Go (Golang) development with a highly optimized context-saving structure.Changes
New Multi-File Skill Structure
.agent/skills/go-pro/SKILL.md— Core index (~300 lines) covering:.agent/skills/go-pro/references/*.md— 7 context-saving deep-dives loaded on-demand:concurrency.md: goroutine, channel, errgroupclean-architecture.md: Handler → Service → Repositoryframeworks.md: net/http → Chi → Gin → Fiberdatabase.md: sqlc, pgx, GORM, migrationstesting.md: Table-driven tests, fuzzing, mockingperformance.md: pprof, escape analysisapi-design.md: JSON decoding, middleware, graceful shutdownRegistration Points Modified
.agent/agents/backend-specialist.md— Addedgo-proto skills list.agent/ARCHITECTURE.md— Added to skill tables, updated count 36→37.agent/skills/intelligent-routing/SKILL.md— AddedGo/GolangkeywordsWhy
Go lacks a dedicated skill in the framework. This implementation follows the
GEMINI.mdmandate for "Selective Reading" by splitting the 800+ line skill into a core index and on-demand references, saving LLM context window while providing comprehensive Go guidance.