stream-chain

Chains sequential agent prompts where each step receives the previous step's output.

Updated May 11, 2026
One-click install
npx skills add https://github.com/Turgunoff/mebellar_app --skill stream-chain-turgunoff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stream-chain
Source: https://github.com/Turgunoff/mebellar_app/tree/main/.agents/skills/stream-chain
Command: npx skills add https://github.com/Turgunoff/mebellar_app --skill stream-chain-turgunoff

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multi-step AI workflows manually requires copying output from one prompt into the next, which is slow and error-prone. This Skill automates sequential prompt chaining so each agent step automatically receives the full output of the previous step as context. ## Core Features & Use Cases - Custom Chains: Run any sequence of prompts with the run command, with configurable per-step timeouts, verbose logging, and debug mode. - Predefined Pipelines: Execute built-in workflows for analysis, refactoring, testing, and optimization with a single command. - Custom Pipeline Definitions: Declare reusable named pipelines in .Codex-flow/config.json with their own prompt sequences and timeouts. - Use Case: Run a security audit chain that scans for vulnerabilities, categorizes issues by severity, proposes fixes, and generates security test cases, with each step building on the prior output. ## Quick Start Ask the agent to run a stream chain that analyzes the codebase structure, identifies improvement areas, and generates an action plan.

Frequently Asked Questions about stream-chain

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

FAQPage Schema
How do I chain multiple AI prompts sequentially?▼

Use the stream-chain run command with two or more prompts as arguments. Each prompt becomes a step, and the full output of every step is passed as context into the next step automatically.

What predefined pipelines are available in stream-chain?▼

Four built-in pipelines exist: analysis, refactor, test, and optimize. Each runs a fixed three-step workflow, such as coverage analysis followed by test design and implementation for the test pipeline.

How do I create a custom reusable pipeline?▼

Define it in .Codex-flow/config.json under streamChain.pipelines with a name, description, prompts array, and optional timeout. Then execute it with the pipeline command followed by your custom pipeline name.

Why does a stream chain step time out?▼

Steps time out when the task exceeds the default 30-second limit. Increase the limit with the --timeout flag, using 45-60 seconds for analysis tasks and 60-120 seconds for implementation or complex workflows.

How do I debug context not flowing between chain steps?▼

Run the chain with the --debug flag to enable full logging of execution. This shows exactly what output each step produced and what context was passed to the following step.