release: v1.5.0 - Cognitive Orchestration, Metadata Caching, and High-Fidelity UX Refinements#32
Merged
Conversation
… exact-match subfield categorization, and implement parallel multi-inspector orchestrator
…ModelMetadata with async parent warming, and search_records / get_record breadth-depth split
…parameter serialization crashes
…__domain noise and renaming __count to count
… and stringified arrays/strings
…allback parameters
…s action models and add structured envelope to list_models
…de pagination keys
…ew/menu resolutions, and list_models pagination limits
…taCache, and start-inspectors CLI switches
… align skill prompt files with search_records
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Objective
This PR delivers Version 1.5.0, a massive architectural and functional upgrade that transitions
brass-monkeyfrom a generic XML-RPC bridge into a highly intelligent, secure, and context-efficient Odoo Cognitive Orchestrator.Key Releases & Features:
The "Breadth vs. Depth" Gated Search Paradigm:
search_records(Breadth): Replacedsearch_readwith a lightweight discovery tool returning our pagination envelope (with Odoo-side parallelsearch_count, and a semanticleadsmapping of ID to Display Name). It defaults to a tight, low-token "Breadth Layout" (ID, Name, Freshness, and hierarchical parent relation), strictly excluding heavy arrays.get_record/get_records(Depth): Added deep-dive dashboard fetchers that concurrently resolve relational display names, full child rows for line tables (One2many/Many2many), and the last 5 Odoo Chatter comments inside a single, highly dense turn.search_countand integrated its parallel counting natively intosearch_records.In-Memory Metadata Caching:
MetadataCacheservice class.buildModelMetadata()(using XML-ID parent lookups and the strictif/else-iffield categorization cascade).project_idfor tasks) and spawns parallel background warming of parent schemas.High-Signal UX & Navigation Enhancements:
get_menu): Completely rewrote get_menu to return a recursive nested JSON tree, defaulting to a clean 2-level root apps list.get_action): Automatically queries the base actions table first to auto-resolve action models (supporting window, server, client, or report actions dynamically). Resolves specific sub-view bindings and menu bindings in parallel.list_models): Addedlimit(defaulting to 50) andoffsetparameters to prevent massive dumps of Odoo's ~800 models.Decommissioned Server-Side Skill Gating:
SkillGuardand the server-sideactivate_skilltool, resolving the duplicate tool collision. The Gemini CLI client now handles 100% of the active skills prompt injections from disk perfectly.SKILL.mdprompt guidelines forodoo-introspectorandodoo-data-opsto teach the agent the "Breadth vs. Depth" search paradigm.Local Testing & Verification:
start-inspectors.shwith CLI switches (--all,--dev,--prod,--legacy) and independentCLIENT_PORTandSERVER_PORTallocations to prevent port collisions.