mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 06:15:51 +00:00
13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
// Past tense verbs for turn completion messages
|
|
// These verbs work naturally with "for [duration]" (e.g., "Worked for 5s")
|
|
export const TURN_COMPLETION_VERBS = [
|
|
'Baked',
|
|
'Brewed',
|
|
'Churned',
|
|
'Cogitated',
|
|
'Cooked',
|
|
'Crunched',
|
|
'Sautéed',
|
|
'Worked',
|
|
]
|