unified-execute-with-file

Execute interdependent tasks serially from a .task directory with convergence verification.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/JefersonCCJM/hotel_san_pedro --skill unified-execute-with-file
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unified-execute-with-file
Source: https://github.com/JefersonCCJM/hotel_san_pedro/tree/main/.agents/skills/unified-execute-with-file
Command: npx skills add https://github.com/JefersonCCJM/hotel_san_pedro --skill unified-execute-with-file

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Unified Execute With File workflow provides a deterministic engine to run serial tasks defined in a .task directory, tracking progress and convergence.

Core Features & Use Cases

  • Serial task execution: processes tasks one by one in dependency order with convergence checks.
  • Progress tracking: maintains execution.md and execution-events.md to visualize progress and history.
  • Flexible inputs: accepts a PLAN path to a .task directory or a single task JSON, with optional dry-run and auto-commit modes.
  • Use case: orchestrating enterprise automation pipelines where tasks have dependencies and require post-execution verification.

Quick Start

Provide PLAN with the path to the .task directory and optional flags; the engine will execute tasks serially and log progress.

Frequently Asked Questions about unified-execute-with-file

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

FAQPage Schema
How do I execute interdependent tasks in a specific dependency order?

Serial task execution with topological ordering processes tasks one by one based on their dependencies. This deterministic approach prevents execution errors by ensuring prerequisite tasks are completed before dependent ones start.

What is the best way to automate enterprise pipelines with deterministic task execution?

Automating enterprise pipelines with deterministic task execution requires an engine that processes tasks serially with convergence verification. This handles complex workflows by applying per-task verification and maintaining auditable logs for reliable orchestration.

How do I track progress and maintain auditable logs for automated workflow execution?

You can track progress and maintain auditable logs for automated workflow execution by generating traceability files. The execution engine writes execution.md and execution-events.md files to visualize progress, record history, and ensure post-execution verification across complex workflows.

Can I test task execution logic before applying changes to my automated pipeline?

Yes, you can test task execution logic before applying changes by using a dry-run mode. This allows you to simulate the serial execution of tasks defined in a directory without modifying source states, verifying convergence safely.

Does the task execution engine support both directory-based and single-file inputs?

Yes, the task execution engine supports both directory-based and single-file inputs. You can provide a path to a .task directory containing multiple interdependent tasks or point directly to a single task JSON file for flexible execution.

How do I automatically commit state changes after executing pipeline tasks?

To automatically commit state changes after executing pipeline tasks, you can enable an auto-commit mode. This updates the execution states in the source tasks during serial processing, ensuring traceability without manual intervention.