Project Case Study
ZothKit
Private Application Foundation
A private reusable application foundation for building scalable business platforms. ZothKit standardizes authentication, sessions, RBAC permissions, translations, audit logging, file handling, settings, and modular application architecture while keeping every project's business logic completely independent.
Overview
ZothKit is a private reusable application foundation created to eliminate repeated infrastructure work across multiple business platforms.
Rather than copying authentication, permissions, translations, settings, audit logging, and other foundation layers between projects, those responsibilities were extracted into reusable packages while keeping every application's business logic completely independent.
The framework currently powers projects such as Dentra, Atlas, and Jinara.
Why ZothKit Exists
Repeatedly building the same application foundations revealed that most enterprise platforms share identical infrastructure concerns: authentication, authorization, translations, settings, audit logging, file handling, and module registration.
Rather than rebuilding these layers for every project, ZothKit turns the common architecture into reusable engineering foundations.
Engineering Goals
Architecture
ZothKit is organized as reusable scoped packages under @zothkit/*.
Framework adapters sit on top of framework-agnostic core packages. Business applications consume these packages while defining their own domain modules.
The framework is intentionally designed so applications own their business rules while ZothKit owns only the shared infrastructure.
Package Structure
How It Works
Applications register themselves through defineApp() and modules through defineModule().
From module metadata, the framework derives shared infrastructure definitions while each project keeps its own domain rules and workflows independent.
Design Principles
Used In
ZothKit currently serves as the shared engineering foundation behind Dentra, Atlas, and Jinara while allowing each platform to remain architecturally independent.
Future Roadmap
Explore More
Other Case Studies
Enterprise Healthcare Product
Dentra
Isolated-deployment healthcare platform engineered for clinic-specific operations, role-based access control, and a scheduling domain built to scale across clinic workflows.
Enterprise Property Operations Product
Atlas
Enterprise system modeling properties, residents, leases, and payments, designed around clear domain boundaries and access control so the platform stays maintainable as it grows.