Skip to main content
Glama

start_edit

Delegates bounded code implementation tasks to an isolated Git worktree, running asynchronously without altering your active checkout.

Instructions

Start an asynchronous Antigravity implementation worker in an isolated Git worktree. It cannot directly alter the active checkout.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cwdYesAbsolute path to the project or directory to inspect.
taskYesA bounded, self-contained assignment for the worker.
modelNoAntigravity model id. Defaults to gemini-3.1-pro-high.
effortNoReasoning effort. Defaults to high.
contextNoRelevant constraints or known context.
max_retriesNoAutomatic retries after a failed worker process. Defaults to 1.
model_policyNoRouting policy. Quality uses Pro High, balanced uses Flash Medium, and fast uses Flash Low unless configured otherwise.
timeout_minutesNo
acceptance_criteriaYesSpecific conditions that define a good result.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.9/5.0
Behavior4/5

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

The description discloses important behavioral traits beyond the annotations: the operation is asynchronous, runs in an isolated Git worktree, and cannot directly alter the active checkout. This gives an agent a clear picture of side effects and scope, adding value over the basic readOnlyHint/destructiveHint flags. It does not detail post-completion behavior, but the core safety and execution model is well covered.

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 sentences with zero waste. The primary action is front-loaded, and the key constraint ('cannot directly alter the active checkout') is stated immediately. Every clause adds value.

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 tool with 9 parameters and no output schema, the description covers the essential behavioral context (async, isolated, non-destructive to active checkout) but omits what the caller receives in return (e.g., a run ID) or how to track progress. Since it is an async starter, this is a meaningful gap. However, the schema covers parameter details, so the description is not fully inadequate.

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 89%, so the input schema already documents nearly all parameters (cwd, task, model, effort, context, max_retries, model_policy, acceptance_criteria; timeout_minutes lacks a description but is covered by min/max). The description adds no parameter-specific meaning beyond what the schema provides, so the baseline of 3 is appropriate.

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 clearly states the verb ('Start'), the resource ('Antigravity implementation worker'), and a key distinguishing constraint ('in an isolated Git worktree', 'cannot directly alter the active checkout'). This separates it from sibling tools like start_analysis or start_review, which serve different purposes, and from apply_run that would directly modify the checkout.

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 description conveys the intended use (starting an implementation worker in isolation) but does not explicitly state when to use it versus alternatives, nor provide exclusions. The isolation constraint hints at when not to use it (when direct checkout modification is needed), but this is not made explicit. No alternatives are named.

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