Concepts
Journeys
See how Invokeable describes a customer task and its expected result.
A journey is a task that an AI agent should be able to complete in your product. It gives the assessment a clear goal and defines what Invokeable must verify afterward.
Example
{
"name": "Change weekly summary delivery",
"goal": "Turn off the weekly email summary",
"expectedResult": "Weekly email summaries are disabled"
}A useful journey includes
- A goal written in customer language.
- A starting state that can be reproduced.
- An observable result that Invokeable can verify.
- Safety rules for actions the agent must not take.
Keep the goal narrow
A journey should answer one customer question. Split unrelated tasks into separate journeys so failures are easier to understand.
See Run an assessment for the next step.