quedex

Execute LLM-generated DAG plans with dependency resolution and state persistence.

1|Updated Jan 11, 2026
One-click install
npx skills add https://github.com/t3ta/quedex --skill quedex
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: quedex
Source: https://github.com/t3ta/quedex/tree/main/.claude/skills/quedex
Command: npx skills add https://github.com/t3ta/quedex --skill quedex

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve?

This Skill automates the execution of complex, multi-step tasks by managing their dependencies, parallelization, and state persistence, allowing LLMs to focus on planning rather than execution.

Core Features & Use Cases

  • DAG-based Task Execution: Define and run tasks with complex dependencies.
  • Parallel Execution & Concurrency Control: Run tasks in parallel safely.
  • State Persistence & Recovery: Resumes interrupted runs and recovers from failures.
  • Monitoring: Real-time TUI and Web dashboard for monitoring progress.
  • Use Case: Automate a software development workflow: research a feature, implement it, write tests, and deploy, ensuring each step completes successfully before the next begins.

Quick Start

Create a plan file named 'my_plan.yaml' and then execute it using 'quedex run my_plan.yaml'.

Frequently Asked Questions about quedex

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

FAQPage Schema
How do I execute LLM-generated DAG plans with dependency resolution?

To execute LLM-generated DAG plans with dependency resolution, define your workflow in a plan file like 'my_plan.yaml' and run it using 'quedex run'. The system automatically handles dependency resolution, parallel execution, and state persistence.

What is the best way to automate parallel task execution for multi-step workflows?

Automating parallel task execution for multi-step workflows is best handled using DAG-based plan files. You define tasks and their dependencies in a YAML plan file, and the execution engine manages concurrency control to run tasks in parallel safely.

Can I use multiple backends like Codex CLI and Claude Code for task execution?

Yes, you can use multiple backends like Codex CLI, Claude Code, and Opencode for task execution. The orchestration engine supports these backends to execute the individual steps defined within your DAG plan.

How does state persistence and recovery work for interrupted workflow runs?

State persistence and recovery for interrupted workflow runs works by automatically saving execution state. If a run is interrupted or fails, the system resumes from the last completed step and recovers using the persisted state.

How do I monitor real-time progress of parallel DAG execution?

You monitor real-time progress of parallel DAG execution using the built-in real-time TUI and Web dashboard. These monitoring features track task statuses, retries, and overall workflow progress as it happens.

When should I use DAG orchestration for software development workflows?

You should use DAG orchestration for software development workflows when automating complex sequences like researching a feature, implementing it, writing tests, and deploying, ensuring each dependent step completes successfully before the next begins.