How I Prompt AI Models in 2026 vs a Year Ago: 3 Key Changes

A regular user of Claude and Codex shares three concrete changes that transformed how they prompt AI models over the past year. The advice is practical, no-nonsense, and aimed at developers using AI coding agents regularly.
1. Switch from Prompt Templates to Skills
Prompt templates are static and hard to share. Instead, the author now uses skills — formalized prompt templates that live inside Claude, Codex, or on GitHub. A skill is written once, reused across projects, and easily shared with teammates. This replaces the old approach of everyone maintaining their own prompt doc.
2. Prioritize Goals Over Step-by-Step Instructions
The second change: stop writing rigid, step-by-step instructions. Instead, write the skill or spec like you would for a senior developer: clearly describe the goal, what success looks like, and provide all necessary context. Modern models handle step decomposition better on their own. As models improve, this approach remains valid without rewriting skills every time a new model drops.
3. Use Loops Instead of Interactive Prompting
For complex, long-running projects (e.g., building software, websites, or long analyses), write a solid spec document and have the model run a loop against it. In Claude Code, the /loop command lets the model self-prompt continuously against the spec for hours. Codex has the same feature. This replaces the manual prompt-review-repeat cycle.
The author notes that skills plus goal-over-steps made the biggest difference and recommends starting there if you only change one thing.
📖 Read the full source: r/ClaudeAI
👀 See Also

Auth 400 Error Fix: Using Python's mnemonic Package to Avoid BIP39 Filter Triggers
A Reddit user identified that Anthropic's content filter triggers a 400 error when AI agents attempt to write the full BIP39 wordlist (2048 standardized English words) into Python code. The solution is to use the mnemonic Python package instead, which contains the wordlist internally.

How routing simple tasks to cheaper models cut AI costs by 40%
An OpenClaw user reduced their AI bill by 40% by analyzing usage logs and routing simple tasks like file operations and Q&A to cheaper models like DeepSeek-v3 and Gemini Flash, while reserving Claude Sonnet for complex reasoning tasks.

Workaround for Claude Mobile App Microphone Feedback Loop Error
A Reddit user shares a working workaround for the microphone feedback loop error in the Claude mobile app: installing the web version as a standalone Progressive Web App via Google Chrome, which bypasses the issue and provides access to different Claude models.

Reducing MCP token usage by replacing servers with CLI alternatives
A developer found that MCP servers were consuming 30-40% of their context window with tool definitions, so they replaced four MCP servers with CLI tools where available, reducing from 6 to 2 MCP servers while maintaining functionality.