navigating-mewui-tree — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited navigating-mewui-tree (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Element (base)
└─ UIElement (input, visibility, focus)
└─ FrameworkElement (sizing, margin, alignment)
├─ Panel (multi-child: StackPanel, Grid, Canvas, DockPanel)
├─ Control (themed elements: Button, Label, TextBox)
│ ├─ ContentControl (single child: Window)
│ └─ Border (decorator)
└─ ...// Every element has one parent
Element? parent = element.Parent;
// Multi-child (Panel)
panel.Add(child); // Sets child.Parent = panel
panel.Remove(child); // Sets child.Parent = null
panel.Children; // IReadOnlyList<Element>
// Single-child (ContentControl, Border)
contentControl.Content = child; // Element? type, sets child.Parent
border.Child = child; // UIElement? type// Find visual root (usually Window)
Element? root = element.FindVisualRoot();
// Check ancestry
bool isChild = element.IsDescendantOf(ancestor);
bool isParent = element.IsAncestorOf(descendant); // Also available
// Find ancestor of type
static T? FindAncestor<T>(Element element) where T : Element
{
for (var cur = element.Parent; cur != null; cur = cur.Parent)
if (cur is T match) return match;
return null;
}Note: VisualTree.Visit() exists but is internal - use FindVisualRoot/IsDescendantOf for external code.
Interface for elements with children (internal API):
internal interface IVisualTreeHost
{
void VisitChildren(Action<Element> visitor);
}
// Panel implementation
void IVisualTreeHost.VisitChildren(Action<Element> visitor)
{
foreach (var child in _children)
visitor(child);
}
// ContentControl implementation
void IVisualTreeHost.VisitChildren(Action<Element> visitor)
{
if (Content != null) visitor(Content);
}// Called when element joins/leaves tree
protected virtual void OnVisualRootChanged(Element? oldRoot, Element? newRoot)
{
// newRoot == null: removed from tree
// newRoot is Window: added to tree
}// Transform to ancestor
var transform = element.TransformToAncestor(ancestor);
// Translate point between elements
Point translated = element.TranslatePoint(localPoint, otherElement);
// Mouse position - use MouseEventArgs.Position property
protected override void OnMouseMove(MouseEventArgs e)
{
Point pos = e.Position; // Position relative to this element
}Hit testing: See hit-testing.md
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.