Reddit Post: Developers Need Better AI Coding Practices, Not Just Better Tools

The Problem: Raw Prompting
The author identifies a common pattern where developers approach AI coding tools with what they call "raw prompting." This involves giving vague, open-ended instructions like "Add authentication to this app" without providing context, structure, or guardrails. When the AI makes assumptions, ignores existing code style, skips test coverage, and produces what the community calls "slop," developers tend to blame the tool rather than their own approach.
The Solution: Structured Approaches
The post outlines two levels of improvement for getting fit-for-purpose logic from Claude:
Level 1: Scaffolding (CLAUDE.md)
Stop making the AI guess your preferences. Define core principles in the project by documenting:
- Commit style
- Development approach
- Test methodology
- Code review standards
Set baseline expectations before asking the AI to write any code.
Level 2: Skills & Workflows
Instead of open-ended tasks, use opinionated structures like the Superpowers skillset on GitHub. Force the AI to:
- Analyze context and ask clarifying questions first
- Propose 3 distinct approaches and let you pick/adjust the architecture
- Step through the design one piece at a time
- Execute, run tests in isolation, and critique its own work against the original plan
Key Insight
The author compares the situation to working with a human junior developer: if you told them to "add auth" with zero context, you'd get a mess too. The AI isn't a mind reader. To get production-ready code, you need to provide management and accountability through proper prompting practices.
📖 Read the full source: r/ClaudeAI
👀 See Also

Qwen 3.5 Tool Calling Fixes for Agentic Use: Server Status and Client-Side Workarounds
A detailed analysis identifies four bugs that break Qwen 3.5 tool calling in agentic setups, tracks server fixes as of April 2026, and provides a client-side Python function to parse XML tool calls when servers fail.

Claude Code Cheat Sheet with 140 Tips and LLMs.txt File
A GitHub repository contains a Claude Code cheat sheet with 140 tips organized into 14 sections, tagged by difficulty. The repository includes an llms.txt file that can be fed directly to Claude for learning or applying the tips.

GitHub Repo Owners: Use Git's --author Flag to Block AI Bot Spam
Archestra fought AI comment/PR spam by exploiting GitHub's 'prior contributors' setting and Git's --author flag to whitelist real humans via a captcha-based onboarding flow.

Claude for Motion Graphics: Prompt Patterns That Produce Animated HTML Visuals You Can Capture as Video
A r/ClaudeAI user shares a reliable prompt structure for generating animated motion graphics and interactive charts as HTML widgets from Claude, then capturing them as MP4 with Playwright + ffmpeg.