All Tutorials
Coder

💻 Setting Up Your First Workspace

Create a new project, configure your IDE, and start coding with ViAgen6 AI assistance.

10 min Beginner
1

Access Vigthoria Coder

There are two ways to access Vigthoria Coder:

Pro Tip

The desktop app offers better performance and offline capabilities. We recommend it for professional development.

2

Create a New Workspace

Once logged in, create your first workspace:

  1. Click "New Workspace" in the sidebar or press Ctrl/Cmd + Shift + N
  2. Choose a template or start with an empty workspace
  3. Enter a name for your project
  4. Select your primary programming language
  5. Click "Create"
📁

The New Workspace dialog with template options

Available templates include:

3

Configure ViAgen6

ViAgen6 is Vigthoria's AI coding assistant. Configure it for your project:

  1. Open SettingsViAgen6 (or press Ctrl/Cmd + ,)
  2. Set your preferred AI model:
    • V2 Code - Best for general coding (recommended)
    • V2 Code Pro - Advanced reasoning for complex tasks
    • V2 Creative - Better for documentation and comments
  3. Configure auto-completion preferences
  4. Set context size based on your subscription tier
// Example ViAgen6 configuration in settings.json
{
  "viagen6.model": "v2-code",
  "viagen6.autoComplete": true,
  "viagen6.autoCompleteDelay": 300,
  "viagen6.contextSize": "large",
  "viagen6.inlineHints": true
}
4

Explore the Interface

Familiarize yourself with the Vigthoria Coder interface:

Keyboard Shortcuts

Ctrl/Cmd + L - Open ViAgen6 chat
Ctrl/Cmd + K - Quick AI command
Ctrl/Cmd + I - AI inline edit

5

Your First AI-Assisted Code

Let's write your first code with ViAgen6 assistance:

  1. Create a new file (e.g., app.js or main.py)
  2. Press Ctrl/Cmd + L to open ViAgen6 chat
  3. Type a prompt describing what you want to build:
    Create a simple Express.js server with a /hello endpoint 
    that returns a JSON greeting with the current time.
  4. ViAgen6 will generate the code
  5. Click "Apply" to insert it into your file
  6. Review and run with node app.js in the terminal
6

Save and Sync Your Workspace

Your workspace automatically syncs to the cloud, but you can also:

Cloud Sync

All workspaces are automatically saved to your Vigthoria cloud storage. Access them from any device.

🎯 Next Steps