shine-pipeline

Chain SHINE skills sequentially, piping outputs through a shared scratchpad.

1|Updated Apr 15, 2026
One-click install
npx skills add https://github.com/diShine-digital-agency/SHINE-Code-System --skill shine-pipeline
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: shine-pipeline
Source: https://github.com/diShine-digital-agency/SHINE-Code-System/tree/main/skills/shine-pipeline
Command: npx skills add https://github.com/diShine-digital-agency/SHINE-Code-System --skill shine-pipeline

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Run multiple SHINE skills back-to-back, piping the output of each into the next via a shared scratchpad. Lets the user build ad-hoc workflows without hard-coding a new skill for every combination.

Core Features & Use Cases

  • Sequential execution: Run two or more skills in a defined order while passing outputs through a shared scratchpad.
  • Dynamic context sharing: Central scratchpad collects summaries and results, enabling context-aware next steps.
  • Robust orchestration: Validates inputs, initializes scratchpad, executes each step in order, and provides a final summary with guardrails and prompts for recovery.
  • Use Case: Build customized workflows by chaining existing SHINE skills to achieve end-to-end automation without creating new skills.

Quick Start

Invoke the pipeline by listing two or more skill names in order, e.g., /shine-pipeline shine-lead-enrich shine-cold-email.

Frequently Asked Questions about shine-pipeline

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

FAQPage Schema
How do I chain multiple skills into a sequential workflow?

To chain multiple skills into a sequential workflow, list two or more skill names in a defined order. The pipeline validates inputs, executes each step sequentially, and pipes the output of each into the next via a shared scratchpad.

What is a shared scratchpad in skill orchestration?

A shared scratchpad is a dynamic context space that collects summaries and results from each skill. It enables context-aware next steps by piping the output of one skill directly into the input of the following skill in the pipeline.

Can I build ad-hoc automation workflows without hard-coding new skills?

You can build ad-hoc automation workflows without hard-coding new skills by chaining existing skills together. This allows you to create customized end-to-end automation across varying scenarios by simply defining a new execution sequence.

Does the pipeline provide error-handling and retry options for failed steps?

The pipeline provides error-handling and retry options for failed steps through built-in guardrails. It validates inputs before execution and prompts for recovery, reporting a final summary with options to retry if a skill in the sequence fails.

How do I run two skills back-to-back using a single command?

To run two skills back-to-back, invoke the pipeline command followed by the skill names in your desired order, such as /shine-pipeline skill-one skill-two. The pipeline initializes the scratchpad and handles the sequential data passing automatically.