thinking-makes-agents-introverted
Installation
SKILL.md
Thinking Makes Agents Introverted: Information Disclosure Prompting
This skill applies findings from Li et al. (2026) showing that mandatory reasoning (chain-of-thought, think-before-act patterns) causes LLM agents to become "introverted" — producing shorter responses, omitting critical information, and failing to enumerate options for users. The fix is Information Disclosure (InfoDis) prompting: explicitly instructing agents to proactively share observations, enumerate choices, and summarize system state at every user-facing turn. This technique improved performance across all seven models tested (GPT-5, Gemini-2.5-Pro, DeepSeek-V3.1, etc.) on customer service, booking, and phone assistant benchmarks.
When to Use
- When building or improving a multi-turn conversational agent (customer support, booking, admin assistant) that interacts with real users
- When an agent uses tool-calling or ReAct-style reasoning but produces terse, unhelpful responses to users
- When users complain the agent "doesn't tell me what's going on" or "just asks questions without explaining"
- When designing system prompts for agents that must balance internal reasoning with user communication
- When debugging agent failures where the root cause is information asymmetry — the agent knew something but didn't tell the user
- When an agent with chain-of-thought or
<think>blocks performs worse on interactive tasks than expected