Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
charon-fan avatar

Long Task Coordinator

  • 624 installs
  • 65 repo stars
  • Updated June 21, 2026
  • charon-fan/agent-playbook

long-task-coordinator is an agent playbook skill that runs migrations, research, and multi-session work with durable state files and acceptance checks for developers who need reliable long-running agent task execution.

About

long-task-coordinator is a skill from charon-fan/agent-playbook for agent workflows that outlive a single chat window. It persists progress in a durable state file, recovers status before proposing new steps, splits work into worker-sized chunks, and reports honestly when execution is awaiting external results instead of falsely claiming completion. Acceptance criteria prompts in the eval suite cover resuming interrupted migrations and delegating research with visible ownership tracking. Developers reach for long-task-coordinator when coding agents might lose context across sessions or prematurely mark large migrations and research efforts as done.

  • Resumes interrupted work from persisted state instead of chat memory alone
  • Supports delegate-and-wait flows with explicit ownership and awaiting-result as a valid state
  • Requires proof on close: saved state must match reality before marking complete
  • Smoke-test eval prompts cover resume, delegation, and acceptance-criteria closure
  • Enforces recovery rules and honest status transitions for long-running tasks

Long Task Coordinator by the numbers

  • 624 all-time installs (skills.sh)
  • Ranked #649 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/charon-fan/agent-playbook --skill long-task-coordinator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs624
repo stars65
Security audit3 / 3 scanners passed
Last updatedJune 21, 2026
Repositorycharon-fan/agent-playbook

How do agents resume long tasks across sessions safely?

Run migrations, research, and multi-session agent work with a durable state file, honest awaiting-result status, and acceptance checks before claiming done.

Who is it for?

Developers running multi-session agent migrations or research where chat memory alone is unreliable and premature done claims are costly.

Skip if: Single-shot edits or trivial one-file changes that finish within one prompt-response turn.

When should I use this skill?

The user resumes interrupted multi-step work, splits a long task across workers, or needs honest awaiting-status tracking with acceptance criteria.

What you get

Durable task state file, chunked work assignments, honest awaiting-result status, and acceptance-verified completion

  • Durable state file
  • Acceptance-checked task completion report

Files

SKILL.mdMarkdownGitHub ↗

Long Task Coordinator

Keep long-running work recoverable, stateful, and honest.

When to Use This Skill

Use this skill when the work:

  • Spans multiple turns or multiple sessions
  • Involves handoffs to workers, subagents, or background jobs
  • Needs explicit waiting states instead of "still looking" updates
  • Must survive interruption and resume from a durable state file

Skip this skill for small, single-turn tasks. Use planning-with-files when simple planning is enough and recovery logic is not the main concern.

Related Skills

  • planning-with-files keeps multi-step work organized in files.
  • workflow-orchestrator chains follow-up skills after milestones.
  • long-task-coordinator makes long-running work resumable, auditable, and safe to hand off.

Core Rules

1. Create one source of truth

For any real long task, maintain one durable state file. Chat history is not a reliable state store.

The state file should capture at least:

  • Goal
  • Success criteria
  • Current status
  • Current step
  • Completed work
  • Next action
  • Next checkpoint
  • Blockers
  • Active owners or workers

2. Separate roles only when needed

Use the smallest role model that fits the task:

  • Origin: owns the goal and acceptance criteria
  • Coordinator: owns state, sequencing, and recovery
  • Worker: executes bounded sub-work
  • Watchdog: checks liveness and recovery only

Simple tasks can collapse these roles into one agent. Long or delegated tasks should make the split explicit.

3. Run every cycle in this order

For each coordination round:

READ -> RECOVER -> DECIDE -> PERSIST -> REPORT -> END

Do not report conclusions before the state file has been updated.

4. Treat awaiting-result as a valid state

If a worker or background job was dispatched successfully, the task is not failing just because the result is not back yet.

Valid transitions include:

  • running -> awaiting-result
  • awaiting-result -> running
  • running -> paused
  • running -> complete

5. Non-terminal rounds must create real progress

A coordination round is only valid if it does at least one of the following:

  • Dispatches bounded work
  • Consumes new results
  • Updates the current stage or decision
  • Persists a new next step or checkpoint
  • Performs explicit recovery

If nothing changed, do not pretend the task advanced.

6. Keep recovery separate from domain work

Recovery answers:

  • Did execution drift from the saved state?
  • Is the expected worker result still pending?
  • Do we need to wait, retry, or re-dispatch?

Domain work answers:

  • What should we build, analyze, or deliver next?

Recover first, then continue domain work.

Operating Workflow

Step 1: Decide whether the task needs coordination

Use this skill when at least one is true:

  • The task will outlive the current turn
  • The task will hand off work to another execution unit
  • The task needs checkpoints, polling, or scheduled follow-up
  • The task has enough complexity that loss of state would be expensive

Step 2: Create or load the state file

Prefer a path that is easy to rediscover, such as:

  • docs/<topic>-execution-plan.md
  • docs/<topic>-state.md
  • worklog/<topic>-state.md

If no durable state exists yet, create one from references/workflow.md.

Step 3: Recover before acting

At the start of every new round: 1. Read the state file 2. Check whether the recorded next step still makes sense 3. Confirm whether any delegated work returned 4. Repair stale assumptions before new action

Step 4: Persist before reporting

After deciding the next action: 1. Update the state file 2. Record new status, owners, blockers, and checkpoint 3. Only then report progress to the user or caller

Step 5: Close the round honestly

End each round with one of these states:

  • running
  • awaiting-result
  • paused
  • blocked
  • complete

The reported status should match the persisted status exactly.

Output Expectations

When using this skill, produce updates that are grounded in saved state:

  • What status the task is in now
  • What changed this round
  • What is expected next
  • What would unblock or complete the task

Acceptance Criteria

Treat the coordination work as complete only when all relevant items below are true:

  • A durable state file exists in a predictable path
  • The saved status matches the real task state
  • Completed work, next action, and blockers are recorded explicitly
  • Any delegated work has a named owner and a return condition
  • The final report is derived from the persisted state, not from transient reasoning

If the task is not truly complete, end in running, awaiting-result, paused, or blocked rather than pretending the work is done

Anti-Patterns

Avoid:

  • Reconstructing progress from memory instead of the state file
  • Reporting a conclusion before saving it
  • Marking waiting as failure
  • Ending a round with no new action and no state change
  • Mixing recovery checks with domain decisions in one fuzzy step

References

  • references/workflow.md - Detailed workflow, state template, and recovery checklist

Related skills

How it compares

Use long-task-coordinator for cross-session agent projects; use simple todo lists for tasks that complete in one conversation.

FAQ

How does long-task-coordinator handle interrupted work?

long-task-coordinator looks for or creates a durable state file, recovers the last known status before proposing new steps, and reports the next action from persisted state instead of chat memory alone.

What guardrails does long-task-coordinator enforce?

long-task-coordinator requires acceptance checks before claiming completion and reports honestly when the workflow is waiting on external results rather than presenting blocked work as finished.

Is Long Task Coordinator safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.