# Explicit voting expressions
\b(let'?s vote|take a vote|put it to a vote|vote on|voting on)\b

# "What do you think" questions — includes "guys"
\b(what do (you|you guys|you all|y'?all|everyone) think about)\s+([^.!?]+)\s*[?\.!]?

# "Should we" questions with options
\b(should we|shall we|do we want to)\s+([^.!?]+?)\s+(or)\s+([^.!?]+)\s*[?\.!]?

# "Which" preference questions
\b(which (do|would) (you|y'?all|everyone) prefer)\s*[:\-]?\s*([^.!?]+)\s*[?\.!]?

# Poll/survey keywords
\b(create a poll|make a poll|start a poll|quick poll|poll time)\b

# "Pick one" or "choose one" — require colon/dash delimiter to avoid false positives (T262286059)
\b(pick one|choose one)\s*[:\-]\s*([^.!?]+)\s*[?\.!]?

# "Pick between" or "choose between"
\b(pick between|choose between)\s+([^.!?]+)\s*[?\.!]?

# "What should" questions
\b(what should (we|i|the group))\s+([^.!?]+)\s*[?\.!]?

# "Help me decide" expressions
\b(help (me|us) decide|can'?t decide|hard to decide)\b

# "A or B" pattern (simple binary choice)
\b(\w+)\s+or\s+(\w+)\s*\?

# "Where should we" location decisions
\b(where should we|where do (you|y'?all) want to)\s+([^.!?]+)\s*[?\.!]?

# "When should we" time decisions
\b(when should we|when do (you|y'?all) want to)\s+([^.!?]+)\s*[?\.!]?

# Opinion gathering
\b(thoughts on|opinions on|what'?s everyone'?s take on)\s+([^.!?]+)\s*[?\.!]?

# Preference questions
\b((does|do) (anyone|everyone) prefer)\s+([^.!?]+)\s*[?\.!]?

# "Who wants" questions
\b(who wants|who'?s (up for|down for|interested in))\s+([^.!?]+)\s*[?\.!]?

# "Who is coming/going/joining" — attendance gathering
\b(who('?s| is) (coming|going|attending|joining|available))\s*.*\?

# "Anyone want/interested" — require question mark
\b(anyone|anybody) (want|wants|wanna|interested)\b.*\?

# "Anyone going/coming" — require question mark
\b(anyone|anybody) (going|coming|joining|attending)\s*(to|tonight|today|tomorrow)?\s*\?

# "Are you in" / "you coming" — RSVP
\b(are you in|you in|you down|you coming)\s*\?

# "Who all" — attendance gathering
\bwho all\b.*\?

# "What do you guys think/want"
\b(what do (you guys|you all) (think|want|prefer))\b

# "What does everyone want/think"
\b(what (does|do) (everyone|everybody) (want|think|prefer))\b

# "What are your thoughts"
\b(what are your thoughts|what are (you guys|y'?all|everyone)'?s? thoughts)\b

# "What do we think"
\bwhat do we think\b

# "Do you guys/everyone want/think/prefer"
\b(do|does) (you guys|you all|y'?all|everyone|anybody|anyone) (want|wanna|prefer|think)\b

# "Are we doing/going/having" — require question mark
\b(are we (still\s+)?(doing|going|having|meeting)|we still (doing|going|having|meeting))\b.*\?

# "Which one" — require question mark
\bwhich one\s*\?

# "Is everyone ok/good/available/coming"
\bis everyone (ok|okay|good|fine|ready|in|available|coming|free)\b

# "Everyone ok/good with"
\b(everyone|everybody|y'?all|you guys) (ok|okay|good|fine|cool|down) with\b

# "Does that work for everyone"
\b(does )?(that|this) work for (everyone|everybody|you|y'?all)\b

# "Sound good?"
\bsound(s)? good\s*\?

# "What time/day works"
\b(what time works|what works for|when works for|what day works)\b

# "What time should we" / "What time are we"
\b(what time) (should|shall|are) (we|you|everyone)\b

# "What/which day should/do"
\b(what day|which day) (should|do|works|shall)\b

# "When are we" — require question mark
\bwhen are we\b.*\?

# "Would you rather"
\bwould you rather\b

# "Any takers" / "any volunteers"
\b(any takers|any volunteers|any interest)\b

# "Any suggestions?" — require question mark
\b(any suggestions|suggestions)\s*\?

# "What's the plan/move" — require question mark
\b(what'?s the (plan|move))\s*\?

# "What do we/everyone want to do/get/eat"
\bwhat (do|does|should|shall) (we|everyone|everybody|you all|y'?all) (want to |wanna )?(do|get|eat|order|play|watch|bring|have|make)\b

# "Let me know if interested/you can"
\b(let me know|lmk) if .{0,30}(interested|you want|you can|you'?re coming|you'?re going)\b
