fix(mcs-tools): correct Dataverse table name in Use Case #3 agent instructions - #490
Open
bobbyschang wants to merge 1 commit into
Open
fix(mcs-tools): correct Dataverse table name in Use Case #3 agent instructions#490bobbyschang wants to merge 1 commit into
bobbyschang wants to merge 1 commit into
Conversation
…agent instructions The instruction block the learner pastes into the agent in Use Case microsoft#3 told it to create records in the "Account and Opportunity Tables". The Read and Update lines directly above it both target the Account and Contact tables, as do the agent description, the objective, the summary of tasks, and every test prompt in the section. "Opportunity" appeared exactly once in the entire lab. The Opportunity table is never used by the exercise and is never seeded with sample data, so the pasted instruction pointed the agent at a table outside the lab's scope. Change it to "Account and Contact Tables" to match the rest of Use Case microsoft#3. Mirrored into _labs/mcs-tools.md so the rendered site matches and the Lab Doc Sync check passes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: be6b1483-8cab-4bb5-b342-95313bb945d7
bobbyschang
requested review from
Henry Jammes (HenryJammes) and
adilei
as code owners
August 6, 2026 02:31
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
In
mcs-toolsUse Case #3, the instruction block the learner pastes into the agent tells it to create records in the Account and Opportunity Tables. This changes it to Account and Contact Tables.Why
The Read and Update lines directly above it both target the Account and Contact tables — only the Create line diverged. The same is true of the agent description, the objective, the summary of tasks, and every test prompt in the section (e.g. "Who are the contacts for each account").
Opportunityappeared exactly once in the entire lab. The Opportunity table is never used by the exercise and is never seeded with sample data, so the pasted instruction pointed the agent at a table outside the lab's scope while omitting one it actually needs.Scope
Two files, one line each — the authored source and the rendered collection doc that the site builds from, per
docs/CONTENT_FEED.md:labs/mcs-tools/README.md_labs/mcs-tools.mdVerified locally with
scripts/check-lab-sync.js— Lab Doc Sync: OK.No instructions, steps, screenshots, or other labs are touched.
Notes
Found during a documentation audit of the lab. Happy to open follow-ups for the other items it surfaced if useful — the most impactful being that Use Case #1 instructs the learner to turn the New experience toggle off, while the screenshot directly beneath it shows the New experience on with New Agent ▾ → New classic agent, which is also what Use Cases #2–#4 and four sibling labs (
mcs-multi-agent,mcs-alm,component-collections,autonomous-account-news) instruct.