Quick Start

Quick Start Guide

Get up and running with HedgeAI in under 5 minutes. This guide will walk you through the essential features and help you generate your first AI-powered security script.

Prerequisites

  • Modern web browser (Chrome, Firefox, Safari, Edge)
  • Internet connection
  • Optional: HEDGE tokens for premium features
1

Access the Platform

AI Agent

Your coding workspace at /agent

Marketplace

Browse and download security tools

Token Features

Access premium capabilities

2

Using the AI Agent

Accessing Vibe Coder

Click on the AI Agent section or navigate to /agent. You'll see the Agent Workspace with three main areas:

  • Chat Interface (left sidebar)
  • Code Editor (center)
  • Output Terminal (preview tab)

Your First AI-Generated Script

1. Select a Programming Language:

🐍 Python
⚡ JavaScript
🦀 Rust
📄 YAML
💻 Bash

2. Start a Conversation:

"Create a Python script that scans a network for open ports and identifies potential vulnerabilities"

3. Watch the Magic:

  • The AI will analyze your request
  • Generate a complete, production-ready script
  • Provide explanations and security best practices
  • Display the code in the editor

Example Generated Output

network_scanner.py
#!/usr/bin/env python3
import socket
import threading
from datetime import datetime

class NetworkScanner:
    def __init__(self, target, threads=100):
        self.target = target
        self.threads = threads
        self.open_ports = []
        self.lock = threading.Lock()
    
    def scan_port(self, port):
        try:
            sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            sock.settimeout(1)
            result = sock.connect_ex((self.target, port))
            
            if result == 0:
                with self.lock:
                    self.open_ports.append(port)
                    print(f"Port {port}: Open")
            sock.close()
        except Exception as e:
            pass
    
    def run_scan(self, start_port=1, end_port=1000):
        print(f"Scanning {self.target} from port {start_port} to {end_port}")
        print(f"Starting scan at {datetime.now()}")
        
        threads = []
        for port in range(start_port, end_port + 1):
            thread = threading.Thread(target=self.scan_port, args=(port,))
            threads.append(thread)
            thread.start()
            
            # Limit concurrent threads
            if len(threads) >= self.threads:
                for t in threads:
                    t.join()
                threads = []
        
        # Wait for remaining threads
        for t in threads:
            t.join()
        
        print(f"\nScan completed. Open ports found: {sorted(self.open_ports)}")
        return self.open_ports

if __name__ == "__main__":
    scanner = NetworkScanner("192.168.1.1", 100)
    scanner.run_scan(1, 1000)
3

Exploring the Marketplace

Browse Security Tools

Navigate to the marketplace section and explore categories:

Vulnerability Assessment
Network Security
Blockchain Security
Digital Forensics
...and 10 more categories

Featured Tool

VulnScanner Pro
Free

Advanced vulnerability scanner with AI-powered threat detection

⭐ 4.8 (324 reviews)📥 12.4k downloads

Download Your First Tool

1
Find a Tool: Browse or search for "VulnScanner Pro"
2
Review Details: Check ratings, author, and features
3
Download: Click the download button to get the .sh script
4
Run Locally: Execute the script in your environment

Example Downloaded Tool

vulnscanner-pro.sh
#!/bin/bash
# VulnScanner Pro - Advanced Vulnerability Scanner
# Version: 2.1.0

echo "🔍 VulnScanner Pro - Starting vulnerability scan..."
echo "Target: $1"
echo "Scanning for common vulnerabilities..."

# Simulated vulnerability scan
for i in {1..5}; do
  echo "Scanning port $((i * 1000))..."
  sleep 0.5
done

echo "✅ Scan completed. Found 3 potential vulnerabilities."
echo "Report saved to vuln_report_$(date +%Y%m%d).txt"
4

Understanding the Token Economy

Free Features (Available to Everyone)

  • AI Script Generation
  • Basic Marketplace Access
  • Community Support

Premium Features (HEDGE Token Holders)

  • Advanced AI Models
  • Priority Support
  • Exclusive Tools
  • Revenue Sharing

Getting HEDGE Tokens

Token Symbol: HEDGE

Blockchain: Ethereum (with multi-chain expansion planned)

Utility: Platform access, governance, revenue sharing

Distribution: 90% buyback (80% burn, 10% operations)

Need Help?

  • Documentation: Browse our comprehensive guides
  • Community: Join our Discord for real-time support
  • Support: Contact our team for enterprise inquiries
  • GitHub: Report issues and contribute to development

Ready to Build?

You're now ready to harness the power of AI-driven security automation. Start building safer digital environments today!