# Is Question

> Check if text contains a question

- Skill: `bdambrosio/is-question` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add bdambrosio/is-question`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bdambrosio/is-question/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bdambrosio (https://skillmd.com/u/bdambrosio)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/bdambrosio/is-question

---


# Is Question

Determines if the input text is a question or contains a question.

## Purpose

Boolean condition for identifying interrogative content in control flow.

## Input Format

Accepts:
- Plain text string

## Output Format

**CRITICAL**: Return ONLY the word "true" or "false", nothing else.

- Return "true" if the text is a question or contains a question
- Return "false" if the text is not a question

Do NOT include explanations, punctuation, or any other text. Only output "true" or "false".

## Examples

Input: "What is the weather like today?"
Output: true

Input: "The weather is nice today."
Output: false

Input: "I wonder if it will rain. Should I bring an umbrella?"
Output: true


