Crystal — Summary
Crystal (now deprecated, rebranded as Nimbalyst) was an Electron desktop application for managing multiple AI coding agent sessions (Claude Code and Codex) simultaneously against a single repository using git worktrees. Each session operated in an isolated branch/worktree to prevent conflicts, with a full-featured UI including diff viewer, multi-terminal panel system, prompt history, and SQLite-backed session persistence.
Problem it solved: Running parallel AI coding sessions required manual git worktree management and terminal juggling; Crystal automated worktree creation/cleanup, provided a unified interface for comparing approaches, and preserved session context across app restarts.
Distinctive trait: Crystal was the earliest polished Electron app in this batch explicitly purpose-built around the Claude Code SDK's worktree tutorial pattern — each session gets its own git worktree, its own branch, and can be squash-rebased back to main with one click.
Current status: Deprecated in February 2026, replaced by Nimbalyst (https://nimbalyst.com). The repo is archived-in-spirit but not formally archived on GitHub. Version analyzed: 0.3.5 (TypeScript/Electron).
differs_from_seeds: Crystal is closest to superpowers in target tool (Claude Code) but belongs to a completely different archetype — it is a multi-session manager/desktop-app rather than a skills/methodology plugin. Unlike superpowers (14 skills, 1 hook, zero UI surface), Crystal ships no prompt primitives at all; its value is entirely in the Electron GUI, worktree automation, and SQLite session store. Compared to claude-flow (MCP-anchored, 305 tools), Crystal is a thin desktop wrapper that delegates all intelligence to the underlying CLI agents rather than enriching them with tools.