> ## Documentation Index
> Fetch the complete documentation index at: https://docs.transmuter.3mergen.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Reviewing Code

> Inspect the generated code with the built-in code browser (Developer View).

Transmuter includes a built-in code browser that lets you inspect every file in your generated product. This feature is most useful for technical users, but anyone can browse the code to understand what was built.

<Note>
  The code browser is available in **Developer View**. If you are not technical, you can safely skip
  this step -- the audit reports provide a non-technical summary of code quality.
</Note>

## Enabling Developer View

Developer View is an opt-in setting that shows technical details throughout Transmuter. To enable it:

<Steps>
  <Step title="Go to Settings">
    Click your profile icon in the top-right corner and select **Settings**.
  </Step>

  <Step title="Toggle Developer View">
    Under the **Developer View** section, turn on the toggle. The interface will update to show technical information alongside the simplified descriptions.
  </Step>
</Steps>

## Using the code browser

With Developer View enabled, navigate to your project and click the **Code** tab. You will see:

* **File browser** -- a tree view of all project files, organized by folder
* **Code viewer** -- syntax-highlighted code for the selected file
* **Architecture diagram** -- a visual overview of how the different parts of your product connect

## What to look for

If you are technical and want to evaluate the generated code, here are some things to check:

* **File structure** -- is the project organized in a logical way?
* **Type safety** -- are types defined and used consistently?
* **Error handling** -- does the code handle edge cases gracefully?
* **Security** -- are credentials and sensitive data handled properly?

<Tip>
  After deployment, your code is pushed to your GitHub account. You can clone the repository and
  work with it in your preferred code editor for a deeper review.
</Tip>

## Simplified vs. Developer View

| What you see     | Simplified View         | Developer View                                            |
| ---------------- | ----------------------- | --------------------------------------------------------- |
| Progress updates | "Building your product" | "Stage 5: Implementing FEAT-007. Tokens: 142,331/500,000" |
| Specifications   | Plain-language cards    | Full document with section IDs                            |
| Code browser     | Not visible             | Full file browser with syntax highlighting                |
| Audit reports    | Score and summary       | Detailed findings with file references                    |

You can switch between views at any time without losing your place.

<Snippet file="support-cta.mdx" />
