Skip to main content
Glama

talon_scan

Read-onlyIdempotent

Scan pages for design-system violations: color budget, spacing/type conformance, heading structure, motion safety, and geometry. Each finding cites its source principle; taste-profile overrides can waive rules.

Instructions

Run Raven's deterministic detector engine over a page — no LLM, pure measurement. Covers color-system discipline (palette budget, near-duplicate hex, hue diversity), spacing-grid conformance (base-unit, scale count), type-scale/rhythm (size count, body line-height, measure, font-family budget), heading/landmark structure, motion-duration/easing sanity (flashing-animation risk, prefers-reduced-motion coverage), and orphan-stretch/horizontal-overflow geometry. Pass html, url (rendered headless), or pre-measured elements+viewport (the same DevTools-snippet shape audit_layout takes — required for the two geometry rules). Every finding cites the src/data/principles/*.json entry it derives from. Pass project (and profile) to resolve a saved taste surface binding (see bind_taste_surface) — a finding the binding silences via an 'off' override is still returned, flagged waived_by_taste:true, never dropped.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoLive URL — rendered headless with scroll-settle.
htmlNoFull HTML/CSS of the page to scan.
profileNoTaste profile name to resolve project's binding against (see list_taste_profiles). Only used when project or url is also given.
projectNoProject identifier — resolves a saved surface binding (see bind_taste_surface) whose overrides can waive specific TAL-### rules. Requires profile.
surfaceNoWhat surface is being scanned — activates/skips scope-tagged rules by token match. Omit if unsure.
elementsNoPre-measured element rects (DevTools-snippet shape from audit_layout) — enables the geometry rules (orphan-stretch, horizontal-overflow).
viewportNoViewport used for the horizontal-overflow geometry check.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.2.9

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly/openWorld/idempotent, so the bar is lowered, and this description still adds substantial context: findings are never dropped, taste-binding overrides return findings flagged as waived_by_taste:true, geometry rules require premeasured elements+viewport, and every finding is traceable to a principles source.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense, front-loaded, well worth its length, and reads naturally. It earns a 4 rather than 5 because the dense enumeration of rule categories and nested parentheticals makes the paragraph quite long and less skimmable than a more structured summary.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Even with no output schema, the description effectively conveys what a caller should expect: findings with citations, possible waived flags, and no dropping. It also covers the interaction between all meaningful parameters and the conditions under which features activate, making it complete enough to select and invoke safely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3, but the description goes far beyond the schema by explaining which input mode activates which rules, how project/profile/waivers affect results, and that surface scoping is optional. This is the kind of semantic gloss that makes the tool safe and effective.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: runs Raven's deterministic detector engine over a page, and clearly distinguishes itself from LLM-based evaluation by saying 'no LLM, pure measurement.' It lists the concrete rule domains, so an agent knows exactly what class of checks this tool performs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context: pure/deterministic measurement, three input modalities, conditions for geometry rules, project profile resolution, and surface scoping. What keeps it from a 5 is the absence of explicit alternative-routing ('use audit_page for X instead' or a named sibling comparison).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools