---
canonical: "https://agi-labo.com/tools/cockpit/docs/cockpit-cli/reference/side-panel"
title: "cockpit side-panel"
description: "cockpit side-panelの構文、オプション、結果、制約をcockpit CLIの正本から自動生成したリファレンスです。"
section: "リファレンス"
order: 104
pageType: reference
lastVerifiedVersion: 4.61.0
lastVerifiedAt: "2026-08-27"
draft: false
surfaces:
  - cli
operatingSystems:
  - windows
  - macos
  - linux
plans:
  - guest
  - member
navigation: false
---

このReference本文は、アプリが配布するcockpit CLIヘルプと同じ英語の正本から自動生成されています。日本語の概念説明と安全な使い方は[cockpit CLI](/tools/cockpit/docs/cockpit-cli)を参照してください。

Usage: `cockpit side-panel <command> [options]`

Open or inspect the AGI Cockpit right side panel for a task. When `--task-id` is omitted, Cockpit resolves the current task from the session context.

```bash
cockpit side-panel status --json
cockpit side-panel open --kind explorer --json
cockpit side-panel close --json
cockpit side-panel html --surface-id latest --json
cockpit side-panel browser --url "https://example.com" --json
cockpit browser show --browser-identity work --json
cockpit side-panel diff --file src/App.tsx --json
cockpit side-panel artifact --artifact latest --json
cockpit side-panel talk <roomId> --json
cockpit side-panel child-tasks --json
cockpit side-panel child-tasks <childTaskId> --json
cockpit side-panel explorer --file src/App.tsx --json
cockpit side-panel file src/App.tsx --mode preview --json
cockpit side-panel file src/App.tsx --line 120 --end-line 125 --json
cockpit side-panel terminal show --json
cockpit side-panel terminal status --json
cockpit side-panel terminal new --name "Tests" --cwd /path --json
cockpit side-panel terminal focus --session <sessionId> --json
cockpit side-panel terminal send --session <sessionId> "pwd" --json
cockpit side-panel terminal send --session <sessionId> --key ctrl-c --json
cockpit side-panel terminal read --lines 200 --json
cockpit side-panel terminal read --session <sessionId> --screen --json
cockpit side-panel terminal rename --session <sessionId> --name "Title" --json
cockpit side-panel terminal close --session <sessionId> --json
cockpit side-panel terminal hide --json
cockpit side-panel width --px 720 --json
```

Notes:

- `cockpit side-panel file` opens the requested path directly without waiting for the project tree. Use `cockpit side-panel explorer --file` when the Explorer tree is needed.
- `cockpit side-panel file --line <n>` scrolls to and highlights one line. Add `--end-line <n>` to highlight an inclusive range; `--end-line` must be greater than or equal to `--line`.
- `cockpit side-panel artifact` opens the Creative Studio artifact review panel (3D model or picture book review). It only works for Creative Studio tasks; `--artifact` and `--version` accept ids or `latest`.
- `cockpit side-panel talk [roomId]` opens the Talk Room conversation view (`latest` or omitted = most recently active room, `list` = room list). See `cockpit help talk`.
- `cockpit side-panel child-tasks [childTaskId]` opens the current task's active child tasks. Pass the child task id positionally or with `--child-task-id`; use `--task-id` to specify the parent task when there is no current task context.
- The Browser panel always shows the current Browser Identity name and color. Switching it changes the task assignment and opens that Identity's isolated persistent partition.
- Prefer the side panel whenever a result is visual — a UI change, a diff review, a generated image, a report page.
