agentsclimarketplace

Resume

Skill MrToAster13/mrtoaster13-plugins/plugins/clear-not-compact/skills/resume

Read the latest handoff doc back into a fresh session so you can continue work after /clear instead of /compact. Use at the start of a new session, after the user runs /clear, or when the user says "resume", "pick up where we left off", "continue from the handoff", or names a handoff file or issue to load.From its SKILL.md

Install
npx -y skills add MrToAster13/mrtoaster13-plugins --skill resume

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.6 KB, 857 tokens by cl100k_base, as published. Nobody here has run it

Resume

Load a handoff doc into this fresh session and re-establish the plan. This is the second half of the clear-instead-of-compact loop: the handoff skill wrote the state, the user ran /clear, and now you rebuild context from disk — cleanly, without the cruft of the old session.

Steps

  1. Find the handoff.

    • Resolve the same root the handoff skill used, so you read from where it wrote: in a git repo root="$(git rev-parse --show-toplevel)", otherwise root="$(pwd)". The handoff folder is "$root/docs/handoffs/".
    • If the user pointed at something specific, honor it. Treat a bare number, a slug, or an *.md name as a handoff file under $root/docs/handoffs/. Only treat it as a GitHub issue when they clearly mean one — the word "issue", a #N, or a GitHub URL — and only then, after confirming gh is installed and authed (gh auth status); read it with gh issue view <n>. If gh isn't available, fall back to the local file it links to.
    • Otherwise take the latest by number. Consider only names matching ^[0-9]+-, parse the leading integer, and take the numeric maximum — not a lexicographic sort, which would rank 7-foo.md above 010-foo.md:
      ls "$root/docs/handoffs/" 2>/dev/null | grep -E '^[0-9]+-' | sort -t- -k1,1n | tail -1
      
    • If nothing matches ($root/docs/handoffs/ is missing, or holds no NNN-*.md — a lone .gitkeep doesn't count), say so and ask what to resume from. Don't guess or invent state.
  2. Read it in full, then load its files. Read the handoff, then read each path under Relevant files — pull them into context now, so you're working from the actual code and not a summary of it. This is what makes resume better than a compaction summary: you get the real files back, not a lossy paraphrase.

    • Don't halt on a missing path. Renamed, moved, and deleted files are exactly the stale-plan case this workflow exists to survive. Collect any that no longer exist, and surface them in the restate ("these listed files are now missing: X, Y — the plan may be stale"). If a large fraction are gone, treat it as a signal to re-confirm the plan with the user before doing anything.
  3. Restate, briefly, so the user can confirm you loaded the right state:

    • The goal (one line).
    • The status from the doc (in-progress / blocked / ready-to-verify) — and flag it if it's blocked or ready-to-verify, since that changes what happens next.
    • What's done, and the immediate next step you're about to take.
  4. Stop. Do not start implementing yet. Wait for the user to confirm or redirect. The handoff captured a plan; the user may have changed their mind between sessions, and charging ahead on a stale plan is exactly the failure mode this workflow exists to avoid.

Notes

  • If the handoff references an open question or blocker under Gotchas, raise it now — it may be the first thing to resolve.
  • If several handoffs describe the same task across sessions, the highest-numbered one is authoritative, but skim the prior one or two for decisions that still apply.
  • Once the user confirms, proceed with the plan. When that chunk of work is done and context is filling up again, run the handoff skill again (/handoff, or /clear-not-compact:handoff when it's installed as a plugin) and repeat the loop.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most hr recruiting skills give in 857 tokens

Counted across 356 of the 357 authors here whose files we hold, read 2026-08-07

  • Quantify achievements with specific metricsin 14 of 356, across 6 files
  • Keep the resume under two pagesin 14 of 356, across 6 files
  • Request the full job description if not providedin 12 of 356, across 4 files
  • Extract keywords and prioritize job requirementsin 12 of 356, across 4 files
  • Stop and ask for clarification if required inputs are missingin 12 of 356, across 5 files
  • Map candidate experience to job requirementsin 11 of 356, across 3 files
  • Ask if the user wants adjustmentsin 11 of 356, across 3 files
  • Provide strengths and gap analysis after the resumein 10 of 356, across 2 files
  • Request candidate background details if not providedin 10 of 356, across 2 files
  • Format experience bullets as action verb plus resultin 10 of 356, across 2 files
  • Ask for missing inputs before startingin 10 of 356, across 9 files
  • Use exact job description terminologyin 9 of 356, across 1 file

Said here and by no other author read

  • read the handoff doc in full
  • load each path listed under relevant files
  • restate the goal, status, and next step briefly
  • use the git repo root as the base handoff folder
  • honor any specific handoff target the user provides
  • find the highest numbered handoff if none is specified

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.