streamable-httpupdated 8d ago
Personal website for Christian Perez (@thechrisgrey) | Founder & CEO of Altivum Inc. | Former Green Beret (18D Special Forces Medical Sergeant) | Bronze Star Recipient | Host of The Vector Podcast | Author of "Beyond the Assessment"
What can you do with thechrisgrey?
thechrisgrey.com
Personal website for Christian Perez (@thechrisgrey) | Founder & CEO of Altivum Inc. | Former Green Beret (18D Special Forces Medical Sergeant) | Bronze Star Recipient | Host of The Vector Podcast | Author of "Beyond the Assessment"
Table of Contents
- Technology Stack
- Features
- Architecture
- AWS Infrastructure
- Getting Started
- Testing
- Environment Variables
- Deployment
- Project Structure
- Key Integrations
- Design System
- License
Technology Stack
| Layer | Technology |
|---|---|
| Frontend | React 19, TypeScript 5, Vite 5 (Vitest 4, ESLint 10 flat config) |
| Styling | Tailwind CSS 4 (CSS-first @theme config, Oxide engine) |
| Routing | React Router 7 |
| CMS | Sanity.io (blog content) |
| AI Chat | Amazon Bedrock (Claude Haiku 4.5) + RAG |
| Auth | Amazon Cognito (admin panel) |
| Hosting | AWS Amplify |
| CDN/Analytics | Cloudflare Web Analytics |
| Testing | Vitest + React Testing Library + Cypress |
| Code Quality | ESLint, strict TypeScript |
Features
Pages
- Home : Scroll-based animations with sticky profile sections
- About : Personal biography and military background
- Altivum Inc : Company showcase and services
- The Vector Podcast : YouTube embeds, Spotify player, collapsible episode list
- Beyond the Assessment : Book information and purchase links
- Blog : Sanity CMS-powered with categories, tags, series, and reading progress
- AI Chat : Full-viewport conversational AI with RAG-enhanced responses
- Claude : AWS certifications and Claude expertise showcase
- AWS : AWS partnership and community builder profile
- Admin : Cognito-authenticated KB management and site health dashboard
- Links : Linktree-style quick links
- Contact : Contact form, speaking topics, downloadable press kit
Technical Highlights
- SEO : JSON-LD structured data, Open Graph, dynamic sitemap, RSS feed
- AI Chat with RAG : Bedrock Knowledge Base retrieval with streaming responses
- Podcast Auto-Sync : YouTube Data API fetches episodes at build time
- Chat Widget : Floating chat widget available across all pages
- Metrics Dashboard : CloudWatch and DynamoDB-backed operational metrics
- Error Boundaries : Page-level error handling with custom fallback UIs
- Accessibility : Focus trapping, keyboard navigation, ARIA labels, skip links
- Performance : Image optimization (Sharp/SVGO), lazy loading, code splitting, manual chunking
Architecture
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā FRONTEND (React) ā
ā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā ā
ā ā Home ā ā Podcast ā ā Blog ā ā Chat ā ... ā
ā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā āāāāāāāāāāāā ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā ā ā ā
ā¼ ā¼ ā¼ ā¼
āāāāāāāāāāāāā āāāāāāāāāāāāā āāāāāāāāāāāāā āāāāāāāāāāāāāāāāā
ā Amplify ā ā YouTube ā ā Sanity ā ā Bedrock ā
ā Hosting ā ā Data API ā ā CMS ā ā + RAG (KB) ā
āāāāāāāāāāāāā āāāāāāāāāāāāā āāāāāāāāāāāāā āāāāāāāāāāāāāāāāā
(build-time) (runtime) (Lambda stream)
AI Chat Request Flow
User Message
ā
ā¼
Lambda Function URL (streaming)
ā
āāā> Bedrock Knowledge Base (retrieve context)
ā ā
ā ā¼
ā S3 Vectors (autobiography chunks)
ā
āāā> Bedrock Guardrails (content filtering)
ā
āāā> Bedrock ConverseStream API (Claude Haiku 4.5)
ā
ā¼
Streaming Response -> Client
AWS Infrastructure
| Service | Resource | Region | Purpose |
|---|---|---|---|
| Amplify | d3du8eg39a9peo |
us-east-2 | Hosting, CI/CD |
| Lambda | thechrisgrey-chat-stream |
us-east-1 | AI chat streaming |
| Lambda | thechrisgrey-contact-email |
us-east-2 | Contact form |
| Lambda | thechrisgrey-newsletter-subscription |
us-east-2 | Newsletter |
| Lambda | thechrisgrey-kb-sync |
us-east-1 | KB auto-sync on S3 changes |
| Lambda | thechrisgrey-kb-builder |
us-east-1 | KB admin CRUD operations |
| Lambda | thechrisgrey-metrics |
us-east-1 | Metrics collection and reporting |
| Bedrock KB | ARFYABW8HP |
us-east-1 | RAG knowledge base |
| Cognito | User Pool | us-east-1 | Admin authentication |
| S3 | thechrisgrey-kb-source |
us-east-1 | KB source documents |
| S3 | thechrisgrey-vectors |
us-east-1 | Vector embeddings |
| DynamoDB | thechrisgrey-chat-ratelimit |
us-east-1 | Rate limiting (20 req/hr/IP) |
| Secrets Manager | thechrisgrey/youtube-api-key |
us-east-1 | YouTube API key |
| CloudWatch | tcg-AI-chat |
us-east-1 | Bedrock invocation logs |
Getting Started
Prerequisites
- Node.js 20.x (see
.nvmrc) - npm
- AWS CLI (for deployment)
Installation
git clone https://github.com/thechrisgrey/thechrisgrey.git
cd thechrisgrey
npm install
Development
npm run dev # Start dev server at http://localhost:5173
npm run build # Full production build
npm run preview # Preview production build
npm run lint # Run ESLint
Build Pipeline
The production build runs these steps in sequence:
validate-env -> podcast-episodes -> lint -> tsc -> vite build -> sitemap -> rss
Testing
| Framework | Scope | Command |
|---|---|---|
| Vitest | Unit + Integration | npm test |
| Vitest | Watch mode | npm run test:watch |
| Vitest | Coverage report | npm run test:coverage |
| Cypress | E2E (headless) | npm run cy:run |
| Cypress | E2E (interactive) | npm run cy:open |
| node:test | Lambda unit + contract | npm run test:lambda |
The test suite includes unit tests for components, hooks, and utilities; integration tests for page-level behavior; and end-to-end tests covering navigation, chat, blog, and contact flows.
Live-API contract tests (opt-in)
Critical external boundaries ā Cognito admin auth, the live Sanity client, Bedrock KB retrieval, and the Bedrock guardrail ā are also covered by opt-in contract tests that exercise the real services (green mocks alone can drift from reality). They skip cleanly during npm run test:lambda and CI, and only run when their flag + AWS/Sanity credentials are present:
COGNITO_CONTRACT_TESTS=1 COGNITO_CLIENT_ID=⦠COGNITO_TEST_EMAIL=⦠COGNITO_TEST_PASSWORD=⦠\
node --test lambda/shared/__tests__/cognito-contract.test.mjs
SANITY_CONTRACT_TESTS=1 node --test lambda/chat-stream/__tests__/sanity-contract.test.mjs
KB_RETRIEVE_CONTRACT_TESTS=1 node --test lambda/chat-stream/__tests__/kb-retrieve-contract.test.mjs
BEDROCK_CONTRACT_TESTS=1 node --test lambda/blueprint/__tests__/guardrail-contract.test.mjs
See .env.example for the full list of flags and required permissions. Run these before a release (or on a scheduled job) to catch response-shape/schema drift that unit mocks can't.
Environment Variables
Set in AWS Amplify console or in a local .env file:
| Variable | Description | Required |
|---|---|---|
VITE_CHAT_ENDPOINT |
Lambda Function URL for AI chat | Yes |
VITE_CONTACT_ENDPOINT |
Lambda Function URL for contact form | Yes |
VITE_NEWSLETTER_ENDPOINT |
Lambda Function URL for newsletter | Yes |
VITE_COGNITO_USER_POOL_ID |
Cognito User Pool ID (admin auth) | Yes |
VITE_COGNITO_CLIENT_ID |
Cognito App Client ID | Yes |
VITE_KB_BUILDER_ENDPOINT |
Lambda Function URL for KB admin | Yes |
VITE_CHAT_SIGNING_KEY |
HMAC signing key for chat requests | Yes |
VITE_METRICS_ENDPOINT |
Lambda Function URL for metrics | Yes |
YOUTUBE_API_KEY |
YouTube Data API v3 key (build-time only) | Yes |
VITE_ prefixed variables are bundled into the frontend. YOUTUBE_API_KEY is only used during the build step.
Deployment
Automatic (Recommended)
Push to main triggers automatic Amplify deployment:
git push origin main
Manual Rebuild
aws amplify start-job \
--app-id d3du8eg39a9peo \
--branch-name main \
--job-type RELEASE \
--region us-east-2
Lambda Deployment
Each Lambda function is deployed independently via a single verified script. The script
installs from the lockfile, dereferences the lambda-shared symlink into the bundle, and
verifies the entire module graph resolves before upload ā so a deploy can no longer ship
a Lambda that crashes on cold start.
# Verify the bundle builds and resolves, without uploading:
npm run deploy:lambda -- chat-stream --dry-run
# Deploy for real:
npm run deploy:lambda -- chat-stream
Works for any Lambda under lambda/ (e.g. chat-stream, blueprint, kb-builder,
metrics, kb-sync, mcp-server). Pass --region <r> to override the default
(us-east-1). Do not hand-build function.zip ā the manual zip glob omits the
sibling modules each handler imports and produces a broken artifact.
Project Structure
thechrisgrey/
āāā public/ # Static assets (served as-is)
ā āāā assets/documents/ # Downloadable PDFs
ā āāā press-kit/ # Press materials + archive
ā āāā .well-known/security.txt
ā āāā robots.txt
ā āāā og.png # Open Graph image
ā āāā favicon.png
ā
āāā src/
ā āāā components/
ā ā āāā admin/ # Admin panel (login, KB entries, site health)
ā ā āāā chat/ # AI chat (message, input, suggestions, widget)
ā ā āāā ui/ # Base UI (Button, FormInput, IconButton)
ā ā āāā Navigation.tsx
ā ā āāā Footer.tsx
ā ā āāā SEO.tsx # Meta tags + JSON-LD
ā ā āāā ErrorBoundary.tsx
ā ā āāā ErrorFallbacks.tsx
ā ā āāā EpisodeCard.tsx
ā ā āāā NewsletterForm.tsx
ā ā āāā ReadingProgressBar.tsx
ā ā āāā ...
ā ā
ā āāā pages/ # Route-level page components
ā ā āāā Home.tsx, About.tsx, Altivum.tsx, Podcast.tsx
ā ā āāā BeyondTheAssessment.tsx, Blog.tsx, BlogPost.tsx
ā ā āāā Chat.tsx, Claude.tsx, AWS.tsx, Admin.tsx
ā ā āāā Contact.tsx, Links.tsx, Privacy.tsx
ā ā āāā NotFound.tsx
ā ā
ā āāā hooks/ # Custom React hooks
ā ā āāā useAuth.ts # Cognito authentication
ā ā āāā useChatEngine.ts # Chat state and streaming
ā ā āāā useFocusTrap.ts # Modal focus management
ā ā āāā useKbAdmin.ts # KB admin operations
ā ā āāā usePageContext.ts # Page-level context for chat
ā ā āāā useSessionStorage.ts # Typed sessionStorage with Date revival
ā ā āāā useSiteHealth.ts # Site health monitoring
ā ā
ā āāā sanity/ # Sanity CMS client, queries, types, cache
ā āāā utils/ # Typography, schemas, validators, web vitals
ā āāā constants/ # Social links
ā āāā types/ # TypeScript interfaces
ā āāā data/ # Podcast episode data (generated + fallback)
ā āāā assets/ # Optimized images (Vite processed)
ā ā
ā āāā __tests__/
ā ā āāā integration/ # Page-level integration tests
ā ā āāā setup.ts
ā ā
ā āāā App.tsx # Routes, layout, error boundaries
ā āāā main.tsx # Entry point
ā āāā index.css # Tailwind directives
ā
āāā lambda/
ā āāā shared/ # Shared utilities (auth, rate limiting, response)
ā āāā chat-stream/ # Bedrock streaming Lambda
ā āāā kb-sync/ # Knowledge Base auto-sync
ā āāā kb-builder/ # KB admin CRUD
ā āāā metrics/ # Metrics collection
ā
āāā scripts/
ā āāā validate-env.js # Build-time env validation
ā āāā generate-podcast-episodes.js # YouTube API fetch
ā āāā generate-sitemap.js # Sitemap from Sanity
ā āāā generate-rss.js # RSS feed from Sanity
ā
āāā cypress/ # E2E tests
ā āāā e2e/ # Test specs
ā āāā fixtures/ # Test data
ā āāā support/ # Custom commands
ā
āāā docs/ # Internal documentation and plans
āāā .github/workflows/ci.yml # GitHub Actions CI
āāā amplify.yml # Amplify build config
āāā tailwind.config.js
āāā vite.config.ts
āāā vitest.config.ts
āāā cypress.config.ts
āāā tsconfig.json
Key Integrations
Sanity CMS (Blog)
- Project ID:
k5950b3w| Dataset:production - Content includes blog posts with categories, tags, series, and Portable Text rich content
- Client-side caching via
postCache.tswith Date revival
YouTube Data API (Podcast)
Episodes are fetched at build time from the @AltivumPress channel.
generate-podcast-episodes.jsruns during the build step- Fetches channel, uploads playlist, and video details
- Generates
src/data/generatedEpisodes.json - Falls back to static data if the API is unavailable
Amazon Bedrock (AI Chat)
- Model: Claude Haiku 4.5 (
us.anthropic.claude-haiku-4-5-20251001-v1:0) - Knowledge Base:
ARFYABW8HP(autobiography chunks) - Guardrail:
5kofhp46ssob(content filtering) - Rate Limit: 20 requests/hour per IP (DynamoDB-backed)
- Streaming responses via Lambda Function URL with RAG retrieval (5 chunks per query)
Cloudflare Web Analytics
Privacy-friendly, cookie-free analytics with no personal data collection.
Design System
Color Palette
| Name | Hex | Usage |
|---|---|---|
altivum-dark |
#0A0F1C |
Backgrounds |
altivum-navy |
#1A2332 |
Cards, nav |
altivum-blue |
#2E4A6B |
Accents |
altivum-slate |
#4A5A73 |
Borders, muted |
altivum-silver |
#9BA6B8 |
Body text |
altivum-gold |
#C5A572 |
Highlights, CTAs |
Typography
SF Pro Display with system font fallbacks. Ultra-light weight (200) throughout. Defined in src/utils/typography.ts.
Animations
animate-fade-in: Hero entrance (1.2s)animate-nav-fade-in: Nav delayed entrance (0.8s, 2s delay)shimmer: Background shimmer effectwidget-open: Chat widget expansion (250ms)
License
Copyright 2026 Christian Perez. All rights reserved.
For inquiries, use the contact form or email via the website.
Install
Add thechrisgrey to your client. Pick the one you use.
claude mcp add --transport http thechrisgrey https://mcp.thechrisgrey.comcodex mcp add thechrisgrey --url https://mcp.thechrisgrey.com{
"mcpServers": {
"thechrisgrey": {
"url": "https://mcp.thechrisgrey.com"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"thechrisgrey": {
"type": "http",
"url": "https://mcp.thechrisgrey.com"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"thechrisgrey": {
"url": "https://mcp.thechrisgrey.com"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"thechrisgrey": {
"serverUrl": "https://mcp.thechrisgrey.com"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Apr 21, 2026 |