Development Roadmap

HUD Asset Sales Platform Build Plan

A purpose-built transaction platform for HUD's Office of Asset Sales, supporting HVLS, HNVLS, SFLS, and MHLS loan sale programs. Replacing Falcon Capital's white-labeled Mission Capital portal with an intelligent, unified system.

7
Build Days
14
Platform Pages
4
Sale Programs
Apr 9
Client Meeting
Build Phases
7-day sprint targeting the April 9 client presentation. Each phase builds on the previous.
0
Requirements & Research
March 10 – April 1, 2026
Complete
Primary source research, stakeholder surveys, PWS analysis, regulatory review, and competitive intelligence gathering.
  • Compile HUD OAS primary source documentation (Federal Register, eCFR, OIG reports)
  • Analyze PWS for all 13 contract modules and deliverable requirements
  • Build and deploy 48-question requirements gathering survey Live
  • Collect and synthesize 3 stakeholder responses (TS operator, nonprofit bidder, institutional bidder)
  • Build live survey analysis dashboard with Google Sheets integration Live
  • Research federal AI regulations (M-25-21, FedRAMP, NIST, Fair Housing Act compliance)
  • Add self-registration with SendGrid email verification to survey
1
Platform Foundation
April 2, 2026 (Day 1)
In Progress
Design system, shared components, routing infrastructure, and realistic demo data for all four sale programs.
  • Initialize GitHub repo and Vercel deployment pipeline jhouse84/hud-oas-platform
  • Design system CSS — 1,100 lines covering typography, layout, cards, tables, badges, forms, modals, bid inputs, chat panel
  • Hash-based SPA router with parameterized routes
  • Utility library — currency formatting, date helpers, CSV export, program type metadata
  • Shared component library — stat bars, sale cards, data tables, timelines, modals, tabs, bid inputs
  • Demo data: 4 sales, 50 HVLS loans, 30 SFLS loans, 8 MHLS deals, 8 bidder profiles, 15 bids
  • VDR document manifests (MHLS 25+ section Volume 1 & 2 structure)
  • Sale lifecycle timelines with milestone data for all 4 sales
2
Bidder Portal
April 3–4, 2026 (Days 2–3)
Upcoming
The external-facing bidder experience — from sale discovery through bid submission. This is what HUD's bidders interact with.
  • Sale Listings — Card grid with program badges, filter tabs (All/Active/Upcoming/Closed), key dates and bidder counts
  • Data Room / Loan Tape Viewer — Three-panel layout: document browser, sortable/filterable ALD table, Q&A module
  • HVLS-specific data presentation: BPO + Estimated Total Debt (not UPB), HECM-aware terminology
  • MHLS deal-level document tree with Volume 1 (25+ sections) and Volume 2 structure
  • In-browser filtering (state, property type, value range) with one-click CSV/Excel export
  • Bid Submission — HVLS: % of BPO with calculator; MHLS: $/loan per deal; SFLS: % of UPB
  • Bid sandbox/test mode with orange warning banner
  • Bid confirmation modal with conforming/non-conforming validation
3
TS Admin Console
April 4–5, 2026 (Days 3–4)
Upcoming
The operator-facing console — sale management, bidder vetting, bid day operations, and compliance. This shows HUD our operational capability.
  • Dashboard — Active sales overview, deadline tracker, registration counts, days to next bid day
  • Bidder Qualification Pipeline — Application tracker: Submitted → Under Review → OFAC/SAM → OGC → Approved/Rejected
  • Bid Day Operations — Live bid monitoring, countdown timer, conforming/non-conforming counts, issues log
  • 30-minute bid summary auto-generation and BEM results view with ranked bids per pool
  • Sale configuration interface — create/manage sales, pool construction, date management
  • Data room management — upload/manage loan data and documents
4
Showcase & Presentation
April 5–6, 2026 (Days 4–5)
Upcoming
Marketing showcase page on housestrategiesgroup.com and client-facing presentation materials.
  • Platform Showcase Page — Feature breakdowns, prototype screenshots, architecture overview
  • Survey findings integration — key insights from requirements gathering displayed as cards
  • Compliance callouts — FedRAMP, NIST 800-53, Section 508, FISMA badges
  • CTAs linking to live bidder portal and admin console demos
5
AI, Polish & Deploy
April 6–8, 2026 (Days 5–7)
Upcoming
AI assistant demo, secondary features, cross-browser QA, and production deployment.
  • AI Assistant Panel — Scripted demo chat with keyword matching, typing animation, starter prompts
  • Bidder registration & qualification form — multi-step with real-time validation, re-qualification fast-track
  • Award status & settlement tracker — timeline view with deposit/PSA/settlement milestones
  • Post-sale compliance hub — reporting schema, breach portal, Commissioner's Report template
  • Cross-browser QA (Chrome, Edge, Safari) and responsive testing
  • Vercel production deployment with custom domain configuration
  • Presentation walkthrough rehearsal for April 9 meeting
Platform Deliverables
👤
Bidder Portal
Sale listings, data room with loan tape viewer, program-specific bid submission, award tracking
bidder.html
TS Admin Console
Dashboard, sale config, bidder pipeline, bid day operations, compliance hub, AI assistant
admin.html
🏆
Platform Showcase
Marketing page on HSG site presenting capabilities, survey findings, and architecture
housestrategiesgroup.com
📊
Survey Analyzer
Live dashboard synthesizing stakeholder feedback from requirements gathering survey
survey-analyzer.html Live
📝
Requirements Survey
48-question survey with self-registration, email verification, and voice dictation
Requirements-Gathering-Survey.html Live
🤖
AI Intelligence Layer
Document classification, portfolio analytics, bid anomaly detection, contextual help — all human-in-the-loop
Integrated across platform
File Architecture
hud-oas-platform/ ├── bidder.html ← Bidder Portal SPA ├── admin.html ← TS Admin Console SPA ├── plan.html ← This development plan ├── shared/ │ ├── design-system.css ← 1,100-line design system │ ├── router.js ← Hash-based SPA router │ ├── components.js ← Reusable UI renderers │ ├── utils.js ← Formatters & helpers │ ├── ai-chat.js ← AI assistant panel │ ├── nav-bidder.js ← Bidder top nav │ └── nav-admin.js ← Admin sidebar nav └── data/ ├── sales.js ← 4 active sales ├── loans-hvls.js ← 50 HECM vacant loans ├── loans-sfls.js ← 30 forward FHA loans ├── loans-mhls.js ← 8 MF/HC deals ├── bidders.js ← 8 bidder profiles ├── bids.js ← Sample bid data ├── documents.js ← VDR doc manifests └── timeline.js ← Sale milestones