Pushpak Chhajed writes about the evolution of project rule systems for AI coding agents, explaining why Laravel Boost moved away from complex semantic search layers in favor of a simple markdown-based approach. To prevent instruction files like `CLAUDE.md` from becoming bloated and consuming excessive context, the team implemented a system using `.ai/rules` containing specific Markdown files linked by a generated two-column index. This "progressive disclosure" method allows agents to efficiently locate relevant project conventions without overwhelming their prompt window or requiring complex vector databases for small rule sets.
- The system uses an automatically updated `index.md` file to help agents map current file paths to specific rule files.
- Agents are encouraged to use a combination of index matching and `grep -rin` to find rules that span multiple directories.
- This approach aligns with advice from the Anthropic Claude Code team regarding progressive disclosure in agentic workflows.
- The solution avoids "staleness" risks associated with maintaining separate vector embeddings for small collections of files.
GenAI-based coding assistants are evolving towards agent-based tools that require contextual information. This paper presents a preliminary study investigating the adoption of AI context files (like AGENTS.md) in 466 open-source software projects, analyzing the information provided, its presentation, and evolution over time. The findings reveal a lack of established content structure and significant variation in context provision, highlighting opportunities for studying how structural and presentational modifications can improve generated content quality.
The article discusses the evolution from RAG (Retrieval-Augmented Generation) to 'context engineering' in the field of AI, particularly with the rise of agents. It explores how companies like Contextual AI are building platforms to manage context for AI agents and highlights the shift from prompt engineering to managing the entire context state.
This article is a year-end recap from Towards Data Science (TDS) highlighting the most popular articles published in 2025. The year was heavily focused on AI Agents and their development, with significant interest in related frameworks like MCP and contextual engineering. Beyond agents, Python remained a crucial skill for data professionals, and there was a strong emphasis on career development within the field. The recap also touches on the evolution of RAG (Retrieval-Augmented Generation) into more sophisticated context-aware systems and the importance of optimizing LLM (Large Language Model) costs. TDS also celebrated its growth as an independent publication and its Author Payment
This article explores strategies for effectively curating and managing the context that powers AI agents, discussing the shift from prompt engineering to context engineering and techniques for optimizing context usage in LLMs.