taskflow

Coordinate durable multi-step background jobs with revision-tracked state across restarts.

Updated May 7, 2026
One-click install
npx skills add https://github.com/MOODMNKY-LLC/mnky-atlas --skill taskflow-moodmnky-llc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: taskflow
Source: https://github.com/MOODMNKY-LLC/mnky-atlas/tree/main/skills/taskflow
Command: npx skills add https://github.com/MOODMNKY-LLC/mnky-atlas --skill taskflow-moodmnky-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the risk of lost context and progress for long-running, multi-step background jobs that outlive a single prompt or detached run, removing the need to manually track state and resume work across sessions.

Core Features & Use Cases

  • Durable Task Orchestration: Coordinate multi-step background jobs that persist across sessions, restarts, and revision conflicts.
  • State & Wait Management: Track persisted job state, handle waits for external systems or human input, and resume work seamlessly without losing progress.
  • Use Case: Use it to manage a long-running inbox triage workflow that classifies messages, waits for Slack thread replies, and compiles an end-of-day summary even if the originating session restarts.

Quick Start

Use the taskflow skill to create a durable managed flow that triages your inbox, waits for business thread replies, and generates an end-of-day summary of all processed items.

Frequently Asked Questions about taskflow

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

FAQPage Schema
How do I persist state for background tasks across prompt session restarts?

To persist state for background tasks across prompt session restarts, you need durable task orchestration that saves minimal progress between workflow steps. This Skill coordinates multi-step jobs that outlive individual detached runs and resume seamlessly.

What is durable multi-step task orchestration and when do I need it?

Durable multi-step task orchestration coordinates background jobs that persist across sessions and revision conflicts. You need it when workflows wait on external subagent tasks or human input, requiring conflict-safe state mutations and resumption without lost progress.

How do I manage subagent coordination and wait for external ACP tasks to complete?

Managing subagent coordination and waiting on external ACP tasks requires a managed flow lifecycle. This Skill handles parent-child task linkage, waits for external systems, and emits status updates to the originating owner session when work resumes.

Can I use this approach for background jobs that outlive a single detached run?

Yes, this approach is specifically designed for background jobs that outlive a single detached run. It applies to orchestration scenarios requiring revision tracking for conflict-safe state mutations and full lifecycle support from creation through cancellation.

What are the limitations of manually tracking workflow state without taskflow?

Manually tracking workflow state without dedicated orchestration risks lost context and progress for long-running background jobs. It lacks revision tracking for conflict-safe mutations and parent-child task linkage, failing to resume work seamlessly across restarts.