For the complete documentation index, see llms.txt. This page is also available as Markdown.

wait_for_generation

Poll a feature's generation until it finishes (or the timeout).

Block until the feature's generation finishes, polling every 3 seconds, and return the final generation status.

This is an MCP / CLI convenience — there is no REST wait endpoint. Over raw HTTP, poll GET …/generation yourself. See Long-running operations.

Arguments

Argument
Type
Required
Description

feature

string

yes

Feature id or name.

timeoutSeconds

integer

no

How long to wait (default 120, max 170).

project

string

no

Project public id (defaults to the configured project).

Tool wait_for_generation{ "feature": "12", "timeoutSeconds": 170 }.

testvibe generate "Login Functionality" --watch

Result

The same payload as get_generation_status, taken when the generation left the generating state — or at the timeout.

Last updated

Was this helpful?