Total Repositories: 63 (mix of public and private) Key Focus: Background Check Platform (Utilyze/Vuplicity)
- Vuplicity (private) - Main platform
- fcra-compliance-system (private) - FCRA compliance system
- background-check-mcp (private) - MCP integration
- mcp-background-check-agent (private) - Multi-provider MCP service
- Vuplicity-Progress (private) - UI/UX flow
- Utlyze-optionB (private) - Alternative implementation
- utah-bgc-mesh (private) - Utah background check mesh
- ai-trinity-data-extraction - AI Trinity framework
- ai-image-animation-pipeline - AI image generation
- heygen-mcp-adapter - HeyGen API integration
- tiktok-mcp-adapter - TikTok API integration
- Agent-starter-kit - Agent development kit
- Overseer - Repo overseer action
- website-eater - AI-powered URL digestion
- fishrewards-nft - Sustainable fishing rewards
- royal-rwa (private) - Tokenized real-world assets
- blockchain-reward-hub (private) - DeFi rewards platform
- Chrysalis (private) - Main crypto project
- Various fish-related reward dashboards
- RoyalCalcV2 - Financial calculator
- FlashCardsofPOWER - Flashcard application
- loom-autopublisher - Loom video automation
- TimingApp-MCP - Timing API proxy
- Tanks-of-Glory - Game project
- STRIDE - Fitness related
- cats_gallery_by_H3RO - Cat gallery
- happy-43rd-birthday-bryan (private) - Birthday project
Architecture:
- GitHub Webhooks → N8N → Supabase
- Real-time updates on commits/PRs/issues
- Automated project metadata extraction
- Link commits to Notion tasksArchitecture:
- Cron job (hourly/daily)
- GitHub API → Process → Database
- Aggregate statistics and insights
- Lower API usage, delayed updatesArchitecture:
- Critical repos: Real-time webhooks
- Others: Daily batch sync
- Smart caching layer
- Integration with existing systems-- Projects table
CREATE TABLE github_projects (
id UUID PRIMARY KEY,
repo_name TEXT NOT NULL,
repo_id INTEGER UNIQUE,
description TEXT,
is_private BOOLEAN,
category TEXT,
language TEXT,
created_at TIMESTAMP,
updated_at TIMESTAMP,
last_push TIMESTAMP,
stars INTEGER,
forks INTEGER,
open_issues INTEGER,
notion_page_id TEXT, -- Link to Notion
cloze_project_id TEXT -- Link to Cloze
);
-- Commits table
CREATE TABLE github_commits (
id UUID PRIMARY KEY,
repo_id INTEGER REFERENCES github_projects(repo_id),
commit_sha TEXT UNIQUE,
message TEXT,
author TEXT,
timestamp TIMESTAMP,
files_changed INTEGER,
additions INTEGER,
deletions INTEGER
);
-- Issues table
CREATE TABLE github_issues (
id UUID PRIMARY KEY,
repo_id INTEGER REFERENCES github_projects(repo_id),
issue_number INTEGER,
title TEXT,
state TEXT,
labels JSONB,
assignees JSONB,
created_at TIMESTAMP,
updated_at TIMESTAMP,
linked_tasks JSONB -- Links to Notion/Cloze tasks
);
-- Pull Requests table
CREATE TABLE github_prs (
id UUID PRIMARY KEY,
repo_id INTEGER REFERENCES github_projects(repo_id),
pr_number INTEGER,
title TEXT,
state TEXT,
base_branch TEXT,
head_branch TEXT,
created_at TIMESTAMP,
merged_at TIMESTAMP,
review_status TEXT
);- Link GitHub repos to Notion project pages
- Sync issues/PRs to Notion tasks
- Update project status based on GitHub activity
- Create release notes in Notion
- Link repositories to customer projects
- Track development milestones
- Associate commits with customer requests
- Generate activity reports
- Development velocity metrics
- Code quality trends
- Team contribution analysis
- Project health indicators
- Create Supabase tables
- Set up GitHub webhook endpoints
- Build initial data import script
- Test with 5 key repositories
- Implement webhook handlers
- Build batch sync for all repos
- Create data transformation layer
- Set up error handling
- Connect to Notion API
- Link with Cloze projects
- Build analytics views
- Create notification system
- N8N workflow setup
- Automated reporting
- Alert system for critical events
- Performance optimization
- Vuplicity - Main product
- fcra-compliance-system - Compliance backbone
- background-check-mcp - MCP integration
- ai-trinity-data-extraction - AI framework
- Overseer - Meta-management tool
- API rate limit tracking
- Sync failure alerts
- Data consistency checks
- Performance metrics
- Storage optimization
- Encrypt sensitive repo data
- Audit trail for all syncs
- Access control by repo visibility
- Secure webhook endpoints
- Regular security reviews