Architecting the technical and legal pipes that redefine the social contract.
CAMHPRO: Translating Prop 1/CARE Court mandates into the "Handcuffs Aren’t Housing" toolkit for statewide advocacy.
Big Brothers Big Sisters of Greater Sacramento relied on a fragmented system of manual spreadsheets, isolated form builders, and disconnected communication tools. This siloed approach created a significant operational bottleneck: staff spent hours manually copying data, applicants suffered from "form fatigue," and critical compliance tracking required constant, manual oversight.
I architected a custom Enterprise Resource Planning (ERP) ecosystem on Replit to serve as a unified orchestration layer. Moving beyond a standard web portal, the Hub centralizes the entire mentorship lifecycle—from initial application to active match support.
The Community Hub transformed a manual administrative burden into a streamlined operational engine. By automating repetitive tasks and enforcing compliance programmatically, the system reclaims critical staff hours, allowing the agency to focus funding and energy directly on what matters most: vetting, interviewing, and supporting life-changing mentorship matches.
This middleware enforces Strict Pathing. It programmatically locks applicants out of community features and interview scheduling until all mandatory background and safety checks are verified by staff, ensuring zero compliance leaks.
// TypeScript: Automated Compliance Gating & Feature Access export function evaluatePortalAccess(applicant: ApplicantProfile): PortalAccessState { // 1. Check mandatory security and compliance milestones const isComplianceCleared = applicant.orientationVerified && applicant.liveScanCleared && applicant.mandatedReporterCertified && applicant.nationalTrainingCompleted; // 2. Enforce Strict Pathing for unverified applicants if (!isComplianceCleared) { return { status: "enrolling", unlockedFeatures: ["EnrollmentStepper", "RequirementsHub"], lockedFeatures: ["CommunityFeed", "TicketClaims", "ActivityIdeas"], // Interview booking requires orientation and application completion interviewBookingAllowed: applicant.orientationVerified && applicant.applicationSubmitted }; } // 3. Grant full ecosystem access to fully vetted matches return { status: "active", unlockedFeatures: ["*"], interviewBookingAllowed: true }; }
Explore the live production environment or watch the architectural walkthrough documenting the build process from MVP to Enterprise ERP.
Launch Live Production AppUnified relational database linking Bigs, Littles, and Parents into a single synced entity.
Community features stay locked until Live Scan and National Training are staff-verified.
Middleware automatically scrubs sensitive child records (names, addresses) prior to any processing.
Automated SMS and email reminders to resolve the parent-response bottleneck.
Auditing judicial administrative workflows for a 5,000+ litigant caseload to mitigate operational bottlenecks and translating complex judicial codes into accessible digital guidance.
Spearheading compliance audits and technical training frameworks to ensure older adults can navigate an increasingly digital world safely and effectively.
Providing pro-bono technical architecture for grassroots nonprofits. By engineering accessible, WCAG-compliant digital platforms, I ensure mission-driven organizations have the modern infrastructure needed to scale their community impact.