feat(skill): add Dogfood (bug hunt) mode to the companion skill - #1
Open
warrenbryant-msft wants to merge 1 commit into
Open
feat(skill): add Dogfood (bug hunt) mode to the companion skill#1warrenbryant-msft wants to merge 1 commit into
warrenbryant-msft wants to merge 1 commit into
Conversation
Adds a third mode to the PowerAppsControl companion skill alongside Smoke Test and Run my plan: a systematic bug hunt that produces a severity-ranked issue report (findings.md) with repro evidence per finding. - Issue taxonomy (severity + categories) adapted to Power Platform surfaces - Repro-first evidence sized to issue type; reuses the existing session.mp4 (a timestamp/step marker) instead of per-issue videos - findings.md written incrementally so an abandoned session still yields a usable report - Bundled as inline appendices in SKILL.md so it ships through the existing --register pipeline with no InstallSkill/.csproj changes Skill-only change; no server code touched. Distinct deliverable from Smoke Test (issue report vs. re-runnable test plan); not a revival of the removed standalone Explore mode. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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 this adds
A third "Dogfood (bug hunt)" mode in the companion skill, alongside Smoke Test and Run my plan. The agent systematically explores an app to find bugs, UX issues, and polish problems, and produces a severity-ranked issue report (
findings.md) with repro evidence for each finding.This came out of a chat with @warrenbryant-msft about folding his "dogfood" QA approach into PowerAppsControl. The driving/recording is already your engine's strength; this layers on the QA judgment — what counts as a bug, how severe, how to prove it, and when to stop.
Why it's not just "Smoke Test" or the old "Explore"
What's in the mode
session.mp4(no per-issue video, since you already record the whole session); static bugs (typos, clipping) get a single annotated screenshot.findings.md— created at the start and appended per issue, so an abandoned/interrupted session still yields a usable report.save_test_planso "Run my plan" can re-check the fix.Scope / decisions I left for you
/PowerAppsDogfoodskill if you'd rather — your call.SKILL.md. I noticedInstallSkillcopies onlyskill/SKILL.md(not the folder), so separatereferences//templates/files wouldn't reach users. Inlining keeps this a single-file, skill-only change that ships through the existing--registerpipeline with zero code/build changes. If you'd prefer the progressive-disclosure structure (separate files) I'm happy to follow up with the smallInstallSkill(copy theskill/folder recursively) +.csproj(globskill/**) change — I just couldn't build-verify C# here (no net10 SDK), so I kept this PR code-free.Files
src/PowerAppsControl/skill/SKILL.md— adds Mode 3 + Appendix A (taxonomy) + Appendix B (report template).CHANGELOG.md—[Unreleased]entry.No server code touched. Take it or leave it — no worries either way. 🙂