📚 Vigthoria Documentation
Welcome to the comprehensive documentation for Vigthoria's AI ecosystem. This guide will help you get started and make the most of our powerful AI tools.
🚀 Quick Start
Get up and running in minutes with our step-by-step guides
📖 Tutorials
Learn through practical examples and real-world scenarios
🔧 API Reference
Complete API documentation with code examples
💡 Best Practices
Optimize your workflows with expert recommendations
🚀 Getting Started
Prerequisites
Before you begin, ensure you have:
- An active Vigthoria account (Free or Professional)
- API credentials (available in your dashboard)
- Basic understanding of REST APIs
Installation
Quick Installation
Use our CLI tool to get started quickly:
npm install -g vigthoria-cli
vigthoria login
vigthoria init my-project
🔌 Integrations
VigFlow supports both native and API-driven integrations so you can automate communication and business workflows with minimal setup.
⚡ Automation Onboarding (Email + WhatsApp)
This onboarding flow is designed to be fast and practical. Most teams can go from zero to first live automation in under 15 minutes.
Step 1: Add Credentials
- Open VigFlow → Credentials
- Add an Email (SMTP) credential (host, username, password)
- Add a WhatsApp (Twilio) credential (Account SID, Auth Token, From number)
Step 2: Build Your First Flow
- Create a workflow and add an Integration node
- Choose Email or WhatsApp as Integration Type
- Select your action (sendEmail, sendMessage, or sendTemplate)
- Fill recipient and message/template fields
Step 3: Validate Before Going Live
- Use Dry Run Test in the properties panel for safe validation
- Use Live Test with a test recipient/channel
- Enable the full workflow only after both checks are green
Recommended First Automations
- Send a confirmation email when a new form submission arrives
- Send WhatsApp alerts for urgent SLA or billing events
- Use Email + WhatsApp together for fallback delivery
Vigthoria Operator
The Operator is your central AI orchestration hub, managing 27+ AI models with intelligent load balancing.
Key Features
Multi-Model Routing
Automatically route requests to the best available model based on task type, load, and performance.
Health Monitoring
Real-time monitoring of all connected AI models with automatic failover.
Cost Optimization
Intelligent cost management with usage analytics and budget controls.
Basic Usage
// Initialize Operator
const operator = new VigthoriaOperator({
apiKey: 'your-api-key'
});
// Send a request
const response = await operator.chat({
message: 'Explain quantum computing',
model: 'auto' // Automatic model selection
});
console.log(response.text);
Vigthoria Coder
Complete AI-powered development environment with ViAgen6 (21 coding models) and BMAD architecture designer.
ViAgen6 Models
Access 21 specialized coding models for different tasks:
vigthoria-v2-code- Full-stack developmentvigthoria-v2-reasoning- Deep code analysisvigthoria-v2-creative- General purpose codingmistral-openorca- Fast prototypingdolphin-mixtral- Creative solutions
BMAD Architecture Designer
Blueprint Modular Architecture Designer helps you plan and design system architecture:
// Generate architecture
const bmad = new BMAD({
projectType: 'microservices',
features: ['auth', 'payments', 'notifications']
});
const architecture = await bmad.generate();
console.log(architecture.components);
Vigthoria Market
Community marketplace for templates, plugins, and assets with 70/30 revenue split.
For Creators
Upload Assets
Share your creations and earn revenue:
- 70% revenue share on all sales
- $50 minimum payout threshold
- Monthly automated payments
- Creator analytics dashboard
Asset Types
- UI Templates & Components
- Code Snippets & Plugins
- AI Prompts & Workflows
- Music & Audio Assets
- Design Assets & Icons
Vigthoria GoA
Gnomes of Agents - Advanced multi-agent coordination system.
GoA Light (3 Agents)
Included in Professional plan:
- Coordinator Agent - Task distribution
- Research Agent - Information gathering
- Action Agent - Task execution
GoA Standalone (11 Agents)
Available in Enterprise plan - complete multi-agent orchestration with specialized agents for coding, writing, analysis, security, and more.
🔧 API Reference
Authentication
All API requests require authentication using your API key:
Authorization: Bearer YOUR_API_KEY
Endpoints
POST /api/chat
Send a chat message to the AI
{
"message": "Your question here",
"model": "mistral-openorca",
"systemPrompt": "Optional system prompt"
}
GET /api/models
List all available AI models
{
"models": [
{
"name": "mistral-openorca",
"status": "online",
"capabilities": ["chat", "code", "analysis"]
}
]
}
🔍 Troubleshooting
Common Issues
Connection Timeout
If you experience connection timeouts:
- Check your network connection
- Verify your API key is valid
- Try using a different model
- Contact support if the issue persists
Rate Limiting, Tiers, and VigCoin
Access is product-specific. Community-level access stays free for Community and Meet, while paid tiers apply to products such as Operator, Coder, Music AI, VigFlow, and Realms Gaming Pro.
API modules use VigCoin credits in a pay-as-you-go model. Credits are debited by module usage, and active product workflows should not be interrupted mid-task when credit checks occur.
Need More Help?
Can't find what you're looking for? Visit our Help Center or Community Forum.