get_workflow_detail
Retrieve detailed information about a specific workflow using its profile ID and workflow ID, including workflow name, YAML steps, and last used time.
Instructions
Get a single workflow by build profile ID and workflow ID.
Returns the workflow with the given IDs, including workflow name, workflow document (YAML definition of steps), and last used time.
Args: profile_id: The build profile ID (e.g. UUID). workflow_id: The workflow ID (e.g. UUID).
Returns: Standard envelope (see docs/tool_contract.md): - Success: success (true), data (workflow object with id, profileId, workflowName, workflowDocument, lastUsedTime, etc.), meta (empty). - Error: success (false), error (tool, type, message, details).
Examples: Get workflow detail: get_workflow_detail(profile_id="uuid", workflow_id="workflow-uuid")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile_id | Yes | ||
| workflow_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |