Add browser investigation agents for performance, regressions, and ru…#1266
Open
proflead wants to merge 1 commit intogithub:stagedfrom
Open
Add browser investigation agents for performance, regressions, and ru…#1266proflead wants to merge 1 commit intogithub:stagedfrom
proflead wants to merge 1 commit intogithub:stagedfrom
Conversation
…ntime accessibility
Contributor
🔍 Skill Validator Results4 resource(s) checked | ✅ All checks passed Full output
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds three new narrowly scoped, browser-focused investigation agents to the repository’s agent catalog to support runtime evidence-based workflows (performance diagnosis, regression triage, and accessibility runtime testing), and updates the agents README so they appear in the published list.
Changes:
- Added
Frontend Performance Investigatoragent for DevTools-driven performance investigations (CWV/Lighthouse/trace-based analysis). - Added
DevTools Regression Investigatoragent for reproducing browser regressions and collecting console/network evidence. - Added
Accessibility Runtime Testeragent for keyboard/focus/runtime accessibility validation, plus regenerateddocs/README.agents.mdto include all three.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| docs/README.agents.md | Adds the three new agents to the published agents catalog table. |
| agents/frontend-performance-investigator.agent.md | New agent definition focused on runtime web performance investigation workflows. |
| agents/devtools-regression-investigator.agent.md | New agent definition focused on browser regression reproduction and evidence collection. |
| agents/accessibility-runtime-tester.agent.md | New agent definition focused on runtime accessibility testing (keyboard/focus/forms/dynamic UI). |
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.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Adds three new specialized browser-focused agents for runtime investigation workflows:
frontend-performance-investigator.agent.mddevtools-regression-investigator.agent.mdaccessibility-runtime-tester.agent.mdThese agents are intentionally narrower than existing general browser/testing/debug agents and focus on evidence-backed runtime analysis with Chrome DevTools MCP-
style workflows.
Summary of each agent:
Frontend Performance Investigator: runtime web-performance diagnosis for Core Web Vitals, Lighthouse regressions, layout shifts, long tasks, and slow networkpaths.
DevTools Regression Investigator: browser regression reproduction and triage for broken user flows, with console/network evidence and likely root-causenarrowing.
Accessibility Runtime Tester: runtime accessibility validation for keyboard flows, focus management, dialog behavior, form errors, and browser-observed WCAGissues.
This also regenerates
docs/README.agents.mdso the new agents appear in the catalog.Type of Contribution
Additional Notes
These are not intended to be generic browser testers.
The goal is to add more focused runtime investigation agents in areas that are valuable to users and explicitly in scope for the repository:
I tried to keep overlap low by making each agent centered on a distinct investigation workflow rather than a general-purpose testing persona.
Validation performed:
npm cinpm run buildbash scripts/fix-line-endings.shBy submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.