WEZA
Full-Stack Product Engineer (Solo, 4 months)
A workflow platform connecting submissions, reviews, approvals, audit trails, and payout readiness.

Manual verification and payout workflows create delays, weak visibility, and poor accountability.
WEZA structures work submission, review, approval, audit tracking, and payout readiness into a clear workflow.
WEZA handles financial approvals, meaning data mutation must be flawlessly tracked. The entire system operates as a strict state machine. Role-Based Access Control (RBAC) guards prevent an 'Approver' from modifying the original submission, and Prisma triggers an immutable audit log on every single state transition.
// Prisma schema — Immutable Audit Log
model AuditEvent {
id String @id @default(cuid())
entityType String
entityId String
action String
fromState String?
toState String
performedBy String
metadata Json?
createdAt DateTime @default(now())
@@index([entityId, entityType])
}Processed 50+ mock workflows in beta, demonstrating a 30% reduction in manual approval tracing time.