Skip to content

How To: Replace A UI Element in Warp (Rust Codebase)

Open in ChatGPT ↗
Ask ChatGPT about this page
Open in Claude ↗
Ask Claude about this page
Copied!

Use Agent Mode in Warp to plan and execute icon replacements across a large Rust codebase — with live diffs, auto-compilation, and self-correction.

Learn how to use Warp’s AI coding features to make live code changes — in this example, replacing an icon throughout Warp’s massive Rust codebase using an agentic workflow.

  1. The goal here is to replace all instances of the sparkle icon with the new agent icon, especially within the history menu.

    Open your project in Warp and start by prompting the agent directly (either by typing or speaking):

    Please create a new branch for me according to the format in the attached Linear URL.
    I’ve attached screenshots of what the agent mode and sparkle icons look like.
    I would like you to understand those icons, search for their use in the code,
    and wherever we’re using sparkles, replace them with the agent mode icon.
    Specifically, make sure this happens in the history menu.
    Please give me a plan before making any coding changes.

    Attach any relevant Linear issue links or screenshots to help the agent identify assets accurately.

  2. Warp’s agent parses your request and generates a plan for code edits.
    It identifies files and functions where the sparkle icon is used.

    If the plan looks correct, approve it to proceed.

    Follow-up prompt example:

    Yes, proceed — and please rename the function from renderAISparklesIcon
    to something like renderAgentModeIcon.

    Warp automatically updates function names, asset references, and component usage.

  3. Warp lets you view live diffs as the agent edits your files.

    • Diffs show changes to both render logic and function naming.
    • You can choose to auto-accept or manually review diffs.
    • These settings can be adjusted under AI Settings → Apply Changes Automatically.
  4. After editing, Warp’s agent runs:

    Terminal window
    cargo check

    to verify compilation.

    If compilation fails (e.g., missing imports), the agent automatically corrects and retries — mimicking a human debugging process.

  5. Once compiled:

    • Run your project locally to confirm visual changes.
    • Check that the agent icon now replaces the sparkle icon in all targeted locations.
  6. Warp’s agent completed the full flow:

    1. Understood a Linear ticket and visual context
    2. Created a new branch
    3. Planned and executed the icon replacement
    4. Auto-fixed compile issues
    5. Verified the final result in-app