Verdent for VS Code excels at breaking down complex multi-step tasks autonomously. This guide provides step-by-step workflows for common multi-step scenarios, showing exactly how Verdent handles task decomposition, dependency management, and progressive execution.
Suppose you want to review a detailed plan before Verdent makes any changes to your codebase.
1
Switch to Plan Mode
Click the “Switch Mode” button in the interface and select “Plan Mode”.Plan Mode is read-only: Verdent can analyze code, conduct research, and create plans without modifying files or executing commands.
2
Submit your complex request
Copy
Refactor this codebase to replace our custom authentication with OAuth 2.0
Verdent analyzes your current implementation thoroughly.
3
Answer clarifying questions
Verdent may ask questions to remove uncertainty:
Which OAuth provider should we use?
Should tokens be stored in localStorage or cookies?
Do we need to support multiple OAuth providers?
Answer these questions to refine the plan.
4
Review the detailed plan
Verdent presents a comprehensive plan showing:
Files to be created
Existing files to modify
Implementation steps in logical order
Dependencies between steps
Review this plan carefully before proceeding.
5
Choose Your Next Action
After reviewing the plan, Verdent presents two options:
Choose Edit to request modifications or ask clarifying questions
Choose Start Building to switch to Agent Mode and begin execution
You can iterate on the plan as many times as needed before building.
Tips:
Use Plan Mode for features affecting multiple files
Perform multiple rounds of plan review to refine the approach
Save the plan to a file for team discussion before execution
Plan Mode helps ensure alignment between your expectations and Verdent’s proposed solution
Customize plan format: Access Settings → Rules → Plan Rules to control plan structure, detail level, and formatting preferences
Can I stop Verdent in the middle of a multi-step task?
Yes. You can interrupt execution at any time. Verdent will complete the current step it’s working on, then stop. Progress up to that point is preserved. You can review what’s been done, make adjustments, and either continue or take a different approach.
How do I know what Verdent is doing right now in a long task?
Watch the todo list. It shows real-time status with one item marked “in progress” at any time. The active item shows exactly what Verdent is currently working on. Completed items are marked done, and pending items show what’s remaining.
What if I disagree with how Verdent broke down my task?
Use Plan Mode to review and adjust the breakdown before execution. In Plan Mode, you can provide feedback like “Split the frontend work into separate components” or “Combine those two steps.” Verdent will revise the plan based on your input before any code is written.
Should I use Plan Mode for every multi-step task?
Not necessarily. Use Plan Mode for complex features affecting many files, large refactorings, or when you want to review the approach first. For familiar, straightforward tasks, Verdent can execute directly with real-time todo list visibility. Plan Mode adds a review step for higher-risk changes.
Can I modify Verdent's plan after execution has started?
You can provide corrective guidance as Verdent works. Say “Actually, use a different approach for the API integration” and Verdent will adjust remaining steps. For major plan changes, it’s better to stop, commit what’s done, and start a new session with the revised approach.