docs: update diagrams, docs and instructions#289
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the project's documentation, particularly for AI agents and system concurrency. It centralizes agent instructions, introduces a detailed explanation of request processing and optimistic concurrency control, and updates system diagrams for clarity. These changes aim to improve understanding of complex system behaviors and streamline the development process for AI-driven features. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request significantly updates the project's documentation, centralizing instructions in AGENTS.md and introducing a detailed REQUEST_PROCESSING.md for the concurrency model. New diagrams enhance understanding of the execution flows. A key change is the reduction of the eventpipe buffer size, which requires careful consideration regarding its impact on system behavior and consistency with documentation. The new REQUEST_PROCESSING.md is a high-quality addition, providing crucial insights into the system's design and highlighting potential pitfalls, including critical issues related to panic handling that must adhere to established repository rules.
🤖 I have created a release *beep* *boop* --- ## [2.0.1](v2.0.0...v2.0.1) (2026-03-24) ### Features * **a2acompat:** add HTTP+JSON REST support to a2av0 compat layer ([#280](#280)) ([bac00e7](bac00e7)) * agent executor cleaner ([#276](#276)) ([9c95980](9c95980)) ### Bug Fixes * ensure correct concurrent cancellation results ([#287](#287)) ([d0f8981](d0f8981)), closes [#245](#245) ### Documentation * **a2aclient:** add Example_* test functions for pkg.go.dev documentation ([#263](#263)) ([f8dae97](f8dae97)) * update diagrams, docs and instructions ([#289](#289)) ([ed33c7a](ed33c7a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
AGENTS.mdthe primary model instructions file../docs/ai/REQUEST_PROCESSING.mdwhich is actually a very high-quality description of the current execution concurrency design decisions. It was derived from an exported session with a long exploration of a test race condition done by the model.As an experiment:
TESTING.mdinto the primary instructions file and instructed model to follow red-green-blue tdd.AGENTS.mdbased on user follow-ups.