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.
How Plug-Ins Work
Section titled “How Plug-Ins Work”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-in | What It Adds |
|---|---|
| Gee-Code | AI agentic coding assistant with browser visibility |
| Claude (Coming Soon) | Anthropic’s Claude CLI integration |
| Codex (Coming Soon) | OpenAI Codex CLI integration |
Installing Plug-Ins
Section titled “Installing Plug-Ins”Most plug-ins are installed separately from The Terminal. See each plug-in’s documentation for installation instructions.
Developing Plug-Ins
Section titled “Developing Plug-Ins”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.