What You’ll Learn

Common troubleshooting procedures, diagnostic steps, and known issue workarounds for Verdent.
Detailed troubleshooting for top user-reported issues is being compiled from support data. This page provides general diagnostic procedures. Contact support@verdent.ai for specific issues not covered here.

Quick Diagnostics

”Service is experiencing high traffic. Please try again later!”

This is the #1 most common error users encounter. It indicates the Verdent service is temporarily overloaded.When it happens:
  • During peak usage times
  • When backend services are under heavy load
  • Temporary service degradation
Recovery steps (in order):
1

Wait and Retry

Wait 30-60 seconds and try your request again. Most service issues resolve quickly.
2

Roll Back Message

If the error persists, roll back the most recent message using the undo button in the chat interface.
3

Start New Task

If errors continue, start a fresh task:
  • Click New Task to create a new conversation
  • The new task starts with fresh context
  • Resubmit your request in the new task
  • Delete the old task if no longer needed
If the issue persists for more than 5-10 minutes across multiple tasks, check the Verdent status page or contact support@verdent.ai.

Desktop-Specific Issues

Cannot create new workspace

Causes:
  • Uncommitted changes in current workspace
  • Insufficient disk space
Solutions:
  1. Commit or discard changes in Source Control panel before creating new workspace
  2. Delete unused workspaces to free disk space
  3. Restart Verdent and try again

Workspace appears stuck or unresponsive

Solutions:
  1. Switch to a different workspace using All Workspaces
  2. Delete the stuck workspace from the Workspace Bar
  3. Restart Verdent

Workspace not appearing in list

Solutions:
  1. Click All Workspaces to refresh the workspace list
  2. Check if the workspace was deleted
  3. Restart Verdent to reload workspace state

Tool-Specific Issues

file_edit Failures

Error: “Failed to find exact match”Causes:
  • Text changed since last file_read
  • Whitespace differences (tabs vs spaces)
  • String not unique in file
Solutions:
# 1. Read file again to get current state
file_read("file.js")

# 2. Use larger context string for uniqueness
file_edit("file.js",
  old_string="function foo() {\n  return 42;\n}",
  new_string="...")

# 3. For multiple identical strings, use replace_all
file_edit("file.js", old_string="TODO", new_string="DONE", replace_all=true)
Always read the file immediately before editing to ensure you have the current state.

Configuration Issues

AGENTS.md Not Applied

Problem: Project rules not affecting Verdent behaviorDiagnostic:
  1. Location: File must be in project root directory
  2. Syntax: Valid Markdown (check for syntax errors)
  3. Specificity: Rules must be directive: “Always use X” not “Try to use X”
  4. Testing: Start new conversation to test fresh application
Precedence check:
# In AGENTS.md (highest priority)
- Use 4-space indentation

# In VERDENT.md (lower priority)
- Use 2-space indentation

# Result: 4-space indentation (AGENTS.md wins)

Known Issues & Workarounds

Binary File Limitations

Issue: Cannot edit images, PDFs, compiled binariesWorkaround:
# Use bash to call external tools
bash("convert input.png -resize 50% output.png")
bash("pdftotext document.pdf output.txt")
Binary file modifications require external tools invoked via bash commands.

Getting Additional Help

Support Channels

For specific issues not covered here: When reporting issues, include:
  1. Verdent version (Help → About)
  2. Operating system and version
  3. Error messages (exact text)
  4. Steps to reproduce
  5. Workspace state (if relevant)
  6. Expected vs actual behavior

See Also