Skip to main content
Glama

Review App Intents integration

review_app_intents
Read-only

Analyze Swift projects for SiriKit and INIntent migration opportunities, checking entity schemas and onscreen associations for Apple Intelligence integration when requested.

Instructions

Review SiriKit/INIntent migration opportunities and, when explicitly requested, missing Apple Intelligence entity schemas or onscreen entity associations. Findings are heuristic advisories, not blanket deprecations or proof of invalid code. Use when integrating Siri, Shortcuts or Apple Intelligence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the Swift project root (the folder containing Package.swift or the .xcodeproj).
onscreenContentNoReview onscreen entity association only when Siri should reference visible content.
appleIntelligenceNoReview entity schemas for a requested Apple Intelligence integration; not required for ordinary intents.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
scoreYes0-100 defect density. 100 = no findings. penalty = 10*blockers + 3*serious + 1*minor; capacity = files*10. Comparable across runs on ONE project, not between projects.
countsYes
issuesYesEvery finding, most severe first.
summaryYesOne-line plain-language result.
suggestionsYesPrioritized next actions, deduplicated by rule — not a restatement of every issue's fix.
files_checkedYesSwift files actually scanned.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.7.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the readOnlyHint and destructiveHint annotations, the description warns that findings are 'heuristic advisories, not blanket deprecations or proof of invalid code,' which prevents an agent from treating the output as definitive. It also notes that Apple Intelligence review only happens when explicitly requested, matching the appleIntelligence flag in the schema.

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

Conciseness5/5

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

Two sentences deliver the full scope, conditional behaviors, caveats, and use context with no filler. The caveat about advisory findings is front-loaded and prevents misinterpretation.

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?

With annotations confirming read-only behavior)Skip and an output schema covering return structure, the description provides everything an agent needs: target domain, optional scopes, when to use it, and how to interpret findings. Nothing critical is missing.

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

Parameters3/5

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

Schema description coverage is 100%, and each parameter already has a clear description in the schema. The tool description adds useful domain framing but no additional parameter-specific semantics, so the schema carries the semantic load.

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?

The description names a specific resource (SiriKit/INIntent to App Intents migration opportunities) and the extended optional scopes (Apple Intelligence entity schemas, onscreen entity associations). It clearly separates this from sibling Swift/architecture review tools and reinforces the domain with 'Use when integrating Siri, Shortcuts or Apple Intelligence.'

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?

It gives clear when-to-use guidance ('Use when integrating Siri, Shortcuts or Apple Intelligence') and conditional triggers for the optional scopes ('when explicitly requested'). It does not name sibling alternatives or explicitly say when not to use it, so it lacks the full when/when-not routing of a top-tier definition.

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