Dependency Injection & Construction

SkillDev tools

Wire dependencies using constructor-based dependency injection throughout services, repositories, and handlers.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Dependency Injection & Construction skill

What this skill tells your AI

The instructions your AI receives, as published by cliqrelay/cliqrelay in .agents/skills/backend/dependency-injection/SKILL.md and read by ahel’s review.

When to use this skill

  • Wire services, repositories, and handlers with their dependencies
  • Initialize core services during application bootstrap
  • Pass dependencies to plugins during initialization
  • Create dependency graphs that are testable and mockable
  • Avoid service locators and global state

Key principles

  1. Constructor-based: Dependencies passed via function parameters
  2. Explicit over implicit: Dependencies visible in constructor signatures
  3. Interface-based: Depend on interfaces, not concrete implementations
  4. Single responsibility: Each constructor handles one entity's wiring
  5. Bootstrap concentrated: Wiring happens in bootstrap.go and plugin Init

Pattern

Dependency injection flow:

  • Repositories accept bun.IDB and return interface
  • Services accept repositories and return interface
  • Use cases accept services and return struct
  • Handlers accept use cases and return struct
  • Plugins accept PluginContext, retrieve services, create dependencies
  • No global state or service locators

Example

See examples/di_todo_example.go for:

  • BuildTodosPlugin demonstrating complete DI chain
  • Bottom-up wiring (Database ??? Repository ??? Service ??? UseCase ??? Handler)
  • Dependency graph diagram
  • Unidirectional dependency flow

Common mistakes

  1. Circular dependencies (Service A ??? Service B ??? Service A)
  2. Lazy initialization instead of bootstrap-time
  3. Depending on concrete types instead of interfaces
  4. Creating service instances multiple times
  5. Service retrieval without type assertion
  6. Not checking ok flag on type assertion

References

Signals

GitHub stars
40
Forks
1
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
dependency-injection
Source
github.com/cliqrelay/cliqrelay