Miscs is a transition menu, not a promise that every listed module is a stable app-facing API.
1. Core Idea
Some utility exports are genuinely small public conveniences. Others are system support that currently lives underheavenbase.utils only because the pre-release migration is still being cleaned up.
The likely direction is to keep broad utility helpers such as typing bridges, coercion, list flattening, ID validation, and config parsing, while moving system-specific helpers such as operation tokens, registry identity, and backend naming out of the general utility surface.
That means this page is intentionally a menu, not a tutorial for every small module. If a helper is system-facing, recognize it while reading the codebase, but do not treat it as a long-term public utility.
2. Support Helper Menu
| Need | Module | Status |
|---|---|---|
| Typing and dataclass bridge | heavenbase.utils.typing | Migration bridge |
| One-level list flattening | heavenbase.utils.containers | Small public helper |
| Small value coercion | heavenbase.utils.coerce | Small public helper |
| Public ID validation | heavenbase.utils.ids | Useful public support |
| Config CLI parsing and operations | heavenbase.utils.config_api | CLI/support helper |
| Config engine specs | heavenbase.utils.spec | Support helper |
| Backend-safe names | heavenbase.utils.ids, heavenbase.utils.naming | System-facing, avoid new app dependencies |
| Operation tokens | heavenbase.utils.ops | System-facing, expected to move |
| Registry key resolution | heavenbase.utils.registry_identity | System-facing, expected to move |
| Database URL tokens | heavenbase.utils.db_path | System-facing support |
Current
heavenbase.utils.typing is a migration bridge for common imports. It intentionally does not provide legacy autotype, jsonschema_type, or parse_func_sig.3. Public Convenience Examples
Use stable convenience helpers when they keep demos clear:ops, naming, or registry_identity. Those names are useful while reading HeavenBase internals, but they are not the conceptual utility surface.

