Skip to content

Plug-Ins Overview

import { Aside } from ‘@astrojs/starlight/components’;

The Terminal supports plug-ins that extend its functionality. Plug-ins can add new panels, integrate with external services, or provide specialized AI capabilities.

Plug-ins are separate processes that The Terminal communicates with via IPC (Inter-Process Communication). This architecture keeps The Terminal lightweight — you only load the plug-ins you need.

Plug-inWhat It Adds
Gee-CodeAI agentic coding assistant with browser visibility
Claude (Coming Soon)Anthropic’s Claude CLI integration
Codex (Coming Soon)OpenAI Codex CLI integration

Most plug-ins are installed separately from The Terminal. See each plug-in’s documentation for installation instructions.

The Terminal exposes APIs for building custom plug-ins:

  • DevTools API — allows AI tools to inspect and interact with the browser panel
  • Panel API — create custom panels that integrate into the workspace
  • IPC Channels — communicate between plug-ins and The Terminal

See DevTools API for technical details.