Claude users report faster sessions by requesting markdown instead of Word documents

A Claude user on Reddit shared a practical optimization: switching from requesting Word documents to asking for markdown output resulted in noticeably faster sessions and reduced token consumption.
What's happening under the hood
When users ask Claude to "write me a document about X" and specify .docx format, the AI performs several steps:
- Spins up a code execution environment
- Imports python-docx library
- Builds the document programmatically
- Applies styles and formatting
- Runs the script to generate the file
This entire process happens just to create the container format, while Claude's native output is already markdown.
The performance impact
The user reported immediate improvements after switching to markdown requests:
- Faster response times
- Fewer tokens burned on format conversion
- Reduced failures when python-docx encounters formatting issues
- Better compatibility when feeding output back to the AI for editing or expansion
Markdown is Claude's native format, so when you need to edit or expand content later, the AI can work directly with the markdown. With .docx files, the AI must first parse the document apart before processing, effectively paying for format conversion twice.
Practical recommendation
The user suggests continuing to request .docx files when you need actual Word documents for clients or systems that require that format. For internal use, reading on screen, or when you'll be processing the content further with AI agents, markdown requests eliminate unnecessary overhead.
This optimization is particularly relevant for developers using AI coding agents who frequently generate project specs, outlines, and documentation. The token savings and speed improvements accumulate quickly with regular use.
📖 Read the full source: r/ClaudeAI
👀 See Also

Three Overlooked Bottlenecks in AI Agent Workflows: Ingestion, Context Management, and Model Routing
A deep dive into the three layers often skipped when optimizing AI agents: clean input ingestion, context window management across steps, and task-appropriate model routing. Practical fixes include using structured parsing, summarized step outputs, typed schemas, and matching models to task complexity.

Short system prompts improve Claude's adherence and reduce token waste
A developer discovered that replacing a 3,847-word system prompt with several tiny focused prompts (total ~200 words) eliminated Claude's drift and forgotten instructions.

Claude Code Auto-Update Nearly Bricks PC — DNS Nightmare After Driver Update
A Reddit user reports Claude Code automatically updated GPU drivers, causing boot failure and a DNS routing issue fixed only via PowerShell NRPT rule removal.

Worker Agents Shouldn't Write Memory Directly: A Curator-Agent Pattern
A Reddit post details a Memory Curator pattern that prevents worker agents from writing directly to shared memory, routing events through a validation and scoping layer.