An intelligent multi-agent system that automates the generation, evaluation, and resale of high-quality, brandable domain names. Built using LangGraph, it orchestrates various specialized agents to perform market research, generate domain suggestions, evaluate names, and check availability.
- Live Dashboard
- Project Documentation
- Project Demo of Agents in action -- Youtube
- Dashboard console UI Codebase
- Agents Codebase
The system is built using LangGraph, a library for creating multi-agent workflows. The main orchestration logic is defined in agents/domain_research_graph.py
, which coordinates the following specialized agents:
-
Market Trends Bot (
market_research_bot.py
):- Generates a list of notable companies in various tech sectors
- Maps company details (name, category, description, keyword, domain)
- Analyzes current market trends using GPT-4
- Extracts key industry patterns and naming conventions
-
Domain Generator Bot (
domain_generator.py
):- Creates unique, brandable domain suggestions for AI SaaS B2B startups
- Leverages market trends data for trend-aligned naming
- Follows specific naming conventions for multiple TLDs (.com, .ai)
-
Domain Scoring Bot (
domain_name_scoring_bot.py
):- Evaluates domains on multiple criteria (1-10 scale):
- Memorability
- Pronounceability
- Length
- Brandability
- Provides detailed scoring rationale
- Assigns relevant categories and keywords
- Evaluates domains on multiple criteria (1-10 scale):
-
Availability Checker (
check_domain_name_availability.py
):- Validates domain availability via WHOISJSON API
- Filters out registered domains
- Updates availability status in database
-
Database Integration:
- Saves domain information through REST API endpoints
- Stores domain details, availability status, and evaluation scores
- Uses Pydantic models for data validation
The system uses the following data models (domain_schema.py
):
DomainName
: Basic domain informationDNAvailabilityStatus
: Domain availability statusDNEvaluation
: Detailed domain evaluation scoresDNSEOAnalysis
: SEO analysis data (prepared for future implementation)DomainWithDetails
: Combines all domain-related information
-
Ensure you have Python 3.7+ installed
-
Clone the repository:
bash git clone <repository-url> cd <repository-directory>
-
Install dependencies:
bash pip install -r requirements.txt
-
Set up environment variables in
.env
:OPENAI_API_KEY=your_openai_api_key_here WHOISJSON_API_KEY=your_whoisjson_api_key_here
-
Run the main script:
bash python main.py
The system integrates with:
- OpenAI API for AI-powered domain generation and evaluation
- WHOISJSON API for domain availability checking
- Custom REST API endpoints for database operations:
/api/domains
: Create new domain entries/api/availability-status
: Store availability status/api/evaluation
: Store domain evaluations/api/seo-analysis
: Store SEO analysis (prepared for future use)
Main dependencies include:
- langchain & langgraph: For workflow orchestration
- openai: For GPT-4 integration
- pydantic: For data validation
- requests: For API interactions
- python-dotenv: For environment variable management
For a complete list, see requirements.txt
This system uses the OpenAI GPT-4 model and WHOISJSON API, which may incur costs. Make sure you understand the pricing and usage limits of both APIs before running the script.
The system is prepared for future enhancements including:
- SEO analysis implementation
- Extended domain availability checking features
- Additional domain evaluation metrics
- Enhanced market research capabilities