shine-execute-phase

Execute phase plans in waves with parallel subagents and checkpointing.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Phase orchestration across many plans can be slow and error-prone when managed manually. This Skill automates plan discovery, dependency analysis, wave grouping, subagent orchestration, and result collection to accelerate execution while maintaining control.

Core Features & Use Cases

  • Wave-based parallel execution: groups plans into execution waves to optimize throughput.
  • Subagent orchestration: spawns isolated workers for parallel tasks while preserving context.
  • Flexible workflow controls: supports optional flags like --wave, --gaps-only, and --interactive to tune execution.
  • Use Case: Run all plans for a given phase in a staging environment, then verify results before the next phase.

Quick Start

Invoke shine-execute-phase with a phase number to run all plans in that phase.

Frequently Asked Questions about shine-execute-phase

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

FAQPage Schema
What is wave-based parallelism for phase orchestration?

Wave-based parallelism is an execution strategy that groups dependent plans into batches, running each batch concurrently through subagents before proceeding to the next. It automates dependency analysis and orchestration to maximize throughput while maintaining execution control.

Can I run a specific wave or only fill gaps in an incomplete phase execution?

Yes, you can filter execution by applying the --wave flag to target a specific wave or the --gaps-only flag to execute only incomplete plans. This allows targeted re-execution and gap closure without rerunning the entire phase.

How do I run phase plans step by step with interactive checkpointing?

Apply the --interactive flag to enable manual checkpointing and verification between waves during phase execution. This pauses orchestration after each wave, allowing you to verify results and route subagent workflows before proceeding to the next batch.

Does subagent orchestration preserve context across parallel workflow waves?

Subagent orchestration spawns isolated workers for parallel tasks while preserving context through checkpointing and routing mechanisms. Each subagent handles its wave independently, and the orchestrator collects results and reads frontmatter to ensure context flows correctly to subsequent waves.