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

# Week of May 29, 2026

> v0.5.0 — Command Center, unified page layout configuration, interactive project explorer, and safe schema overrides.

VeloIQ **v0.5.0** is out. Here's what shipped this week.

## New features

### Command Center (Ctrl+G)

A full-screen command palette and global search portal, available anywhere in the app with **Ctrl+G**.

* Three-column layout: pinned shortcuts, object search results, and command actions.
* Fuzzy search across every enrolled model, ranked and keyboard-navigable.
* Pinned items and recent history appear in the empty state so common destinations stay one keystroke away.
* Arrow keys to select, Enter to navigate, Escape to dismiss.

See [Global Search](/guides/global-search) to enroll your models.

### Unified page layout configuration

Dashboard, Show, and Edit pages now include a live drag-and-drop layout builder.

* Drag cells to reorder, resize panels, and choose which relations appear on each page.
* Layout preferences are persisted per user.
* Relations can be configured even when no layout has been set up yet.
* A new `CONFIGURE_LAYOUT` permission gates the builder — Admins and Managers can edit layouts; Viewers see the result.

See [UI Features](/guides/ui-features) and [Access Control](/concepts/access-control).

### Interactive project explorer

Run `veloiq` with no arguments inside a project to launch a terminal UI that surfaces modules, models, fields, relations, dashboard cells, search enrollment, permissions, and ReBAC status — without reading source.

* Five screens: Home, Modules, Module detail, Model detail, and Search config.
* Highlight any action and press Enter to run the corresponding `veloiq` command with a confirmation prompt.

See the [CLI overview](/reference/cli-overview).

## Updates

### Safe schema overrides for `veloiq generate`

`veloiq generate` now produces three files per module so frontend schema customizations survive regeneration:

| File                       | Lifecycle                       | Purpose                           |
| -------------------------- | ------------------------------- | --------------------------------- |
| `{module}Schema.gen.ts`    | Always overwritten              | Raw output from model definitions |
| `{module}Schema.manual.ts` | Created once, never overwritten | Your overrides and additions      |
| `{module}Schema.ts`        | Always overwritten              | Merged result the app consumes    |

Override field view types, labels, options, and value colors, add virtual fields, or define synthetic models — your changes are preserved across runs. See [`veloiq generate`](/reference/cli-generate).

### Sample app polish

The task-manager sample now ships with richer field view types out of the box: currency for cost fields, progress bars, star ratings, Markdown descriptions, colored status and priority tags, and relative timestamps.
