challenge
Analyze statements critically to uncover assumptions and encourage deeper thinking. Promotes structured reasoning by evaluating prompts for logical consistency and potential biases.
Instructions
Challenge a statement or assumption with critical thinking
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | The user's message or statement to analyze critically. When manually invoked with 'challenge', exclude that prefix - just pass the actual content. For automatic invocations, pass the user's complete message unchanged. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt": {
"description": "The user's message or statement to analyze critically. When manually invoked with 'challenge', exclude that prefix - just pass the actual content. For automatic invocations, pass the user's complete message unchanged.",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}