What You’ll Learn
- Open a project in Verdent
- Complete your first AI-assisted task
- Understand execution modes
- Create and manage workspaces for parallel work
Prerequisites
Before you begin, make sure you have:- Verdent installed (Installation Guide)
- A project directory to work with
- Signed in to your Verdent account
Step 1: Open Your First Project
1
Launch Verdent
Open Verdent from Applications (macOS) or Start Menu (Windows)
2
Open Project
Click Open Project and select a directory
3
Project Loads
Verdent opens the project and displays the main interface
If your project isn’t a Git repository, Verdent handles this automatically by creating its own Git repository for tracking changes and enabling workspace isolation.
Step 2: Your First Task
Let’s start with a simple, non-destructive task that demonstrates Verdent’s understanding of your project. Type this in the chat input:- Verdent analyzes your project structure
- Reads key files (package.json, README, config files)
- Explains your project type, technologies, and structure
- No files are modified (read-only analysis)
Step 3: Make Your First Code Change
Now let’s have Verdent create something:1
Verdent Analyzes Request
Verdent understands your request and plans the approach
2
Execution
Verdent creates the file autonomously (Agent Mode is fully autonomous)
3
Review Results
Review what was created, Code Review provides feedback
- Task Changes shows exactly what changed
- Code Review provides structured feedback
- Source Control lets you commit, revert, or modify changes
Step 4: Using Plan Mode
Plan Mode is Verdent’s read-only planning mode for complex tasks. Switch to Plan Mode: PressShift + Tab, Ctrl + . (Windows), or Cmd ⌘ + . (macOS), or click the Switch Mode button in the input box
Try a planning task:
- Verdent analyzes your project thoroughly
- Creates a detailed plan with recommendations
- No modifications occur - Plan Mode is read-only
- You can ask clarifying questions about the plan
- Choose Edit to refine the plan
- Choose Start Building to execute (switches to Agent Mode)
Step 5: Understanding Workspaces
Workspaces provide isolation for parallel development. Each workspace is a separate git worktree. Workspace Concepts:- Workspace - A git worktree, an isolated working directory
- Tasks - Agents working within a workspace
- Multiple tasks can run in the same workspace
| Benefit | Description |
|---|---|
| Isolation | Changes don’t affect your main branch |
| Parallel work | Multiple workspaces can run simultaneously |
| Safe experimentation | Discard workspace if changes aren’t wanted |
| Clean rebases | Each workspace produces a clean, reviewable branch |
| Action | Description |
|---|---|
| Create Workspace | Create a new isolated worktree |
| Switch Workspace | Navigate between workspaces |
| Rebase to main branch | Apply workspace changes to the main branch |
| Sync with main branch | Pull latest changes from main branch into the workspace |
Step 6: Parallel Execution
Verdent’s unique feature is running multiple agents in parallel. Start parallel workspaces:1
Create Workspace
Click New Workspace in the top bar. In the Create New Workspace modal:
- Name the workspace (e.g.,
feature/user-login) - Select branch to branch from (From Branch: Master)
- Optionally add a setup script to run when the workspace is created (e.g.,
pnpm installto install dependencies)
2
Start Task in Workspace
Give the workspace a prompt:
3
Create Another Workspace
Click New Workspace again and create a second workspace (e.g., Both agents work simultaneously without conflicts.
feature/api-endpoint). Start a different task:4
Rebase When Ready
When work is complete, use Workspace Actions → Rebase to main branch to apply changes
Execution Modes Reference
| Mode | Description | Best For |
|---|---|---|
| Agent Mode | Full autonomous execution | Active development, implementation |
| Plan Mode | Read-only planning | Complex features |
Shift+Tab / Ctrl+. or click Switch Mode in the input box.
Essential Actions
| Action | How to Access | Description |
|---|---|---|
| Open Project | Current Project → New Project | Select a directory |
| New Task | New Task | Start fresh conversation |
| Switch Mode | Shift+Tab / Ctrl+. or Switch Mode button | Toggle execution modes |
| Create Workspace | New Workspace | Create isolated worktree |
| Switch Workspace | Select from workspaces in top bar | Navigate between workspaces |
| Open Settings | Verdent → Settings | Configure Verdent |
| View Changes | Source Control → Select file | Review AI-generated changes |
Pro Tips for Beginners
Start with exploration
Start with exploration
Before making changes, let Verdent understand your project:
- “What does this function do?”
- “Explain the architecture”
- “Find all API endpoints”
Be specific with requests
Be specific with requests
Instead of: “fix the bug”Try: “fix the login bug where users see a blank screen after incorrect password”Specific prompts lead to more accurate solutions.
Use Plan Mode or a workspace for unfamiliar code
Use Plan Mode or a workspace for unfamiliar code
When working with code you don’t fully understand:
- Switch to Plan Mode to analyze and plan without making changes
- Or create a new workspace to experiment safely
- Review the plan or changes
- Execute with Start Building or rebase when confident
Break complex tasks into steps
Break complex tasks into steps
For multi-step features:
- Complete one component at a time
- Verify each step before continuing
- Use separate workspaces for independent features
Getting Help
- Discord Community: https://discord.com/invite/NGjXEZcbJq - Active community with real-time support
- Documentation: Browse other guides in this documentation
- Feedback: Use the Feedback button in Verdent’s top bar to report issues or suggest improvements
FAQs
What happens to my workspaces when I close Verdent?
What happens to my workspaces when I close Verdent?
Workspaces persist on disk as git worktrees. When you reopen the project, Verdent detects existing workspaces and restores their state in the interface.
Can I work in the same project in VS Code and Desktop?
Can I work in the same project in VS Code and Desktop?
Yes, but use different workspaces. Never have both tools modifying the same files simultaneously. Use Verdent for parallel agent work and VS Code for your personal coding.
How do I rebase workspace changes?
How do I rebase workspace changes?
- Complete work in the workspace
- Review changes
- Use Workspace Actions → Rebase to main branch to apply changes
- Optionally delete the workspace after rebasing