From 647810e4f7e801e12922c1d180a182262b66c06d Mon Sep 17 00:00:00 2001 From: Rene Nochebuena Date: Thu, 19 Mar 2026 06:55:34 -0600 Subject: [PATCH] docs(launcher): correct tier from 5 to 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit launcher only imports logz (Tier 1) — it belongs at Tier 2, not 5. The wrong tier implied it had to be pushed last, when in reality worker, postgres, mysql, sqlite, valkey, firebase, and httpserver all depend on it and cannot be tagged before it. --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 5760658..a060d19 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -12,7 +12,7 @@ dependencies are ready and never stopped before the components that depend on th ## Tier & Dependencies -**Tier:** 5 (application bootstrap only) +**Tier:** 2 (depends on Tier 1 `logz`) **Imports:** `context`, `os`, `os/signal`, `sync`, `syscall`, `time` (stdlib); `code.nochebuena.dev/go/logz` (micro-lib) **Must NOT import:** `xerrors`, `rbac`, or any domain/application module.