๐Ÿ“š Personal bits of knowledge

๐Ÿ“ Add guidance on context gathering and model interaction for AI agents

+2
Artificial Intelligence Models.md
··· 98 98 - An instinct for what can be outsourced (to AI vs what needs human attention). 99 99 - An good (updated) sense of estimation. 100 100 - Build "partial autonomy" products where humans stay in the loop to verify output, rather than fully autonomous agents. 101 + - [If you need to gather context, do that first in its own session](https://mariozechner.at/posts/2025-11-30-pi-coding-agent). Create an artifact that you can later use in a fresh session to give your agent all the context it needs without polluting its context window with tool outputs. 101 102 102 103 ## Agents 103 104 ··· 119 120 - Tools come in three flavors: context retrieval (finding information), feedback loops (verifying actions), and planning (structuring work over longer horizons). 120 121 - Tool overload confuses models. Just because you can connect every tool doesn't mean you should. Each tool description consumes context window space and can confuse the model about which tool to use when. 121 122 - Unix philosophy beats vertical integration. The most powerful coding agents follow Unix principles, simple, composable tools that do one thing well. 123 + - The way you wrap, feed, and observe a powerful model often matters more than fancy prompt tricks or extra bells and whistles on the model itself. 122 124 123 125 ## Use Cases 124 126