Skip to main content

Keyboard Shortcuts

ShortcutAction
Cmd+LOpen Chat
Cmd+KInline Edit
Cmd+PSemantic Search
TabAccept Autocomplete suggestion

Built-in AI Tools

These are tools the AI uses during conversations to interact with your project. You don’t call them directly — Parsaa decides which tools to use based on your request.
ToolWhat It Does
file_treeBrowse project file structure
read_filesRead source file contents
write_filesCreate or modify project files
grep_projectSearch text across the project
execute_commandRun terminal commands
compile_appBuild the Xcode project
run_appLaunch in the iOS Simulator
semantic_searchSearch code by meaning
The AI chooses which tools to use automatically. For example, asking “fix the build error” may trigger compile_app to check errors, read_files to understand the code, and write_files to apply a fix.

Common Workflows

Open Parsaa with Cmd+L and type your question. Parsaa reads your project context automatically — it sees your open files, project structure, and build errors. No need to copy-paste code.
Select code in Xcode, press Cmd+K, and describe the changes you want. Parsaa generates a diff you can review and apply with a single click. A checkpoint is created before each change so you can roll back.
Press Cmd+P and type a natural language query like “authentication logic” or “network error handling.” Parsaa finds relevant code by what it does, not just by name.
Semantic Search requires a VoyageAI API key. Configure it in API Keys.
Describe a large change like “Refactor the networking layer to use async/await.” Parsaa enters Plan Mode, presents a step-by-step plan, and executes each step after your approval. You stay in control the entire time.
Ask “Write unit tests for [file or function]” in chat. Parsaa reads your code, generates comprehensive XCTest cases, and writes them to your project. Review and add the file to your test target.
Ask “Document this code” in chat. Parsaa generates /// style Swift documentation comments for your classes, methods, and properties.