A terminal emulator that displays a configurable grid of interactive terminal sessions with smooth expand/collapse animations. Built on ghostty-vt for terminal emulation and SDL3 for rendering.
Warning
This project is in the early stages of development. Use at your own risk.
The application is experimental and may have bugs, stability issues, or unexpected behavior.
Download the latest release from the releases page.
For Apple Silicon (M1/M2/M3/M4):
curl -LO https://github.com/forketyfork/architect/releases/latest/download/architect-macos-arm64.tar.gz
tar -xzf architect-macos-arm64.tar.gz
xattr -dr com.apple.quarantine Architect.app
open Architect.appFor Intel Macs:
curl -LO https://github.com/forketyfork/architect/releases/latest/download/architect-macos-x86_64.tar.gz
tar -xzf architect-macos-x86_64.tar.gz
xattr -dr com.apple.quarantine Architect.app
open Architect.appNote:
- The archive contains
Architect.app. You can launch it withopen Architect.appor run./Architect.app/Contents/MacOS/architectfrom the terminal. Keep the bundle contents intact. - Not sure which architecture? Run
uname -m- if it showsarm64, use the ARM64 version; if it showsx86_64, use the Intel version.
Prerequisites: Xcode Command Line Tools must be installed:
xcode-select --installInstall via Homebrew (builds from source):
# Tap the repository (note: requires full repo URL since the formula is in the main repo)
brew tap forketyfork/architect https://github.com/forketyfork/architect
# Install architect
brew install architect
# Copy the app to your Applications folder
cp -r $(brew --prefix)/Cellar/architect/*/Architect.app /Applications/Or install directly without tapping:
brew install https://raw.githubusercontent.com/forketyfork/architect/main/Formula/architect.rb
cp -r $(brew --prefix)/Cellar/architect/*/Architect.app /Applications/See docs/development.md for the full development setup. Quick start:
nix develop
just build- Configurable grid of terminal sessions with smooth expand/collapse animations
- Full-window terminal rendering scaled down for grid view
- Keyboard navigation (⌘+Return to expand, ⌘1–⌘0 to switch, ⌘W to close, ⌘/ for shortcuts, ⌘T for worktrees)
- Scrollback with hover wheel/trackpad support and a grid indicator when scrolled
- Worktree picker for quick
cdinto git worktrees - Persistent window and font size state; terminal cwd restore on macOS
- Cmd+Click opening for OSC 8 hyperlinks
- AI assistant status highlights (awaiting approval / done)
- Kitty keyboard protocol support for enhanced key handling
Architect stores configuration in ~/.config/architect/:
config.toml: read-only user preferences (edit via⌘,).persistence.toml: runtime state (window position/size, font size), managed automatically.
Common settings include font family, theme colors, and grid rows/cols. Remove the files to reset to the default values.
- App won’t open (Gatekeeper): run
xattr -dr com.apple.quarantine Architect.appafter extracting the release. - Font not found: ensure the font is installed and set
font.familyinconfig.toml. The app falls back toSFNSMonoon macOS. - Reset configuration: delete
~/.config/architect/config.tomland~/.config/architect/persistence.toml. - Known limitations: emoji fallback is macOS-only; keybindings are currently fixed.
docs/architecture.md: architecture overview and system boundaries.docs/configuration.md: detailed configuration reference forconfig.tomlandpersistence.toml.docs/development.md: build, test, release, and assistant hook setup.CLAUDE.md: agent guidelines for code assistants.
MIT

