Complete AudienceLab Dashboard Clone - A production-ready platform that replicates the entire AudienceLab dashboard experience, enabling customers to build white-label solutions using AudienceLab's APIs.
Dashboard URL: View Live Demo
AudienceLab Vibe Platform is a complete dashboard clone built using clean room implementation methodology. We've researched and documented every feature of the AudienceLab dashboard at https://build.audiencelab.io and recreated it from scratch using modern web technologies.
- β Clean Room Implementation - Built by observing the UI/UX, not copying code
- β One-to-One Feature Parity - Matches AudienceLab's dashboard exactly
- β Modern Tech Stack - React 19, TypeScript, tRPC, Tailwind CSS 4
- β Fully Documented - 700+ lines of specifications for audience filters alone
- β Production Ready - Authentication, database, and deployment configs included
- β White-Label Ready - Customize branding, domain, and features
- Intent Search mode (find people based on interests)
- B2B Search mode (find companies)
- Query validation with 7 rules
- Advanced options (context phrases, lens, granularity)
- CSV upload with drag-and-drop
- Multi-field column mapping (48 AudienceLab fields)
- OR/AND match logic
- Real-time job status tracking
- Results table with all 74 enriched fields
- CSV download of enriched data
- List view with 7-column sortable table
- Status badges (No Data, Completed, Generating, Failed)
- Pagination and search
- Create audience dialog
- Refresh and delete actions
- 3-column table (Website Name, URL, Last Sync)
- Install URLs with copy-to-clipboard
- Create and delete pixels
- Action buttons (See Resolutions, Install, Webhook)
-
Phase 1: Research Complete β
- All 9 filter categories documented
- 700+ lines of comprehensive specifications
- TypeScript interfaces for all filter types
-
Phase 2: Basic UI Complete β
- Create Audience dialog (name-only input)
- Filter Builder page with 9 category tabs
- Empty state with "Build Audience" CTA
- Preview and Generate Audience buttons
-
Phase 3: Filter Modals (Next)
- Business filters (7 fields with AI keyword generator)
- Location filters (Cities, States, Zip Codes)
- Intent filters (Premade, Keyword, Custom methods)
- Contact filters (5 toggle switches)
- Personal, Financial, Family, Housing filters
- Intent - Target by interests and behaviors (3 methods: Premade, Keyword, Custom)
- Date - Time-based filters (placeholder)
- Business - Job titles, seniority, departments, company info, industries
- Financial - Income, net worth, credit rating, investments, occupation
- Personal - Age range, gender, ethnicity, language, education, smoker status
- Family - Marital status, children, generations in household
- Housing - Homeowner status, dwelling type, home value, purchase info
- Location - Cities, states, zip codes
- Contact - Email and phone verification toggles
| Technology | Version | Purpose |
|---|---|---|
| React | 19.1.1 | UI library with latest features |
| TypeScript | 5.9.3 | Type safety across the stack |
| tRPC | 11.6.0 | End-to-end type-safe APIs |
| React Query | 5.90.2 | Data fetching and caching |
| Tailwind CSS | 4.0.0 | Utility-first styling |
| shadcn/ui | Latest | Beautiful, accessible UI components |
| Wouter | Latest | Lightweight routing |
| Drizzle ORM | 0.44.5 | Type-safe database queries |
| Vitest | Latest | Unit testing framework |
- Node.js 22+ (recommended)
- pnpm 10.4.1+
- AudienceLab API key
# Clone the repository
git clone https://github.com/roALAB1/AudienceVibe.git
cd AudienceVibe
# Install dependencies
pnpm install
# Set up environment variables
cp .env.example .env.local
# Add your AudienceLab API key to .env.local
# AUDIENCELAB_API_KEY=your_api_key_here
# VITE_AUDIENCELAB_API_KEY=your_api_key_here
# Run database migrations (if using database features)
pnpm db:push
# Start development server
pnpm devThe app will be available at http://localhost:3000
Create a .env.local file with the following:
# AudienceLab API
AUDIENCELAB_API_KEY=your_api_key_here
VITE_AUDIENCELAB_API_KEY=your_api_key_here
# Database (MySQL/TiDB)
DATABASE_URL=mysql://user:password@host:port/database
# Authentication (Manus OAuth)
JWT_SECRET=your_jwt_secret
OAUTH_SERVER_URL=https://oauth.manus.im
VITE_OAUTH_PORTAL_URL=https://portal.manus.im
# App Configuration
VITE_APP_TITLE=AudienceLab Vibe Platform
VITE_APP_LOGO=/logo.svg- π PROJECT SUMMARY - β START HERE - Complete overview with validated findings
- π― COMPLETE AUDIENCE FILTERS SPEC - 700+ lines of audience filter documentation
- MVP Delivery Report - Complete project summary
- Vibe Coding Framework - 15,000+ word guide for AI-assisted development
- API Reference - Complete API endpoint documentation with validated schemas
- tRPC Routes - TypeScript usage examples for all routes
- tRPC Router Structure - Two-router architecture explanation
- API Testing Guide - Testing status, results, and validation
# Run all tests
pnpm test
# Run tests in watch mode
pnpm test:watch
# Run tests with coverage
pnpm test:coverage
# Type checking
pnpm checkaudiencelab-enrichment/
βββ client/ # Frontend React app
β βββ src/
β β βββ pages/ # Page components
β β β βββ SparkPage.tsx
β β β βββ EnrichmentsPage.tsx
β β β βββ EnrichmentUploadPage.tsx
β β β βββ AudiencesPage.tsx
β β β βββ AudienceFilterBuilderPage.tsx
β β β βββ PixelsPage.tsx
β β β βββ ChangelogPage.tsx
β β βββ components/ # Reusable UI components
β β β βββ audiences/ # Audience-specific components
β β β βββ ui/ # shadcn/ui components
β β β βββ DashboardLayout.tsx
β β βββ types/ # TypeScript type definitions
β β β βββ audience-filters.ts
β β β βββ audience.ts
β β βββ lib/ # Utilities and helpers
β β βββ App.tsx # Main app component
βββ server/ # Backend tRPC server
β βββ routers/ # API route handlers
β β βββ audiencelab.ts # Main AudienceLab API router
β βββ audienceLabRouter.ts # Legacy enrichment router
β βββ db.ts # Database queries
β βββ _core/ # Core server utilities
βββ shared/ # Shared types and constants
β βββ audiencelab-types.ts # Complete API type definitions
β βββ audiencelab-client.ts # API client with retry logic
βββ drizzle/ # Database schema and migrations
βββ tests/ # Test files
βββ docs/ # Documentation
pnpm dev # Start development server
pnpm build # Build for production
pnpm start # Start production server
pnpm test # Run tests
pnpm check # Type check
pnpm format # Format code with Prettier
pnpm db:push # Push database schema changesThis project is optimized for deployment on Manus:
- Create a checkpoint:
webdev_save_checkpoint - Click "Publish" in the Manus UI
- Your app will be live with custom domain support
# Install Vercel CLI
npm i -g vercel
# Deploy
vercel# Build image
docker build -t audiencelab-vibe .
# Run container
docker run -p 3000:3000 --env-file .env.local audiencelab-vibeContributions are welcome! Please follow these steps:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- AudienceLab - For providing the API and platform inspiration
- Manus - For the development environment and deployment infrastructure
- shadcn/ui - For beautiful, accessible UI components
- tRPC - For type-safe API development
For questions or support:
- π§ Email: support@audiencelab.io
- π Issues: GitHub Issues
- π Docs: AudienceLab Documentation
- Project setup with React 19 + TypeScript
- API client with retry logic and error handling
- Spark V2 - Smart Query Assistant
- Enrichments - CSV upload and multi-field matching
- Audiences - List view with search and pagination
- Pixels - Management with install URLs
- Complete research on all 9 filter categories
- TypeScript types for all filters
- Basic UI (Create dialog + Filter Builder page)
- Business filters modal
- Location filters modal
- Intent filters modal
- Contact filters modal
- Personal, Financial, Family, Housing filters
- Preview functionality (estimate audience size)
- Generate Audience action
- API integration
- Segments - View and export segment data
- Workflows - Automation builder
- Sync - Integrations (Google Sheets, Facebook Ads)
- Studio - Advanced audience segmentation
- Team collaboration features
- Custom reporting and analytics
- Error tracking (Sentry)
- Analytics (PostHog)
- Rate limiting
- Database caching
- Integration tests
- CI/CD pipeline
- Performance optimization
| Feature | Status | Completion |
|---|---|---|
| Spark V2 | β Complete | 100% |
| Enrichments | β Complete | 100% |
| Audiences (List) | β Complete | 100% |
| Pixels | β Complete | 100% |
| Vibe Code (Filters) | π§ In Progress | 30% |
| Segments | β³ Planned | 0% |
| Workflows | β³ Planned | 0% |
| Sync | β³ Planned | 0% |
| Studio | β³ Planned | 0% |
Built with β€οΈ for the AudienceLab community