Merged
Conversation
Co-authored-by: strawgate <6384545+strawgate@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add UX design drift agent for consistent design patterns
Add UX Design Patrol agent
Feb 21, 2026
📝 WalkthroughWalkthroughThe PR introduces a comprehensive UX Design Patrol automation system that detects UI/UX design drift through Copilot-based analysis, alongside a minor workflow naming normalization. It includes a scheduled CI/CD workflow with multiple interdependent jobs, artifact management, and supporting documentation. Changes
Sequence DiagramsequenceDiagram
participant Schedule as Scheduler/Manual
participant Trigger as trigger-ux-design-patrol
participant Activation as Activation Jobs
participant Agent as Agent Execution
participant Detection as Detection Pipeline
participant Outputs as Safe Outputs
participant GitHub as GitHub Issues
Schedule->>Trigger: Trigger workflow (schedule or manual)
Trigger->>Activation: Start activation checks
Activation-->>Agent: Pre-flight validation
Agent->>Agent: Create prompts
Agent->>Agent: Setup MCP server
Agent->>Agent: Run Copilot CLI
Agent-->>Detection: Output analysis results
Detection->>Detection: Parse threat/drift analysis
Detection-->>Outputs: Detected issues
Outputs->>Outputs: Redact logs/secrets
Outputs->>Outputs: Generate reports
Outputs->>GitHub: Create consolidation issues
Outputs-->>Trigger: Complete workflow
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches
🧪 Generate unit tests (beta)
Comment |
This was referenced Feb 22, 2026
2 tasks
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.
Adds a new
ux-design-patrolscheduled agent workflow to detect user-facing UI/UX design drift introduced by recent commits and file actionable consolidation reports only when inconsistencies are concrete and user-noticeable.What this PR changes
.github/workflows/gh-aw-ux-design-patrol.mdwith the workflow definition, drift-detection prompt, and a strict quality gate that prefersnoopunless findings are high-signal..github/workflows/gh-aw-ux-design-patrol.lock.yml(compiled workflow)..github/workflows/trigger-ux-design-patrol.ymlfor dogfooding (weekday schedule +workflow_dispatch).gh-agent-workflows/ux-design-patrol/README.mdgh-agent-workflows/ux-design-patrol/example.ymlInputs
modelgpt-5.3-codexadditional-instructions""setup-commands""allowed-bot-usersgithub-actions[bot]messages-footer""lookback-window7 days agoReporting behavior
create-issuesafe output with title prefix[ux-design-patrol].noopas the expected default when no strong inconsistency is found.Fixes #353.