workflow-skill-designer

Convert workflow requirements into structured orchestrator-plus-phases skill packages.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/tcytan/tecton --skill workflow-skill-designer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-skill-designer
Source: https://github.com/tcytan/tecton/tree/main/.claude/skills/workflow-skill-designer
Command: npx skills add https://github.com/tcytan/tecton --skill workflow-skill-designer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves the problem of turning workflow ideas into reliable, multi-phase skill packages by enforcing a consistent orchestrator-plus-phases structure.

Core Features & Use Cases

  • Workflow-to-skill packaging: Produces a complete skill directory with a coordinator SKILL.md and phase execution documents that follow the orchestrator + phases pattern.
  • Progressive phase loading + on-demand references: Ensures SKILL.md contains Ref markers and a phase reference table so phase contents are loaded only when needed.
  • Preference-safe and execution-safe design: Collects interactive workflow preferences in SKILL.md (AskUserQuestion) and keeps phase files free from argument flag parsing and inter-phase routing.
  • Validation-oriented structure: Supports a full validation phase that checks structural integrity, reference integrity, data-flow consistency, and phase hygiene.

Quick Start

Tell the designer to create a 4-phase workflow skill with phases, preferences collected up front, and proper Ref links for on-demand loading.

Frequently Asked Questions about workflow-skill-designer

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

FAQPage Schema
How do I generate a multi-phase workflow skill with conditional execution and data flow?

To generate a multi-phase workflow skill, define your orchestration requirements and phase conditions. The designer outputs a structured skill package with a coordinator SKILL.md and phase documents managing conditional execution, inter-phase data flow, and progressive loading.

What is the orchestrator-plus-phases pattern for workflow skill design?

The orchestrator-plus-phases pattern separates workflow coordination from execution using a central SKILL.md coordinator to route phases and collect preferences, while individual phase files execute specific tasks. This structure ensures safe, consistent multi-step execution.

How do I set up progressive phase loading with YAML frontmatter and Ref markers?

Progressive phase loading uses YAML frontmatter for skill discovery and Ref markers in SKILL.md to link phase documents. This ensures phase contents load on-demand only when referenced, keeping the orchestrator lightweight and execution efficient.

Can I collect user preferences upfront before executing workflow phases?

Yes, you can collect interactive workflow preferences upfront in SKILL.md using AskUserQuestion. This preference-safe design keeps phase files focused strictly on execution, free from argument flag parsing and inter-phase routing logic.

How do I validate structural integrity and reference consistency in a generated workflow skill?

You validate structural integrity and reference consistency by running the dedicated validation phase included in the generated skill package. It checks YAML frontmatter, Ref-based reference integrity, data-flow consistency across phases, and overall phase hygiene constraints.

When should I not use a structured orchestrator-plus-phases workflow design?

Avoid the orchestrator-plus-phases workflow design for simple, single-step tasks lacking conditional phases, inter-phase data flow, or upfront preference collection. The structural overhead provides no benefit without multi-step orchestration requirements.