test-workflow-parent

Test parent skill continuation after child skill execution completes.

3|1|Updated Dec 2, 2024
One-click install
npx skills add https://github.com/faisalanjum/EventTrader --skill test-workflow-parent
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-workflow-parent
Source: https://github.com/faisalanjum/EventTrader/tree/main/.claude/skills/test-workflow-parent
Command: npx skills add https://github.com/faisalanjum/EventTrader --skill test-workflow-parent

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill is designed to test a critical bug related to workflow continuation after a child skill returns, ensuring that parent or grandparent skills resume execution correctly.

Core Features & Use Cases

  • Workflow Testing: Verifies the integrity of nested skill execution and return mechanisms.
  • Bug Verification: Specifically addresses GitHub Issue #17351 to confirm workflow continuity.
  • Use Case: Essential for developers and QA engineers ensuring the stability of complex, multi-step agentic workflows.

Quick Start

Execute the test-workflow-parent skill to initiate the workflow continuation test.

Frequently Asked Questions about test-workflow-parent

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

FAQPage Schema
How do I test workflow continuation after a child skill execution completes?

You can test workflow continuation by executing a parent skill that invokes a child process, writes execution markers, and verifies the child output. This confirms the parent correctly resumes subsequent steps after the nested skill returns.

Why does an agentic workflow fail to resume after a nested skill returns?

An agentic workflow might fail to resume due to bugs in nested skill invocation and return mechanisms. Testing workflow continuity by writing execution markers and verifying child output helps identify if the parent skill incorrectly terminates instead of resuming its steps.

What is nested skill invocation in agentic workflow automation?

Nested skill invocation in agentic workflow automation is the process where a parent skill executes a child skill to complete a specific sub-task. The parent workflow must correctly pause, wait for the child output, and then resume its subsequent steps.

How do I verify the stability of multi-step agentic workflows?

You verify the stability of multi-step agentic workflows by testing the continuation mechanism after child skills execute. This ensures the parent skill accurately resumes, writes markers, and processes child output without dropping the execution context.

Does workflow automation testing require dependencies to verify child output?

Workflow automation testing for this specific continuation bug requires no external dependencies. It independently verifies child output and parent skill resumption through internal marker writing within the agentic workflow environment.