Journey tools
A journey is a named user flow described in ordered steps. Journeys are what a cloud audit drives a screen reader through; four tools manage them.
list_journeys
Section titled “list_journeys”List saved journeys for a project.
| Name | Type | Required |
|---|---|---|
project_id | string | yes |
Returns: the project’s journeys. Not paginated.
The returned ids are what start_agentic_audit and set_journey_group_members take.
create_journey
Section titled “create_journey”Create a new test journey for a project.
| Name | Type | Required | Notes |
|---|---|---|---|
project_id | string | yes | |
name | string | yes | |
description | string | no | |
steps | string[] | no | Ordered list of steps describing the user flow. |
Returns: the created journey.
update_journey
Section titled “update_journey”Update an existing journey’s name, description, or steps.
| Name | Type | Required | Notes |
|---|---|---|---|
journey_id | string | yes | |
name | string | no | |
description | string | no | |
steps | string[] | no | Replaces the whole step list. |
Only the fields you pass are changed. steps is a replacement, not an append.
Returns: the updated journey.
delete_journey
Section titled “delete_journey”Delete a journey.
| Name | Type | Required |
|---|---|---|
journey_id | string | yes |
Returns: the confirmation line Deleted journey: <id>.