Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // Animation and timing constants
export const AGENT_VIEW_FOCUS_DELAY_MS = 700;
// Search debounce delay
export const AGENT_SEARCH_DEBOUNCE_MS = 300;
// UUID v4 regex pattern for validation
export const UUID_V4_REGEX =
/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
// Maximum number of agents that can have keyboard shortcuts
export const MAX_AGENT_SHORTCUTS = 9;
// Keyboard shortcut keys for agent switching
export const AGENT_SHORTCUT_KEYS = [
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
];
|