by inmve
Practical techniques for coding with ai assistants (Claude Code, Codex CLI, Cursor, GitHub Copilot, etc). Available in: English • Español • Deutsch • Français • 日本語
# Add to your Claude Code skills
git clone https://github.com/inmve/awesome-ai-coding-techniquesAvailable Languages: English | Español | Deutsch | Français | 日本語 | Português
Active Development - Updated November 26, 2025
<div align="center"> </div>
Practical techniques for coding with AI - Community-driven and practitioner-tested
This resource organizes techniques for working with coding assistants by development stage (from requirements and planning through review and refactoring).
The techniques draw from practitioners including Simon Willison, Armin Ronacher, Indragie Karunaratne, Orta Therox, and the Anthropic team.
Community-maintained and living. Contributions welcome.
🚀 Live site: coding-with-ai.dev
📝 Contributing: See CONTRIBUTING.md to share your techniques and experiences
Create context files that persistently guide tools about your project's structure, standards, and preferences.
Community adoption: 81% essential • Vote on coding-with-ai.dev (n=85)
"Think of AGENTS.md as a 'README for agents': a dedicated, predictable place to provide the context and instructions to help AI coding agents work on your project." — agents.md community
Tool Implementations:
For new projects:
Run /init in your project root to create a starter CLAUDE.md.
For existing codebases:
Run /init and Claude will analyze your project structure, dependencies, and configuration files to automatically generate essential information for working effectively in your codebase.
Claude examines:
• package.json - Build scripts, dependencies, project metadata
• Configuration files - .eslintrc, vite.config.js, tsconfig.json
• Project structure - Component patterns, folder organization
• Documentation - README.md, existing rules files
The generated CLAUDE.md includes:
• Essential commands - npm run dev, npm test, npm run build
• Technology stack - Frameworks, libraries, tools identified
• Architecture overview - Component patterns, state management, routing
• Key conventions - Code style, file organization, testing approach
• Common gotchas - Build is...