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

# Web Viewer

> Browse, search, and manage your generated wikis from the Factory web app.

The wiki web viewer at [app.factory.ai/wiki](https://app.factory.ai/wiki) lets you browse, search, and manage AI-generated documentation for all your repositories in one place.

## Browsing your wikis

The main wiki page shows a table of repositories that have generated wikis. Each row displays the repository name, last refresh date, and branch. Click a repository to open its wiki.

### Wiki reader

The wiki reader provides:

* **Markdown rendering** -- Full-fidelity rendering of the generated documentation with syntax-highlighted code blocks
* **Table of contents** -- A sidebar outline of the current page for quick navigation
* **Breadcrumbs** -- Hierarchical navigation showing your position in the page tree
* **Search** -- Full-text search across all pages in the wiki
* **Version history** -- A dropdown to browse previous wiki generations and compare how documentation has evolved
* **Export** -- Download the wiki as markdown files

## Refreshing a wiki

Click the **Refresh** button on the wiki page to regenerate documentation. A modal presents two options:

<CardGroup cols={2}>
  <Card title="One-time refresh">
    Regenerate the wiki once using the latest code on the default branch.
  </Card>

  <Card title="Recurring (on push)">
    Install a CI action that refreshes the wiki on every push to the
    default branch.
  </Card>
</CardGroup>

After choosing a mode, select how to run the generation:

| Method    | Description                                                                                     |
| --------- | ----------------------------------------------------------------------------------------------- |
| **Local** | Copies the CLI command (`/wiki` or `/install-wiki`) for you to paste into a local Droid session |
| **Cloud** | Runs the generation on a cloud template linked to the repository                                |

### Batch refresh

From the top-level wiki page at [app.factory.ai/wiki](https://app.factory.ai/wiki), you can refresh multiple repositories at once:

1. Click **Refresh** to enter selection mode
2. Select the repositories you want to refresh
3. Choose **One-time** or **Recurring**
4. Select a **Droid Computer** to run the work

Droid clones each repository on the selected computer and generates (or sets up recurring generation for) the wikis, running them in parallel where possible.

## See also

* [Generate a wiki](/cli/features/wiki/generate) -- Produce a wiki from the CLI with `/wiki`
* [Set up auto-refresh](/cli/features/wiki/auto-refresh) -- Keep wikis current with a CI action
* [Wiki overview](/cli/features/wiki/overview) -- How all the pieces fit together
