import type { Phase } from "../types"; const GLYPHS: Record = { analysis: "◷", bootstrap: "⚙", red: "✗", green: "✓", refactor: "↺", cleanup: "⌫", none: "·", }; export const phaseGlyph = (p: Phase): string => GLYPHS[p];