docs: add missing meta/terminal safe-output types to designer mapping table#47506
Merged
Conversation
…ing table Add noop, missing-tool, missing-data, and report-incomplete to the Safe Output Mapping table in .github/aw/designer.md. These four auto-enabled meta/terminal types existed in the safe-output registry (ValidationConfig) but were absent from the designer's decision-heuristic mapping table, causing the Designer Drift Audit to flag them as missing coverage. Also updated the "nothing visible, just analyze" row to clarify that noop is still called automatically even when no write safe outputs are needed. Closes #47463 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
🤖 PR Triage
Score Breakdown: Impact 8 · Urgency 5 · Quality 7 WIP PR with 0 net file changes — appears to be in-flight. Defer until implementation is complete and PR is marked ready for review.
|
Copilot
AI
changed the title
[WIP] Fix missing meta safe-output types in SKILL.md mapping table
docs: add missing meta/terminal safe-output types to designer mapping table
Jul 23, 2026
pelikhan
approved these changes
Jul 23, 2026
pelikhan
marked this pull request as ready for review
July 23, 2026 07:23
Contributor
There was a problem hiding this comment.
Pull request overview
Adds missing meta/terminal safe-output types to the designer mapping.
Changes:
- Documents four auto-enabled safe-output types.
- Clarifies workflows requiring no write operations.
Show a summary per file
| File | Description |
|---|---|
.github/aw/designer.md |
Expands the Safe Output Mapping table. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Medium
| | "track when tools are missing", "create issues for missing tools" | `missing-tool` (auto-enabled; configure `create-issue: true` to file tracking issues) | | ||
| | "track when data is unavailable", "create issues for missing data" | `missing-data` (auto-enabled; configure `create-issue: true` to file tracking issues) | | ||
| | "flag when agent can't finish", "report infrastructure failure" | `report-incomplete` (auto-enabled; configure `create-issue: true` to track failures) | | ||
| | "nothing visible", "just analyze" | no write safe outputs required (noop is still called automatically) | |
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
The Designer Drift Audit flagged four auto-enabled meta/terminal safe-output types that exist in
ValidationConfigbut were absent from the### Safe Output Mappingdecision table in.github/aw/designer.md, causing repeated drift alerts.Changes
.github/aw/designer.md— Added four rows to the Safe Output Mapping table:noop(auto-enabled; no declaration required in most workflows)missing-tool(auto-enabled; configurecreate-issue: trueto file tracking issues)missing-data(auto-enabled; configurecreate-issue: trueto file tracking issues)report-incomplete(auto-enabled; configurecreate-issue: trueto track failures)noopfires automatically even when no write safe outputs are declared.