Go developers building uber-go/fx services need a clean way to manage dependencies and startup shutdown order. This skill helps you wire your application using dependency injection, lifecycle hooks, and modules. It is built for long-running services like HTTP servers and workers.
You can use fx.Provide to register constructors and fx.Invoke to trigger them at startup. The app.Run method handles signals like SIGINT and SIGTERM automatically. This makes graceful shutdown simple.
Modules let you group related code into reusable units. The skill covers everything from basic wiring to advanced features like fx.Decorate and fx.WithLogger. It is ideal for Go projects that need structured and testable service composition.
Global
mkdir -p ~/.claude/skills/golang-uber-fxProject
mkdir -p .claude/skills/golang-uber-fxSource Repository
Typescript Advanced Typeswshobson/agents
Master advanced TypeScript types for safer and more flexible code
Python Executorqu-skills/skills
Execute Python code safely with 100+ libraries for data, scraping, and media
Golang Error Handlingsamber/cc-skills-golang
Learn to create, wrap, inspect, and log Go errors like a professional engineer
Golang Performancesamber/cc-skills-golang
Speed up your Go code using proven patterns for allocation reduction and CPU efficiency
Golang Design Patternssamber/cc-skills-golang
Idiomatic Go patterns for clean constructors error handling and graceful shutdown
Golang Concurrencysamber/cc-skills-golang
Write safe Go concurrency with goroutines, channels, and sync primitives
Golang Data Structuressamber/cc-skills-golang
Optimize Go data structures for speed and memory efficiency with internals knowledge
Golang Contextsamber/cc-skills-golang
Master Go context for cancellations, timeouts, and request values