Kessoku
Description
Next-generation google/wire with parallel dependency injection for Go
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Kessoku
[](https://pkg.go.dev/github.com/mazrean/kessoku) [](https://deepwiki.com/mazrean/kessoku) [](https://codecov.io/gh/mazrean/kessoku)
**Kessoku is a compile-time dependency injection library for Go that speeds up application startup through parallel dependency injection.** Unlike traditional DI frameworks that initialize services sequentially, Kessoku automatically executes independent providers in parallel, dramatically reducing startup time for applications with multiple slow services. Built as a powerful alternative to google/wire, it generates optimized code at compile time with zero runtime overhead.
**Sequential:** DB → Cache → Auth = Total waiting time **Parallel:** DB + Cache + Auth = Fastest service wins
// Before: Sequential (google/wire)
wire.Build(NewDB, NewCache, NewAuth, NewApp) // Each waits for previous
// After: Parallel (Kessoku)
kessoku.Inject[*App]("InitApp",
kessoku.Async(kessoku.Provide(NewDB)), // }
kessoku.Async(kessoku.Provide(NewCache)), // } All run together
kessoku.Async(kessoku.Provide(NewAuth)), // }
kessoku.Provide(NewApp), // waits for all
) // Fastest possible startup
**Result:** Every restart gets faster. Multiple slow services? Maximum impact.
Why This Matters
**Your typical day:** Restart your app 10 times during development. Each restart wastes time waiting for services to start one by one.
gantt
title Sequential vs Parallel Startup
dateFormat X
axisFormat %L
section Sequential (slow)
DB Service :0, 3
Cache Service :3, 5
Auth Service :5, 6
section Parallel (fast)
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11