Digital Infrastructure & Systemic Equity

Architecting the technical and legal pipes that redefine the social contract.

Legislative Infrastructure

CAMHPRO: Translating Prop 1/CARE Court mandates into the "Handcuffs Aren’t Housing" toolkit for statewide advocacy.

Legislative Bill
Statutory Framework
Policy-Tech Processing
Python / Data Automation
Accessible Toolkit
WCAG 2.1 Delivery
Download Strategic Advocacy Framework View Sanitized "Handcuffs Aren't Housing" Toolkit

BBBS Community Hub: Enterprise Intake & Mentorship ERP

The Challenge

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.

The Architecture

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 Impact

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.

Architectural Highlight: Compliance Verification Engine

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
  };
}

BBBS Community Hub: Live Demonstration

Explore the live production environment or watch the architectural walkthrough documenting the build process from MVP to Enterprise ERP.

Launch Live Production App

Phase 1: Architecture & Logic

A walkthrough of the initial UI steppers, the operational funnel, and the foundational logic before scaling to a multi-tenant environment.

Production Features

  • Match Triangle Architecture

    Unified relational database linking Bigs, Littles, and Parents into a single synced entity.

  • Strict Pathing & Compliance Gates

    Community features stay locked until Live Scan and National Training are staff-verified.

  • AIGP/NIST Data Governance

    Middleware automatically scrubs sensitive child records (names, addresses) prior to any processing.

  • Omnichannel Nudge Engine

    Automated SMS and email reminders to resolve the parent-response bottleneck.

Digital Divide & Literacy

Superior Court of California (Kings County)

Auditing judicial administrative workflows for a 5,000+ litigant caseload to mitigate operational bottlenecks and translating complex judicial codes into accessible digital guidance.

View Sanitized Workflow Audit

Cyber-Seniors

Spearheading compliance audits and technical training frameworks to ensure older adults can navigate an increasingly digital world safely and effectively.

View Digital Literacy Framework

Pro-Bono Work

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.

Full-Stack Web Dev TypeScript / Node Process Automation WCAG 2.1 Compliance User-Centered Design