Research Shows Effective AI Prompting Is Cooperative Communication, Not Engineering

Communication Principles Over Engineering
A Reddit analysis of 80+ real user complaints about AI interactions reveals that roughly 60% of frustrations have a significant user communication component. These issues include vague prompts with no context about audience or purpose, no examples of what "good" looks like, unclear goals, and feedback loops where users say "make it better" without specifying what "better" means.
The remaining ~40% are genuine model limitations including hallucination, sycophancy, performance regression, context window drift, and safety over-filtering. Lakera, an AI security company whose platform processes millions of LLM interactions, independently reached the same conclusion: "most prompt failures come from ambiguity, not model limitations."
The Communication Framework
Researchers across linguistics, HCI, and AI have found that the principles that make human conversation work are the same principles that make AI prompting work. In 1975, philosopher Paul Grice identified four maxims of cooperative communication:
- Quantity: Be informative enough
- Quality: Be truthful
- Relation: Be relevant
- Manner: Be clear
In 2024, IBM researchers Miehling et al. extended this framework with two new maxims specifically for AI interaction:
- Benevolence: Don't generate harmful content
- Transparency: Acknowledge what you don't know
Every major AI failure mode maps to one of these six maxims. Hallucinations represent Quality violations. Overly verbose answers represent Quantity violations. Sycophancy represents Benevolence and Transparency violations.
Understanding these communication principles helps distinguish between "I gave a bad prompt" and "this is a real model limitation," allowing developers to stop endlessly rephrasing vague requests and instead recognize limitations, reduce blast radius, and work around them.
📖 Read the full source: r/ClaudeAI
👀 See Also

Configuring OpenClaw for Smooth Agent-to-Agent Communication
A Reddit user shares specific configuration settings for OpenClaw that reduce timeouts in agent-to-agent communication, including tool visibility settings, memory directives, and workarounds for the ANNOUNCE_SKIP limitation.

Google AI Pro Account Restored After OpenClaw OAuth Ban — Appeal Form Works
A user reports their Google AI Pro account was restored 3 months after being banned for linking to OpenClaw via Google OAuth. The official appeal form eventually worked.

Local LLM Setup Recommendations for OpenClaw
A user shares their configuration for running a local LLM with OpenClaw, using a GB10 for AI processing and a Mac mini for the OpenClaw installation, with specific model and server details.

Practical Guide to Creating Claude Skills: Structure, Triggers, and Scripts
Claude Skills are instruction manuals that automate repetitive tasks, stored as folders with a SKILL.md file in ~/.claude/skills/. The guide explains YAML triggers, script integration, and multi-skill orchestration rules.