goalstory_read_steps
Retrieve and view the ordered steps of a goal's action plan to track progress and understand the journey toward achievement. Supports pagination for managing large sets of steps.
Instructions
Access the action plan for a specific goal, showing all steps in the journey toward achievement. IMPORTANT: Steps are returned ordered by their 'order_ts' timestamp in ascending order - the step with the earliest timestamp is step 1, and steps with later timestamps follow in sequence. The ordering is maintained automatically by the system.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goal_id | Yes | Unique identifier of the goal whose steps to retrieve. | |
limit | No | Maximum number of steps to return per page. | |
page | No | Page number for viewing subsets of steps (starts at 1). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"goal_id": {
"description": "Unique identifier of the goal whose steps to retrieve.",
"type": "string"
},
"limit": {
"description": "Maximum number of steps to return per page.",
"type": "number"
},
"page": {
"description": "Page number for viewing subsets of steps (starts at 1).",
"type": "number"
}
},
"required": [
"goal_id"
],
"type": "object"
}