get_next_step
Retrieve the next step in a project's development workflow. Specify a project and an optional current step to get the subsequent step's instructions.
Instructions
Get the next step in the workflow
Retrieves the next step in the development workflow for the specified project. If current_step is provided, returns the step immediately following it. If current_step is not provided, returns step 1 (start of workflow).
Args: project: Project name (uses default if not specified) current_step: Current step number (optional, defaults to 0 to get step 1)
Returns: Formatted next step instructions
Examples: get_next_step(project="trowel") get_next_step(project="trowel", current_step=3)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | ||
| current_step | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |