AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Resume Task

skill-bonnguyenitc-specship-resume-task · by bonnguyenitc

Pick up an in-progress task exactly where it was left off — locate it, report where it stands, and continue from the current stage. Use when returning after a break or context reset, or when asked to "resume", "continue the task", "pick up where we left off", "tiếp tục task", "đang làm tới đâu rồi". Entry point over the stage skills; the interactive counterpart to ship.

No reviews yet
0 installs
44 views
0.0% view→install

Install

$ agentstack add skill-bonnguyenitc-specship-resume-task

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-bonnguyenitc-specship-resume-task)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Resume Task? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Resume Task

Goal: given little or no context, re-enter an existing task — find it, reconstruct where it stands from the on-disk state, and hand off to the right stage skill so work continues without redoing finished stages.

Task state lives on disk (tasks/TASK-/), not in the chat session — that's exactly what makes resuming possible. This skill turns that durable state back into momentum.

resume-task is an entry point, not a stage: it doesn't produce its own artifact. It reads the shared state, reports it, and invokes the correct stage skill. It's the interactive counterpart to ship — where ship auto-advances every handoff, resume-task resumes one stage and then follows the normal per-stage checkpoints (ask before advancing).

When to use

  • You're starting a fresh session and want to continue a task already underway.
  • After a context reset, an interruption, or switching away and back.
  • The user asks where a task stands, or to "continue / pick up / resume" — and you need to reconstruct state before acting.
  • Not for starting new work (use spec / ship) and not for mapping an unfamiliar codebase (use explore-source).

Shared task state

Part of the task pipeline — see ../WORKFLOW.md for the full contract. resume-task reads the shared state and delegates; the stage skill it invokes does the writing.

  • Hydrate: read tasks/LESSONS.md if present (apply its rules) and the target task's task.md + its artifacts (below).
  • Checkpoint: resume-task writes to task.md only to (a) un-shelve a task it's resuming (flip pausedactive, or move a folder back out of archive/ — see step 1) or (b) repair a missing trace while reconstructing state (see ../WORKFLOW.md → Flow integrity). Both bump updated: and add a dated Pipeline Log line; it never touches stage/artifacts:. All pipeline checkpointing is the resumed stage skill's job.

Method

Input: an optional task id argument. Accept it in any form — resume-task 007, resume-task 7, or resume-task TASK-007 — and normalize to the on-disk folder name (TASK-): a bare number maps to tasks/TASK-/ matched as written (don't re-pad or strip leading zeros — match the actual folder, e.g. 7 and 007 both resolve to TASK-007 if that's the folder). A non-numeric id (e.g. a ticket key like PROJ-123) maps to TASK-PROJ-123. If no argument is given, auto-detect (step 1.2).

1. Locate the task

Resolve which TASK- to resume, in order:

  1. An explicit id argument (007, 7, TASK-007, normalized as above) or one named in the conversation. Look in tasks/TASK-/ first; if not there, check tasks/archive/TASK-/. If found in neither, list the available tasks and ask — don't start a new one.
  2. Otherwise, scan tasks/TASK-*/task.md and pick the most recently updated: one. Skip tasks/archive/* entirely, and don't auto-pick a status: paused task — shelved tasks resume only when named explicitly. If several active tasks are close, list the candidates (id, title, stage, status, updated:) and let the user choose — don't silently guess.
  3. If tasks/ has no live task, say so (mention any paused/archived ones, resumable by name) and suggest /spec (or /ship) to start one.

Un-shelve before resuming. If the chosen task is shelved, restore it first (get the real time, then log it), then continue. A task can be both archived and paused — apply every step that holds, in this order:

  • archived (found under tasks/archive/) → move the folder back to tasks/TASK-/, bump updated:, append - restored from archive.
  • paused (status: paused — check again after any move above) → set status: active, bump updated:, append - resumed from pause.

Leave stage and artifacts: untouched — restoring changes only status/location. After un-shelving, status must be active (or blocked) before you resume — never resume a task still labelled paused.

2. Reconstruct state

Read the chosen task's task.md (frontmatter stage / status / artifacts, the Now block, and the Pipeline Log), then the artifacts that matter for the current stage (spec.md, plan.md, review.md, debug.md). Cross-check that the recorded stage/artifacts match what's actually on disk — if they disagree, that's a missing/stale trace: repair it per the contract before resuming, and record a lesson.

Verify the record against the code, not just against itself — a checkbox is a claim, not proof, and the code may have moved since updated::

  • Spot-check recorded progress: run the most recently ticked S#'s verify: (or the full gate if that's cheaper). Red means the trace lies — the code was reverted, rebased away, or never landed. Un-tick it, repair the trace, record a lesson, and resume from there.
  • Check for drift: if the codebase has changed since the task's updated: (git log since that date), confirm the plan's "Files to Touch" and cited symbols still exist before resuming coding — a plan written against code that has since moved needs a plan refresh first, not a blind resume.
  • Check the working tree: uncommitted changes may be this task's mid-flight work (the Now block may say so, per pause-task) — or another task's. Say which before resuming; don't silently build on top of foreign changes.

3. Report where it stands

Give the user a tight status read before doing anything:

  • Task: id + title, current stage / status.
  • Done: ticked S# / AC#, confirmed/approved artifacts.
  • Blocking: status: blocked, any open blocker Q# in spec.md, open BUG# in debug.md, or review: changes-requested findings — for findings, report the unaddressed (unticked) blocker ones by name; minor ones just get a count.
  • Next: the one concrete action to move forward (the resume point from step 4).

4. Pick the resume point

Derive the next stage from task.md — honor flow integrity (no skipping upstream stages; resolve blockers before advancing):

| Current state | Resume into | |---|---| | status: blocked / debug: open-bugs (open BUG#) | debug — fix to root cause first, then back to the interrupted stage | | review: changes-requested | coding (or debug for a defect) with the Findings as input, then re-run review | | stage: spec, spec: draft (or open blocker Q#) | spec — finish/confirm it | | spec: confirmed, plan missing/draft | plan | | plan: approved, coding missing/in-progress | coding | | coding: done, review missing | review | | status: done | nothing to resume — report it's complete (and the commit/PR draft in review.md if not yet shipped) |

If an upstream artifact a stage needs is missing or not in the required status, run that earlier skill first — never resume ahead silently.

5. Resume

Confirm with the user — e.g. "Task đang ở stage `, tiếp tục với ` chứ?" — then invoke the resume-point skill via the Skill tool so work continues in the same flow. The invoked stage skill takes over the contract from there (its own hydrate, work, checkpoint, and per-stage "ask before advancing").

  • If the user wants the rest of the pipeline run autonomously instead of stage-by-stage, hand off to ship (it resumes mid-pipeline from the current stage).
  • If the user just wanted a status read, stop after step 3 — don't auto-resume.

When done

resume-task is done once it has handed off to the resume-point skill (or reported a done/empty state). Don't claim any stage's work as finished — that's the resumed skill's job to report.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.