How to do it
With your project open and the simulator running, describe the bug in plain language. Name the screen where you see it. If there’s another screen where the same thing works correctly, name that too — the contrast is the most useful clue the agent can get. A good prompt looks like this:The avatar is missing on the Profile tab — I just see a grey circle with my initial. On the Invite screen, the avatar shows correctly. Find and fix it.That’s it. No file names. No hypothesis.
What the agent does
On its own, the agent will:- Search your code to find both screens
- Read the console logs from the running simulator
- Take a screenshot of the broken screen and look at it
- Inspect the live UI hierarchy
- Write a fix and rebuild the app
- Tap to the affected screen in the simulator
- Take a new screenshot to verify the fix worked
Check the surrounding screens
After the fix, ask the agent to verify nothing else broke:Check that the Invite screen still works.The agent taps the Invite button on its own, takes a screenshot, and confirms the avatar is still showing there too. When both screens look right, tell the agent to commit.