Skip to main content
Glama

Plan an iOS app from a brief

plan_ios_app
Read-onlyIdempotent

Plan an iOS app implementation by receiving a safe CLI workflow and argument array from a named specification, without creating files or building.

Instructions

Return an implementation workflow and safe CLI argument array for a named app. No files are created and no build is claimed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
briefYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.7.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the bar is lower; the description adds concrete side-effect context with 'No files are created and no build is claimed.' This clarifies what the tool will not do, which is valuable beyond the annotation flags. There is no contradiction between the description and annotations.

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?

The description is two tight sentences with the core action and deliverable front-loaded. The second sentence earns its place by removing ambiguity about side effects. There is no filler or redundant restatement of the title.

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

Completeness3/5

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

For a read-only planning tool with no output schema, the description gives a high-level return type and non-effects, which is helpful but incomplete. It does not describe the shape or structure of the returned workflow/argument array, provide parameter-level guidance, or distinguish itself from closely related siblings like plan_app_icon. An agent could call it successfully with name and brief, but would be uncertain about the exact output contract.

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

Parameters2/5

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

Schema coverage is 0%, so the description must compensate for the undocumented name and brief parameters; it only partially does so by referencing 'a named app' and the title's 'brief.' It does not explain what constitutes a valid brief, how name is used in planning, or how the two parameters interact. This leaves significant semantic ambiguity for an agent.

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 verb and deliverable: 'Return an implementation workflow and safe CLI argument array for a named app.' The title 'Plan an iOS app from a brief' reinforces the resource and purpose. It also separates itself from siblings like build_project and create_app by explicitly disclaiming file creation and build claims.

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

Usage Guidelines3/5

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

The intended use is implied: the tool plans an iOS app from a brief and produces a workflow plus CLI args, which suggests use before implementation. However, it does not explicitly say when to prefer this over related siblings such as create_app, build_project, or plan_app_icon, nor does it provide exclusions or alternative routing. The context is clear enough but the comparative guidance is missing.

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