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

# Updates Center

> Action-oriented inbox for rollout tasks, support matrix, and integration status tracking

# Updates Center

The Updates Center is a dashboard page that tracks rollout tasks, support status for integrations, and actionable setup steps.

## Overview

Access the Updates Center at `http://localhost:3000/updates` via the CCS dashboard.

**Key Features:**

* **Action inbox** — notices with "Do Next" tasks you can mark done/dismissed
* **Support matrix** — status of each integration (Target CLI, CLIProxy, API, WebSearch)
* **Progress tracking** — per-notice state persisted in browser localStorage

## Layout

The page uses a two-panel layout:

**Left panel (inbox list):**

* Stat cards showing "Needs Action" and "Done" counts
* Search box (searches titles, summaries, commands, highlights)
* View mode tabs: Action Required | Done | All
* Scrollable notice list sorted by date (newest first)

**Right panel (detail view):**

* Notice header with title, summary, status badges
* Action buttons: Mark Done, Dismiss, Reopen
* "Do Next" card with actionable items (dashboard links + CLI commands)
* "Impacted Integrations" card showing affected support entries
* "Why It Matters" highlights

## Notice Progress

Each notice tracks a progress state stored in browser localStorage:

| State       | Badge        | Meaning                      |
| ----------- | ------------ | ---------------------------- |
| `new`       | Needs Action | Unread, requires attention   |
| `seen`      | In Review    | Clicked once, being reviewed |
| `done`      | Done         | Completed by user            |
| `dismissed` | Dismissed    | Intentionally skipped        |

Clicking an inbox item auto-transitions `new` → `seen`. Use action buttons to mark `done` or `dismissed`.

**Storage key:** `ccs:updates:notice-progress:v1` (localStorage JSON)

## Support Entries

Each notice links to **support entries** representing integrations:

| Scope       | Label             | Examples                   |
| ----------- | ----------------- | -------------------------- |
| Target CLI  | Target CLI        | Claude Code, Factory Droid |
| CLIProxy    | CLIProxy Provider | Codex, Gemini, Antigravity |
| API Profile | API Profile       | Custom API endpoints       |
| WebSearch   | WebSearch         | OpenCode WebSearch         |

Each entry shows:

* **Name** and scope badge
* **Three pillars:** Base URL source, Auth method, Model selection
* **Dashboard link** and **CLI command** with copy button

## Action Types

"Do Next" items are either:

1. **Route actions** — buttons navigating to dashboard sections (e.g., "Open API Profiles" → `/providers`)
2. **Command actions** — CLI snippets with copy button (e.g., `ccsd glm`, `ccs codex --target droid "prompt"`)

## Access

The Updates Center is accessible via direct URL navigation. It is not shown in the main sidebar — designed as an on-demand reference page.

```bash theme={null}
# Open dashboard, then navigate to /updates
ccs config
# → http://localhost:3000/updates
```

<Info>
  All content is static — published as part of CCS releases. No external API calls or CMS.
</Info>

## Related

* [Dashboard](/features/dashboard/overview) — Main dashboard overview
* [Droid Adapter](/features/workflow/droid-adapter) — Multi-target routing
* [CLIProxy API](/features/proxy/cliproxy-api) — OAuth provider management
