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

# Groups

> Create groups, add tabs, and manage their contents.

Groups collect related tabs into a named section of the Radius sidebar. A split
belongs to a group as one collection, so its panes stay together when grouped.

## Create a group

Create a tab, then create a group containing it:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
page="$(radius tab open "https://example.com")"
group="$(radius group create "Research" --tab "$page")"
```

If `page` is part of a split, Radius places the complete split in the new group.

<video controls muted playsInline src="https://mintcdn.com/inspector-12805d8f/XifxWshzhd_l_q9V/videos/groups-create.mp4?fit=max&auto=format&n=XifxWshzhd_l_q9V&q=85&s=71ddd66b4df59f855617622a9e761ca3" data-path="videos/groups-create.mp4" />

## Open more tabs in the group

Pass the returned group ID explicitly:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
radius tab open "https://developer.mozilla.org" --group "$group"
```

The new tab opens in the **Research** group and becomes active.

<video controls muted playsInline src="https://mintcdn.com/inspector-12805d8f/XifxWshzhd_l_q9V/videos/groups-open-more-tabs.mp4?fit=max&auto=format&n=XifxWshzhd_l_q9V&q=85&s=4fcb1cb4c30bb60575ceca9fc1f5237a" data-path="videos/groups-open-more-tabs.mp4" />

## List what's in a group

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
radius group show "$group"
```

The output lists every tab in the group with its ID and title:

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
Research (group_research)
* tab_42  Example Domain
  tab_43  MDN Web Docs
```

The `*` marks the active tab.

<Tip>
  Add `--json` to `group list`, `group get`, or `group show` when a program needs
  structured group and tab records instead of displayed text. See
  [Machine-readable output](/docs/radius-cli/commands#machine-readable-output) in the
  Command reference.
</Tip>

## Rename a group

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
radius group rename "$group" "Web research"
```

To arrange a group automatically when Radius creates a new worktree, see
[Setup scripts](/docs/project-settings/setup-scripts).
