continue-later-fast

continue-later-fast is a skill for Claude Code, Codex from dhruv-anand-aintech/continue-later-skill. It costs 57 tokens per session (664 once invoked), scanned C, original, MIT.

A command-line tool that creates continuation-fast.md, a quick project handoff containing Git status information, recent commits and changes, and optionally recent agent messages. It is run from a Git repository's root folder.

In plain words
What is it for?
Use it to save a fast handoff, choose a particular agent transcript, skip transcript collection, or archive an earlier continuation file before writing a new snapshot.
Why use it?
It captures a lightweight snapshot of unfinished work quickly, so another session can see the repository state without a manually written summary.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to save a fast handoff, choose a particular agent transcript, skip transcript collection, or archive an earlier continuation file before writing a new snapshot.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dhruv-anand-aintech/continue-later-skill --skill continue-later-fast
Clone the repo
git clone --depth 1 https://github.com/dhruv-anand-aintech/continue-later-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for continue-later-fast

README.md
[![agentmods](https://agentmods.dev/badge/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast/github.svg)](https://agentmods.dev/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast)
Your own site
<a href="https://agentmods.dev/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast"><img src="https://agentmods.dev/badge/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for continue-later-fast

Your own site · 80×15
<a href="https://agentmods.dev/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast"><img src="https://agentmods.dev/badge/skills/dhruv-anand-aintech/continue-later-skill/continue-later-fast.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 664 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.00664
Opus 5 $0.00028 $0.00332
Sonnet 5 $0.00011 $0.00133
Haiku 4.5 $0.00006 $0.00066

Measured 9d ago against content hash ff09bc1017fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

continue-later-fast scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

After **`curl … | bash install`** (see repo README), the CLI bundle lives in **`${XDG_CONFIG_HOME:-~/.config}/continue-later/`** and a **`continue-later-fast`** symlink is added under **`${CONTINUE_LATER_BIN_DIR:-~/.loca

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

After **`curl … | bash install`** (see repo README), the CLI bundle lives in **`${XDG_CONFIG_HOME:-~/.config}/continue-later/`** and a **`continue-later-fast`** symlink is added under **`${CONTINUE_LATER_BIN_DIR:-~/.loca
skills/continue-later-fast/SKILL.md · 47 lines

How it starts

The opening of the file, as written. The whole thing — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Continue Later Fast

Do this

After curl … | bash install (see repo README), the CLI bundle lives in ${XDG_CONFIG_HOME:-~/.config}/continue-later/ and a continue-later-fast symlink is added under ${CONTINUE_LATER_BIN_DIR:-~/.local/bin} (ensure that directory is on PATH). From any directory, cd to the git repository root of the project being handed off, then run:

continue-later-fast -n 12

Equivalent paths (no PATH needed):

"${XDG_CONFIG_HOME:-$HOME/.config}/continue-later/continue-later-fast.sh" -n 12

That script archives prior continuation.md / continuation-fast.md, writes continuation-fast.md, and appends recent user messages (newest local *.jsonl by mtime by default).

Developing in a clone of this repo you can run ./scripts/continue-later-fast.sh instead (same behavior; helpers must stay beside the wrapper).

Do not hand-roll inline git log / status / diff into continuation.md when the installed script exists.

Optional

Flag / env Purpose
--agent <id> / CONTINUE_LATER_AGENT Pin a specific session JSONL
--skip-transcript / CONTINUE_LATER_SKIP_TRANSCRIPT=1 Git snapshot only
--from-cwd / CONTINUE_LATER_FROM_CWD=1 Prefer Claude transcript mentioning $PWD; else newest mtime
-n / CONTINUE_LATER_LIMIT Max prompts (default 12)
CONTINUE_LATER_CLI_DIR / CONTINUE_LATER_BIN_DIR Installer overrides for custom install locations

Claude Code: If === CONTINUATION CONTEXT DUMP … === is already injected by the hook, you may still run continue-later-fast once to persist continuation-fast.md on disk.

Cursor: After install.sh, a beforeSubmitPrompt hook runs continue-later-fast on the same continuation-style phrases so continuation-fast.md is updated when you send the message (no prompt injection—disk only). Opt out of hook install with CONTINUE_LATER_CURSOR_HOOK=0.

Read the full file on GitHub · 47 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 47 lines · 57 tokens per session scan C ff09bc1017fd

Subscribe to this mod's changes

continue-later-fast is a skill published in the GitHub repository dhruv-anand-aintech/continue-later-skill (3 stars, last pushed 3mo ago), licensed MIT. It adds 57 tokens to every session and 664 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

chinese-commit-conventions

A Chinese-language guide to Conventional Commits, a format for writing consistent Git commit messages, plus related changelog, commit-checking, and commit-helper configuration.

jnMetaCode/superpowers-zh · 65 tokens

managing-git

Manages Git workflows including branching, commits, and pull requests. Use when working with Git, creating commits, opening PRs, managing branches, resolving conflicts, or when asked about version control best practices.

CloudAI-X/claude-workflow-v2 · 46 tokens

devops/changelog-generation

A method for creating a CHANGELOG, a document that records what changed in each software release. It reads Git commit history and release-pipeline reports, then groups changes using common commit and changelog conventions.

echoVic/boss-skill · 36 tokens