this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ“ Add AI coding best practices and optimization tips

+4
+4
Artificial Intelligence Models.md
··· 61 61 - Add relevant context to the prompt. Context can be external docs, a small pseudocode code example, etc. Adding lots of context can confuse the model, so be careful! 62 62 - [Teach the agents to use tools](https://www.anthropic.com/engineering/claude-code-best-practices). 63 63 - Be aware of the "cache" (e.g: never edit files manually during a session) 64 + - [Focus on building a rich environment with good tests, documentation, consistent patterns, and clear feature definitions - this helps both humans and AI work better](https://blog.nilenso.com/blog/2025/05/29/ai-assisted-coding/). 65 + - Balancing log verbosity is crucial. Informative yet concise logs optimize token usage and inference speed. 66 + - [You need quick and clear feedback loops](https://lucumr.pocoo.org/2025/6/12/agentic-coding/) (fast tool responses, clean logs, ...). 67 + - Prefer functions with clear, descriptive and longer than usual function names over classes. Avoid inheritance and overly clever hacks. 64 68 65 69 ## Agents 66 70