🔐
Tony Developer Hub
Austin Visuals · Restricted access
⚡ Developer viewport
Open viewport into Tony’s live operating stack.

This homepage now opens like a cockpit instead of a plain doc. It gives a fast visual read on the dashboard, core services, and the parts of Tony a developer will touch first.

Live surface
Dashboard + services + gateway

Static frontend, FastAPI microservices, and OpenClaw working together as one operating system.

WebCaddy + static HTML
AIOpenClaw orchestration
AppsFastAPI service mesh
MemoryMarkdown + semantic recall
First stops
Architecture, services, routes

Use this page as a launch surface, then drill into ports, credentials, and route ownership below.

Build posture
Thin frontend, fast iteration

Edit the live HTML, keep changes surgical, and treat the VPS dashboard as production authority.

What is Tony?

Tony is the AI operating system for Austin Visuals — a custom-built, self-hosted AI platform that handles everything from client communication and project management to lead capture, content publishing, and internal tooling. It's not a single app — it's a collection of microservices, AI pipelines, dashboards, and automations that run 24/7 on a VPS.

💡
For the new dev: Read this page top-to-bottom first, then go to Architecture for the system map, Services & Ports for the microservice inventory, and Infrastructure for server access. The Integrations tab has every connected API and where credentials live.

🏠 The VPS (Tony's Brain)

Primary server at 2.24.29.245. Runs Caddy as the web server, ~20 Python FastAPI microservices, and the OpenClaw gateway. All the heavy lifting happens here.

🌐 Tony Dashboard

The main internal interface at tony.austinvisuals.com. Role-gated — different team members see different tools. Built as static HTML + FastAPI backends. No React, no build step.

🤖 OpenClaw Gateway

The AI backbone. Routes messages from Telegram → Claude/GPT/Venice/Grok. Manages sessions, memory, cron jobs, and model fallbacks. Tony "talks" via Telegram to Matt.

🗄️ Memory System

Hybrid: local markdown files in /root/.openclaw/workspace/memory/ + Mem0 cloud for semantic search. Tony reads these at session start to restore context across resets.

🔌 Microservices

~20 Python FastAPI services running on ports 8787–8799+. Each owns a vertical: auth, receipts, SMS, interns, AI studio, storyboards, tasks, research, etc.

⏰ Cron Jobs

Dozens of scheduled jobs run via OpenClaw's cron engine. Daily blog posts, SEO passes, email monitoring, contact form checks, lead enrollment, Google Ads monitoring, and more.

🖥️ Local Hardware Fleet

VPS is the hub. Mac mini, MacBook Pro, and Mac Studio connect back via reverse SSH tunnels. Local models (Ollama) run on Mac hardware to reduce API costs.

👥 Multi-Persona AI

Tony (ops/strategy), Jennifer (HR/recruiting), Gerald Thorne (legal), Espresso Tony (interns). Each has a separate email, personality, and access scope.

System Architecture

Tony is a layered system. Traffic flows: User (Telegram/Web) → OpenClaw Gateway → FastAPI Services → External APIs. The VPS is the single hub; Mac hardware connects back via reverse SSH tunnels for local model inference.

# Telegram (Matt) → message arrives Matt (Telegram 613132769) → OpenClaw Gateway (business agent) → Primary model: venice/claude-sonnet-4-6Fallbacks: venice/claude-opus-4-8 → anthropic/claude-sonnet-4-6 → xai/grok-4-1-fast → openai/gpt-5.4 → Tony reads memory files + acts via tools → May call internal microservices (HTTP) or external APIs # Web (team member) → dashboard request Browser → tony.austinvisuals.com (Caddy on VPS) → Static HTML served from /var/www/tony/ → Auth calls proxy to auth.py on :8890 (Google OAuth) → API calls proxy to relevant microservice (:8787–:8799+) → Microservice calls external APIs as needed

Layer 1 — Web Server

Caddy handles all inbound HTTPS on the VPS. Serves static files from /var/www/tony/ and reverse-proxies /auth/*, /api/*, and /webhooks/* to backend services.

Caddyfile: /etc/caddy/Caddyfile

Layer 2 — Auth

Google OAuth2 via auth.py on :8890. Issues XD session tokens stored in /var/www/tony/data/users.json. Every role has defined page/feature access enforced server-side.

:8890

Layer 3 — Microservices

~20 FastAPI services on dedicated ports. Each is independent — they don't share state or import each other. Inter-service communication uses HTTP (bridge pattern).

:8787 – :8799+

Layer 4 — AI Gateway

OpenClaw manages AI sessions, memory, cron jobs, and model routing. Tony's "consciousness" lives here. Config at ~/.openclaw/openclaw.json.

Gateway daemon

Layer 5 — Memory

Local markdown files at /root/.openclaw/workspace/memory/ store structured context. Mem0 cloud (API key in secrets) handles semantic search across longer history.

Local + Mem0 API

Layer 6 — Local Hardware

Mac mini (port 2223), MacBook Pro (2222), Mac Studio (2224) tunnel back to VPS via reverse SSH. Ollama runs on Mac hardware for cheap local inference. Primary target: Mac mini for always-on work.

Reverse SSH tunnels
# VPS — main server (root@2.24.29.245) Live site files: /var/www/tony/ Site data/JSON: /var/www/tony/data/ Auth service: /var/www/tony/auth.py Caddy config: /etc/caddy/Caddyfile OpenClaw workspace: /root/.openclaw/workspace/ Scripts: /root/.openclaw/workspace/scripts/ Memory files: /root/.openclaw/workspace/memory/ Secrets/credentials: /root/.openclaw/secrets/ OpenClaw config: /root/.openclaw/openclaw.json OpenClaw agent config: /root/.openclaw/agents/business/ # VPS3 — CitéHub server (root@2.24.70.39) CitéHub live files: /var/www/citehub/public/ # Mac mini (via SSH: ssh -p 2223 tony@127.0.0.1 from VPS) Scripts: ~/av-scripts/ Virtualenv: ~/av-scripts/.venv/ Ollama models: running on :11434 (tunneled to VPS :18434)
⚠️
No build step needed for the dashboard. Edit HTML → copy to /var/www/tony/ → live immediately. Caddy serves static files. No restart required. GitHub is backup only — not production authority.

Microservices & Ports

All services run as Python FastAPI apps managed by systemd on the VPS. Each owns a specific domain. Do not cross-import between services — use HTTP calls.

PortServiceScriptWhat it doesStatus
8787Storyboardstoryboard_service.pyAI storyboard generation, frame management, Dropbox exportLive
8789Animationanimation_service.pyAnimation project pipeline, render trackingLive
8790AI Studioai_studio_service.pyImage/video generation, Runway, ElevenLabs, asset managementLive
8792Receiptreceipt_service.pyGmail receipt monitoring, QuickBooks upload, OAuth callbacks (QBO, Dropbox)Live
8793SMSsms_service.pyTwilio/Telnyx SMS, cost estimator leads, inbound SMS routingLive
8794Group Leadsgroup_leads_service.pyFacebook group lead capture, Google Sheet sync, Listmonk enrollmentLive
8795Intern Hubintern_service.pyIntern chat (Espresso Tony), task assignment, image gen, onboardingLive
8796Chat / Councilchat_service.pyTony council chat, Nancy/Matt chat interfacesLive
8797Researchresearch_service.pyCompetitor intel, market analysis, Brave Search integrationLive
8798Assetsassets_service.pyAsset library, Dropbox browse, transcript summarizationLive
8799Taskstasks_service.pyInternal task management, Tasker notifications, project assignmentsLive
8888Review Portalreview_service.pyClient video review, approval/feedback workflow (review.austinvisuals.com)Live
8890Authtony_auth_service.pyGoogle OAuth2, XD session tokens, role enforcement, SocialTony proxyLive
5200SocialTony Proxysocialtony_proxy.pySocial media scheduling dashboard, LateWiz integration, intern review queueLive
9000ListmonkEmail marketing / newsletter sends (Docker container)Live
8804Gmail WebhookReceives Gmail push notifications for real-time inbox monitoringLive
# Key automation scripts in /root/.openclaw/workspace/scripts/ email_monitor.py # Monitors matt@ + tony@ inbox, auto-captures leads to CRM matt_presence.py # Detects Matt's active hours via Gmail signal, Telegram alert nancy_inbox_monitor.py # Monitors Nancy's inbox for project updates groupleads_sheet_sync.py # Syncs Group Leads Chrome ext sheet → Listmonk every 15min daily_site_blog.py # Blog generation for austincreatives, citehub, medical3d, austinvisuals contact_form_report_runner.py # Tests AV contact forms, reports to Matt cost_tracker.py # Tracks AI API spend vs QuickBooks actuals local_llm_router.py # Routes cheap tasks to Mac mini Ollama, expensive to cloud crm_lib.py # CRM library — Google Sheets lead tracking, dedup youtube_upload_guardian.py # YouTube OAuth upload wrapper for Austin Visuals channel google_ads_*.py # Google Ads campaign management scripts (accounts 371-884-2956 + 775-211-0314) citehub_rebuild_exports.py # Rebuilds CitéHub dataset pages, deploys to VPS3 weekly_intel.py # Weekly competitive intelligence report
Service rule: One service = one domain. New feature = new file first. No lazy cross-service imports. Use HTTP (bridge pattern) for inter-service calls.

AI Models & Routing

Tony routes different tasks to different models based on cost, capability, and latency. The goal is: cheap local models for repetitive/simple work, expensive cloud models only when the task needs it.

# ~/.openclaw/openclaw.json — global default Global default: xai/grok-4-1-fast # cheap fallback for all agents Business agent: venice/claude-sonnet-4-6 # Matt's Telegram — primary Fallback chain: venice/claude-opus-4-8 → anthropic/claude-sonnet-4-6 → xai/grok-4-1-fast → openai/gpt-5.4 # Background cron jobs (cost-optimized) Cheap wrappers: xai/grok-3-mini # reminders, cron orchestration wrappers SEO / content: openai/gpt-5.4 # Google Ads analysis, blog content Intern chat: Mac mini Ollama (local) → anthropic/claude-3-5-haiku-latest fallback
AliasProvider/ModelUse caseCost tier
opusvenice/claude-opus-4-8Complex reasoning, sensitive tasksHigh
venice-sonnetvenice/claude-sonnet-4-6Matt's Telegram primaryMed
fable5venice/claude-fable-5Matt's preferred model (gov't ban pending)High
sonnetanthropic/claude-sonnet-4-6Direct Anthropic fallbackMed
haikuanthropic/claude-3-5-haiku-latestFast simple tasksLow
GPTopenai/gpt-5.4Google Ads analysis, structured dataMed
xai/grok-4-1-fastGlobal default, fast cheap tasksLow
xai/grok-3-miniCron wrappers, background orchestrationLow
llama3.1:8b (Ollama)Local inference on Mac mini — freeFree
⚠️
Cost rule: NEVER spawn a Claude subagent for build/coding work without setting model: "venice/qwen3-235b" or another non-Claude model. A coding subagent with no model override cost $192 in one day (171k tokens on Sonnet). Default to doing build work in-session.
# Mac mini (always-on, low-risk tasks) SSH: ssh -p 2223 tony@127.0.0.1 (from VPS) Ollama: http://127.0.0.1:18434 (tunneled to VPS) Model: llama3.1:8b # Mac Studio (heavier tasks) SSH: ssh -p 2224 matthewwinters@127.0.0.1 # MacBook Pro (travel/opportunistic) SSH: ssh -p 2222 matthewwinters@127.0.0.1

Infrastructure

Two VPS servers, three Mac machines, Cloudflare for DNS/CDN, WP Engine for WordPress hosting. All Mac machines connect back to the VPS via persistent reverse SSH tunnels.

Auto-refreshing health map from the infra-monitor systemd timer, which rewrites /infra-status.json every 5 min. Green = ok · amber = warn · red = error · grey = unmonitored. Data older than 30 min shows as offline.
This is the ops / backups view (it mirrors what infra-status.json actually monitors — 3 VPS + the checked domain set). It intentionally differs from the product / hosting table below, which lists servers and domains by business purpose.

Loading infra-status.json…
ok warn error unmonitored offline / stale
NameIPRoleKey paths
VPS1 (Tony)2.24.29.245Primary — everything runs here/var/www/tony/, /root/.openclaw/
VPS3 (CitéHub)2.24.70.39CitéHub.ai hosting — kept separate from Tony IP/var/www/citehub/public/
MachineTunnel PortUserPrimary use
Mac mini (Tony's)2223tonyAlways-on Ollama, Facebook runner (archived), scripts
MacBook Pro (Matt's)2222matthewwintersGroup Leads Chrome extension, travel use
Mac Studio (Matt's)2224matthewwintersHeavy local inference, Whisper transcription
DomainPurposeHostingCloudflare
tony.austinvisuals.comInternal AI ops dashboardVPS1 (Caddy)Yes
austinvisuals.comMain client-facing siteWP EngineYes
review.austinvisuals.comClient video review portalVPS1Yes
medical3danimationcompany.comMedical 3D animation siteWP EngineYes
citehub.aiAI agent marketplace (in build)VPS3Yes
austincreatives.aiAustin creative community blogVPS1Yes
outrankaiseo.comSEO tool productVPS1Yes
# AustinVisuals.com SSH: austinvisuals@austinvisuals.ssh.wpengine.net port 22 Path: /sites/austinvisuals App password: /root/.openclaw/secrets/austinvisuals-wp-app-password.txt # Medical3D SFTP: medical3d.sftp.wpengine.com port 2222 user: medical3d-tony Path: /sites/medical3d App password: /root/.openclaw/secrets/m3d-wp-app-password.txt (format: user:token — strip user: prefix before use)

Integrations & APIs

All credentials live in /root/.openclaw/secrets/. The canonical registry is memory/tool-registry.md. Never hardcode credentials — always read from the secrets directory.

ServiceCredential fileNotes
Gmail (send)av-automation.jsonService account + domain-wide delegation. Sends as tony@/matt@/nancy@. This is the immortal path — never expires.
Gmail (read)av-automation.jsonSame SA, readonly scope. Monitors matt@, tony@, susan@, nancy@.
Telegram bottelegram-bot-token.txtMatt's chat ID: 613132769
Slack botslack-bot-token.txtAustin Visuals workspace
Twilio SMStwilio-account-sid.txt + twilio-auth-token.txtInbound/outbound SMS
Brevo (email mktg)brevo-api-key.txt⚠️ Currently over credit limit (2026-06-13). Migrate to Amazon SES.
ProviderCredentialPrimary use
Anthropicanthropic-api-key.txtClaude models (direct, non-Venice)
OpenAIopenai-api-key.txtGPT-5.4, embeddings
Venicevenice-api-key.txtPrivacy-first proxy for Claude/other models — cheaper
xAI / Grokgrok-api-key.txtGrok-3/4, fast cheap tasks
Google Geminigemini-api-key.txtImage gen (Nano Banana), Gemini 2.5
ElevenLabselevenlabs-key.txtTTS — Liam voice (default)
Runway MLrunway-api-key.txtVideo gen (gen4.5, Seedance 2)
HuggingFacehuggingface-api-key.txtWhisper fallback, model access
Mem0mem0-api-key.txtLong-term semantic memory
Replicate(OpenClaw native)Various open models
Fal.aifal-api-key.txtFast image gen
Heygenheygen-api-key.txtAvatar video generation
ServiceCredentialNotes
Google Adsgoogle-ads-tony-371-token.json + google-ads-developer-token.txtAccounts 371-884-2956 and 775-211-0314
Google Calendargmail-matt-full-token.jsonmatt@austinvisuals.com calendar only
Google Sheets/Drivegoogle-drive-matt-token.jsonFull write. For SA Sheets/Docs access: pending admin toggle in Google Workspace.
QuickBooks Onlineqbo-tokens.json + qbo-client-id.txtRealm ID: 9130355601618096 (Austin Visuals LLC)
Dropbox (shared)dropbox-tokens.jsoninfo@austinvisuals.com — refresh token auth
Dropbox (matt private)dropbox-matt-tokens.jsonRefresh token only — old static token deprecated
YouTubeyoutube-oauth-token.jsonAustin Visuals channel UCxc2rGUdiytCxL4Fl6LXqCQ
WordPress (AV)austinvisuals-wp-app-password.txtREST API auth for content publishing
Cloudflarecloudflare-all-zones-token.txtPer-domain tokens also available in secrets/
Apifyapify-api-key.txtWeb scraping, Instagram metadata
Brave Searchbrave-search-api-key.txtWeb search (OpenClaw native)
Bufferbuffer-api-key.txtSocial media scheduling (GBP posts)

Pages & Routes

All pages are static HTML served from /var/www/tony/. The full index is at site-index.html. Key pages by category:

URLPurpose
/index.htmlMain dashboard home
/your-tools.htmlPer-person tool pages (Matt, Nancy, David)
/permissions.htmlFull role & access matrix
/directory.htmlTeam contact directory
/system-health.htmlService health dashboard
/api-monitor.htmlAPI status & uptime
/ops-tony.htmlOps Tony interface
URLPurpose
/project-status.htmlLive project status board
/crm.htmlCRM / lead tracker (Google Sheets backed)
/tasks.htmlInternal task management
/storyboards.htmlStoryboard management
/cost-estimator.htmlClient cost estimator (lead-gate flow)
/esign.htmlDocuSeal document signing
URLPurpose
/artist-tools.htmlHub for all artist tools
/ai-studio.htmlAI image/video/asset generation
/motion-lab.htmlText-to-motion (NVIDIA Kimodo)
/video-editor.htmlVideo trim/compile
/asset-library.html3D model/asset browser
/socialtony_dashboard.htmlSocial media scheduling (interns)
URLPurpose
/bookkeeper.htmlCurtis's finance dashboard (PIN: see Matt)
/invoices.htmlInvoice management
/receipts.htmlReceipt processing / QB sync
/subscriptions.htmlSubscription & API cost tracker
/finance.htmlFinancial overview
# /etc/caddy/Caddyfile — key reverse proxy rules /auth/*127.0.0.1:8890 (auth service) /api/intern-hub/*127.0.0.1:8890 (proxied through auth) /api/client-surveys/*127.0.0.1:8890 /api/rachel-reconnect/*127.0.0.1:8890 /webhooks/gmail-push127.0.0.1:8804 (separate webhook receiver) /*/var/www/tony/ (static files)

Roles & Access

Tony uses Google OAuth for authentication. Roles are defined in /var/www/tony/data/users.json and enforced by auth.py. Full details at permissions.html.

RoleWhoKey access
ownerMatt (matt@austinvisuals.com)Everything. Full admin including financials, secrets, all tools.
adminDavid (david@austinvisuals.com)Operations, project management. No financials.
ops_leadNancy (nancyschirm@austinvisuals.com)Projects, CRM, client comms, task management.
bookkeeperCurtis (kellamsenterprises@gmail.com)Finance pages only. Read-only emails (matt@, nancy@). No coding tools. No winters.matt@gmail.com ever.
operationsShelly (shelly@austinvisuals.com)Operations + Jennifer supervisor. intern-coordinator access.
artistPeter, Tom, Adam GravoisArtist tools, their own project data only. No financial data ever.
internActive internsIntern hub, Social Tony, limited tools. See interns.md for current roster.
assistantDavid (GBP-only mode)Google Business Profile scheduling only. Cannot touch other channels.
PersonaEmailRole
Tonytony@austinvisuals.comMain AI ops/strategy. Talks to Matt via Telegram.
Espresso Tony(intern hub interface)Intern-facing version of Tony. Runs on venice/claude-sonnet-4-6.
Jenniferjennifer@austinvisuals.comHR/recruiting persona. Outward sender for intern outreach. Shelly supervises.
Gerald Thornelegal@austinvisuals.comAI legal persona. Signs as "Gerald Thorne, Esq."
🔑
Auth flow: User hits tony.austinvisuals.com → Google OAuth → if email in users.json → XD token issued → role applied → page access gates enforced. Source of truth for who-can-see-what: permissions.html.
📊
Full feature-by-feature access matrix for all roles — shareable with devs and contractors.

View-only link (share with Zohaib / Niaz / any dev):
https://docs.google.com/spreadsheets/d/18aHtrEop46kDbt6zfC4XzBeEFK3of1_xY2-mYmQRpa8/edit?usp=sharing
NameRoleProjectStatus
NiazAI DeveloperMemory Bridge — 3-instance OpenClaw sync (target: Jun 18)In Progress
ZohaibAI Developer (new)Onboarding to Tony systemsOnboarding

Sitemap — All Tony Pages

Every page currently deployed at tony.austinvisuals.com. Financial pages are locked — access code provided by Matt via Telegram only. Ghost/deprecated pages are noted.

🔐
Financial pages require a separate access code not stored here. Ask Matt directly via Telegram to get the current code. Codes rotate and are never stored in documentation.
PageURLNotes
Dashboard Home/index.htmlMain hub — all role-gated nav lives here
Your Tools/your-tools.htmlPer-person dashboards (Matt, Nancy, David) + Tool Transfer
Site Index/site-index.htmlSelf-updating full page index
Permissions Matrix/permissions.htmlSource of truth for all roles and access gates
System Health/system-health.htmlLive service health dashboard
API Monitor/api-monitor.htmlAPI uptime and response checks
Status Page/status-page.htmlPublic-facing system status
About Tony/about-tony.htmlTony intro / explainer page
Tony Admin/tony-admin.htmlAdmin controls — owner only
Directory/directory.htmlTeam contact directory — source of truth for emails
Backlog/backlog.htmlFeature requests and build backlog
Ideas/ideas.htmlIdeas & requests log
Wins Log/wins.htmlDocumented wins and skills
Failures Log/failures.htmlFailures and lessons — internal only
Tony Commands/tony-commands.htmlSlash command reference
Developer Hub/developer.htmlThis page
PageURLNotes
Project Status/project-status.htmlLive project board — contractor-facing
CRM/crm.htmlLead/client tracker backed by Google Sheets
Tasks/tasks.htmlCompany task management
Personal Tasks/tasks-personal.htmlMatt's personal task workspace
Availability/availability.htmlTeam availability tracker
Cost Estimator/cost-estimator.htmlClient-facing estimate tool with lead-gate flow
Client Surveys/client-surveys.htmlMid-project and final review surveys
Client Surveys Admin/client-surveys-admin.htmlAdmin view of survey responses
eSign/esign.htmlDocuSeal document signing
Hiring/hiring.htmlJob listings / hiring page
Talent Bench/talent-bench.htmlContractor/talent pipeline
Case Studies/case-studies.htmlCase study generator
Capabilities Deck/av-capabilities-deck.htmlAV capabilities presentation
AV Process/av-process.htmlAustin Visuals production process explainer
Rachel Reconnect/rachel-reconnect.htmlAutomated reconnect outreach flow
PageURLNotes
Artist Tools Hub/artist-tools.htmlHub for all artist-facing tools
AI Studio/ai-studio.htmlImage/video/asset AI generation (Runway, ElevenLabs, etc.)
Motion Lab/motion-lab.htmlText-to-motion — NVIDIA Kimodo (experimental)
Storyboards/storyboards.htmlStoryboard builder and manager
Video Editor/video-editor.htmlTrim, compile, process video files
Asset Library/asset-library.html3D model and asset browser
Social Tony/socialtony_dashboard.htmlSocial media scheduling dashboard — intern review queue
AI Maker Chat/ai-maker-chat.htmlScene parser / 2D animation pipeline chat (in progress)
2D AI Video/2d-ai-Video.html2D AI video generation tool
Tools Library/tools-library.htmlAV-approved third-party tools list for artists
Higgsfield Connect/higgsfield-connect.htmlHiggsfield AI integration connector
PageURLNotes
Sales Tools/sales.htmlSales pipeline tools
Marketing Tools/marketing-tools.htmlMarketing toolkit hub
Social Media/social-media.htmlSocial media management
SEO Tools/seo.htmlSEO dashboard
Search Engine Optimization/search-engine-optimization.htmlSEO reporting and tooling
Content Health/content-health.htmlContent health monitor across AV sites
Competitor Intel/competitor-intel.htmlCompetitor research dashboard
Competitor Brief/competitor-brief.htmlOne-page competitor intelligence brief
Market Intel/market-intel.htmlMarket intelligence reports
Analytics/analytics.htmlGA4 + site analytics dashboard
Email Health/email-health.htmlEmail deliverability and health monitor
Group Leads/group-leads.htmlFacebook group lead capture dashboard
PageURLNotes
Intern Hub/intern-hub.htmlEspresso Tony — intern-facing AI interface
Intern Tools/intern-tools.htmlIntern resource hub
Intern Recruiter/intern-recruiter.htmlJennifer — intern outreach and pipeline
Intern Apply/intern-apply.htmlPublic intern application form
Mentors/mentors.htmlMentor network room
Operations/operations.htmlOps overview dashboard
Ops Tony/ops-tony.htmlOps Tony interface (Shelly/Nancy facing)
PageURLNotes
Austin Creatives/austin-creatives.htmlPrivate dinner network landing page
AC Join/austin-creatives-join.htmlMembership sign-up
AC Apply/austin-creatives-apply.htmlApplication form
AC Connect/ac-connect.htmlCommunity connect page
AC Survey/ac-survey.htmlCommunity survey
AC Availability/ac-availability.htmlEvent availability poll
AC Terms / Privacy / Policy/austin-creatives-terms.htmlLegal pages for AC
Group Leader Demo/group-leader-demo.htmlGroup leader demo interface
Show Bible/show-bible.htmlTony show bible / concept doc
Gerald (Owl)/gerald.htmlGerald the AI Wizard Owl talking character page
PageURLNotes
Nova/nova.htmlNova AI assistant product page
Nova Pricing/nova-pricing.htmlNova pricing page
Apps & Tools/apps.htmlApps directory
AI Web Resources/ai-web-resources.htmlAI/Web builder directory
Legal Resources/legal-resources.htmlLegal resources directory
🔒
These pages contain real financial data. Access codes are not stored anywhere in this hub. Request the current code from Matt directly via Telegram. Codes rotate at Matt's discretion.
🔒
Financial Pages — Access Not Yet Configured
Access codes for financial pages are set by Matt and provided directly via Telegram.
No code has been configured yet. Contact Matt to request access.
👻
These pages exist on the server but are stale, superseded, or dev experiments. Do not link to them. Queued for deletion — ask Matt before removing anything.
PageURLStatus
WarData Map Mockup/wardata-map-mockup.htmlStaged on wrong domain — should be on wardata.ai
Lock Preview/lock-preview.htmlDev experiment, unused
SnapReceipts Preview/snapreceipts-preview.htmlDev experiment, unused
Project Status Sample/project-status-sample.htmlSuperseded by /project-status.html
SEO Report Apr 2026/seo-report-2026-04-23.htmlOne-off stale report
AV Trial Graphics (x2)/av-trial-graphics-preview.htmlDev preview, unused