workflow-plan

Generate a 6-phase workflow plan with mode routing for plan, verify, and replan scenarios.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you turn an intent into an actionable multi-phase workflow plan, while detecting likely session conflicts and enforcing a verification/confirmation gate before proceeding.

Core Features & Use Cases

  • Mode-based planning flow: Routes execution into Plan, Verify, or Replan based on user intent and existing session context.
  • Conflict risk assessment and resolution: Evaluates overlap with active sessions and recent file/module touchpoints, then inserts a conflict-resolution phase when needed.
  • Task generation with approval control: Produces tasks and then supports verification, review, or execution (including auto_yes behavior).

Quick Start

Run the full planning pipeline by executing: chain_loader start --chain=workflow-plan --session_id=WFS-123 --goal="Implement unified gateway policy verification" --auto_yes=true --conflict_risk=unknown

Frequently Asked Questions about workflow-plan

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

FAQPage Schema
How do I generate a multi-phase workflow plan from a goal?

To generate a multi-phase workflow plan, route your intent into the planning mode to trigger a 6-phase execution flow. This process handles session discovery, context gathering, and task generation based on your provided goal.

How does conflict detection work during workflow planning?

Conflict detection evaluates overlap with active sessions and recent file touchpoints during the risk assessment phase. If conflicts are found, it automatically inserts a dedicated conflict-resolution phase before proceeding to task generation.

Can I automate task verification without manual confirmation?

Yes, you can automate task verification by setting auto_yes to true. This bypasses the manual confirmation gate and allows the workflow plan to proceed directly to execution after generating tasks.

What's the best way to replan an existing session with new goals?

The best way to replan an existing session is to route execution into replan mode using the existing session_id and new goal. This triggers context gathering and conflict checks to adjust the workflow accordingly.

When should I use mode routing for workflow planning?

You should use mode routing when you need to transition between plan, verify, and replan scenarios based on user intent and existing session context. It ensures deterministic chain execution by applying the correct phase references.