# Agent Creation Guide This guide provides comprehensive instructions for adding new agents to the Quantum Tasks AI platform. ## Overview Quantum Tasks AI supports **TWO DISTINCT AGENT SYSTEMS**: - **Webhook Agents** - N8N integrations for complex processing with dynamic forms - **Direct Access Agents** - External form services (JotForm, Google Forms) with embedded interfaces **⚡ RECOMMENDED APPROACH:** Use JSON configuration + `populate_agents` command for error-free, Railway-ready agent creation. --- ## Current Agent Status **Total Agents: 8** (4 webhook + 4 direct access) **Total Categories: 6** ### Webhook Agents (N8N Integration) 1. **Social Ads Generator** - 6.00 AED - Creates social media advertisements 2. **Job Posting Generator** - 10.00 AED - Creates professional job postings 3. **PDF Summarizer** - 8.00 AED - Analyzes and summarizes PDF documents 4. **5 Whys Analyzer** - 15.00 AED - Interactive chat-based root cause analysis ### Direct Access Agents (External Forms) 1. **CyberSec Career Navigator** - FREE - Career guidance consultation 2. **AI Brand Strategist** - FREE - Brand strategy consultation 3. **Lean Six Sigma Expert** - FREE - Process improvement consultation 4. **SWOT Analysis Expert** - FREE - Strategic business analysis --- ## 🏷️ Choose Existing Category First **IMPORTANT:** Always use existing categories before creating new ones to avoid category proliferation. ### Available Categories: - 🧠 **`analysis`** - Problem-solving, SWOT analysis, strategic analysis tools - 🎓 **`career-education`** - Career guidance, educational resources, professional development - 📄 **`document-processing`** - PDF analysis, file processing, document tools - 💼 **`human-resources`** - Job postings, HR automation, talent management - 📢 **`marketing`** - Social ads, branding, content marketing, advertising - 💼 **`consulting`** - Business consultation, strategy services, expert advice **Only create new categories when absolutely necessary and logically distinct.** --- ## 🚀 Agent Creation Workflow ### System 1: Webhook Agents (N8N Integration) - **Use for:** Dynamic forms, server-side processing, file uploads, complex workflows - **Examples:** Social Ads Generator, PDF Summarizer, Job Posting Generator - **Flow:** Marketplace → Agent detail page → Dynamic form → N8N webhook → Results ### System 2: Direct Access Agents (External Forms) - **Use for:** External form services (JotForm, Google Forms), consultation interfaces - **Examples:** SWOT Analysis Expert, CyberSec Career Navigator, AI Brand Strategist - **Flow:** Marketplace → Payment processing → Quantum Tasks header + embedded external form --- ## 📝 Implementation Steps ### Step 1: Create JSON Configuration Create a new file in `agents/configs/agents/your-agent-name.json`: #### Webhook Agent Example: ```json { "slug": "content-optimizer", "name": "Content Optimizer", "short_description": "AI-powered content optimization and enhancement", "description": "Enhance your content for better engagement with AI-powered optimization suggestions, tone analysis, and improvement recommendations.", "category": "marketing", "price": 5.0, "agent_type": "form", "system_type": "webhook", "form_schema": { "fields": [ { "name": "content", "type": "textarea", "label": "Content to Optimize", "required": true }, { "name": "content_type", "type": "select", "label": "Content Type", "required": true, "options": [ {"value": "blog", "label": "Blog Post"}, {"value": "social", "label": "Social Media"}, {"value": "email", "label": "Email Marketing"} ] } ] }, "webhook_url": "http://localhost:5678/webhook/content-optimizer", "access_url_name": "", "display_url_name": "" } ``` #### Direct Access Agent Example: ```json { "slug": "business-strategist", "name": "Business Strategist", "short_description": "Expert business strategy consultation", "description": "Get professional business strategy insights and recommendations from experienced consultants to grow your business effectively.", "category": "consulting", "price": 0.0, "agent_type": "form", "system_type": "direct_access", "form_schema": { "fields": [] }, "webhook_url": "https://agent.jotform.com/your-form-id", "access_url_name": "agents:direct_access_handler", "display_url_name": "agents:direct_access_display" } ``` ### Step 2: Run populate_agents Command ```bash # Development source venv/bin/activate python manage.py populate_agents # Production (Railway) python manage.py populate_agents # Runs automatically on deployment ``` ### Step 3: Additional Setup (Direct Access Agents Only) For direct access agents that need custom templates or marketplace integration: #### 3a. Create Custom Template (optional): ```html {% extends 'base.html' %} {% load static %} {% block title %}Your Agent Name - Quantum Tasks AI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}