Agent Mode
Agent Mode is Deskless’s multi-step coding workflow for tasks that need more context than a single selected block of code.
Start a task
- Open the relevant project.
- Open Agent Mode from the AI surface.
- Describe the outcome, constraints, and files you already know are relevant.
- Review the proposed plan before continuing.
Good requests name the intended behavior and important constraints without prescribing every line of the solution.
How the agent works
The agent progresses through a controlled loop:
- Plan: break the goal into a small sequence of checks and edits.
- Inspect: rank likely files, look for matching symbols, and gather relevant context.
- Propose: prepare targeted patches instead of silently rewriting the project.
- Verify: surface suspicious edits, sensitive paths, and configuration risks.
- Review: group changes by file and risk so you can inspect every hunk.
- Apply: write only the changes you approve.
Review controls
Approve or reject a whole file when the patch is straightforward, or review individual hunks when you want finer control. Rejected edits are not applied. An empty patch is treated as no change, not as a replacement file.
Resume later
If the app is backgrounded or the review is interrupted, return to the project and reopen the in-progress agent session. Deskless preserves focused task context so you can continue without starting over.
Safety checklist
Before applying a patch:
- inspect every file path and hunk;
- pay extra attention to build, security, credential, and deployment files;
- confirm the patch reflects the current editor buffer;
- run the project’s normal tests or validation after applying; and
- review the final Git diff before committing.
Agent Mode accelerates the work; it does not replace engineering judgment.