solid-go
Installation
SKILL.md
SOLID Go - Modular Architecture
Agent Workflow (MANDATORY)
Before ANY implementation, use TeamCreate to spawn 3 agents:
- fuse-ai-pilot:explore-codebase - Analyze existing architecture
- fuse-ai-pilot:research-expert - Verify Go docs via Context7
- fuse-ai-pilot:sniper - Post-implementation validation
DRY - Reuse Before Creating (MANDATORY)
Before writing ANY new code:
- Grep the codebase for similar interfaces, services, or logic
- Check shared locations:
internal/core/services/,internal/core/ports/ - If similar code exists -> extend/reuse instead of duplicate
- If code will be used by 2+ features -> create it in
internal/core/