feat: add disambiguation check skill - #157
Open
Karima (KarimaKT) wants to merge 1 commit into
Open
Conversation
Adds a standalone skill that scans all routable surfaces in a Copilot Studio agent for routing collisions by evaluating the full AI definition (name, description, inputs/outputs) across topics, tools, and child agents. Checks for: - Combined definition collisions (shared outputs, overlapping descriptions) - Instruction interference (instructions short-circuiting tool routing) - Cross-scope collisions (parent topics vs child agent descriptions) - Output schema collisions - Tool vs topic collisions Runs per-scope (parent + each child agent independently) and only checks active surfaces (those with modelDescription). Also adds a pre-push disambiguation suggestion to manage-agent skill.
Karima (KarimaKT)
force-pushed
the
feature/disambiguation-skill
branch
from
May 1, 2026 04:12
f19a388 to
b6d5bb7
Compare
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.
What
Adds a standalone disambiguation check skill (\skills/disambiguation/SKILL.md) that scans all routable surfaces in a Copilot Studio agent for routing collisions before pushing.
Why
When agents grow in topics, tools, and child agents, overlapping names, descriptions, and output schemas cause the orchestrator to deliberate longer (adding latency) or pick the wrong surface. These collisions are invisible to YAML validation — the files are structurally valid, the routing is just ambiguous.
What it checks
How it works
Integration
Files changed