get_vibe_edit_status
Check current status of an AI edit session: progress, errors, and change details. Use to determine when the edit is ready to apply.
Instructions
Poll vibe (AI) edit session status. detail='medium' (default) is the REVIEW view: { status, progress, stale, baseVersionId, currentVersionId, changesCount, credits, changes, error } where each changes entry is { index, path, before, after } (before/after truncated to 200 chars) — use these index/path values to select a subset in apply_vibe_edit. 'short' returns just { status, progress, error }. 'full' returns the raw payload including the untruncated editedData. error is populated when status is 'failed' and carries the failure reason — surface it to the user instead of just reporting 'failed'. When status is 'completed', call apply_vibe_edit next (this tool never applies anything).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Landing page slug | |
| detail | No | Verbosity of returned item(s): "short" = id + primary label + status (cheap list scan); "medium" = key summary fields + counts (a useful glance); "full" = the complete object. Default "medium". Lists default to "short" — to zoom into one item, call its get/view tool with detail="medium" or "full". | medium |
| operationId | Yes | Operation ID from vibe_edit_landing_page |