2026-05-24 18:32:35 +09:00
|
|
|
import { TEAM_MODE_PROMPT } from "@oh-my-opencode/prompts-core"
|
|
|
|
|
|
2026-04-28 14:19:44 +09:00
|
|
|
/**
|
|
|
|
|
* Team mode keyword detector.
|
|
|
|
|
*
|
|
|
|
|
* Triggers when the user explicitly invokes team-mode work:
|
2026-05-24 15:21:24 +09:00
|
|
|
* team mode, team-mode, team_mode, teammode (case-insensitive)
|
2026-04-28 14:19:44 +09:00
|
|
|
*/
|
|
|
|
|
|
2026-05-24 15:21:24 +09:00
|
|
|
export const TEAM_PATTERN = /\bteam[\s_-]?mode\b/i
|
2026-04-28 14:19:44 +09:00
|
|
|
|
2026-05-24 18:32:35 +09:00
|
|
|
export const TEAM_MESSAGE = TEAM_MODE_PROMPT
|