output-workflow-result

Retrieve completed Output SDK workflow results for post-run analysis.

430|12|Updated Mar 13, 2026
One-click install
npx skills add https://github.com/growthxai/output --skill output-workflow-result
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: output-workflow-result
Source: https://github.com/growthxai/output/tree/main/coding_assistants/claude/plugins/outputai/skills/output-workflow-result
Command: npx skills add https://github.com/growthxai/output --skill output-workflow-result

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Retrieve the return value of a completed Output SDK workflow to simplify post-run analysis.

Core Features & Use Cases

  • Retrieve the workflow result after an asynchronous run to feed downstream automation or dashboards.
  • Verify completion status before extraction and handle JSON objects, arrays, or primitive values.
  • Debug and compare results across runs using built-in status checks and result commands.

Quick Start

Start a workflow with the Output CLI, wait for it to complete, and then retrieve its result with the result command.

Frequently Asked Questions about output-workflow-result

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retrieve the result of an asynchronous workflow after it completes?

To retrieve asynchronous workflow results, use the Output SDK CLI result command with the workflow ID. This enforces that the workflow status is COMPLETED before fetching and returning the output for downstream automation.

What is the best way to get the return value of a completed Output SDK workflow?

Use the Output CLI result command to fetch the return value of a completed workflow. It verifies the workflow status is COMPLETED before extraction, allowing you to safely retrieve outputs for downstream scripts or dashboards.

Can I extract JSON objects and arrays from a completed workflow run?

Yes, the result command handles JSON objects, arrays, and primitive values natively. You can extract any of these data types from a completed workflow run to feed directly into your bash scripts or dashboards.

How do I check if an asynchronous workflow has finished before fetching its output?

The result command enforces a COMPLETED status check before extraction, ensuring the workflow has finished. If the run failed, it provides guidance for handling failed runs instead of attempting to extract incomplete data.

Does the Output CLI result command work for integrating workflow results into bash scripts?

Yes, the Output CLI result command integrates workflow results into bash scripts by retrieving the return value of completed asynchronous runs. It outputs JSON objects, arrays, or primitives that can be consumed directly by your CLI automation.