workflow-execute

Orchestrate agent-driven workflows by executing per-task JSON files with TodoWrite synchronization.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It removes the manual effort of coordinating multi-step workflow execution by automatically discovering the right active session, orchestrating agents task-by-task, and tracking progress until completion with TodoWrite-based visibility.

Core Features & Use Cases

  • Automated session discovery & selection: Detects active workflow sessions, prompts when multiple exist, and supports --resume-session to skip discovery and planning.
  • TodoWrite-driven orchestration with lazy task loading: Generates and advances TodoWrite status across the whole workflow while loading each task JSON only when it is about to run.
  • Autonomous agent coordination with progress synchronization: Ensures one agent instance executes exactly one task JSON, updates task states, generates summaries, and optionally commits changes after each task.

Quick Start

Run workflow execution without interruption by invoking: workflow-execute --yes

Frequently Asked Questions about workflow-execute

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

FAQPage Schema
How do I automate multi-step workflow execution with agent coordination?

Autonomous workflow execution discovers active sessions, generates TodoWrite plans, and orchestrates agents task-by-task until completion. It coordinates sequential, parallel, or phased implementation plans by loading per-task JSON files and respecting dependencies automatically.

What files do I need to set up before running autonomous workflow orchestration?

Autonomous workflow orchestration requires validated IMPL_PLAN.md and TODO_LIST.md files in your project. Tasks must be represented by per-task JSON files, which the orchestrator lazy loads only when each specific task is about to run.

Can I resume a workflow session without rediscovering tasks and regenerating plans?

Yes, workflow execution supports the --resume-session flag to skip session discovery and planning. Without this flag, it automatically detects active workflow sessions and prompts you when multiple active sessions exist.

How does TodoWrite status synchronization work during agent-driven task execution?

TodoWrite status synchronization generates and advances progress across the entire workflow. One agent instance executes exactly one task JSON, updates the task state, generates a summary, and optionally commits changes after each task completes.

How do I run workflow execution continuously without interruption?

Continuous workflow execution runs without interruption by invoking the command with the --yes flag. This enables autonomous end-to-end processing of sequential, parallel, or phased implementation plans while respecting task dependencies.

Does workflow orchestration support parallel and phased implementation plans?

Yes, workflow orchestration applies to sequential, parallel, or phased implementation plans. It respects dependencies defined within per-task JSON files, ensuring autonomous agents execute tasks in the correct order across complex schedules.