Install
$ agentstack add skill-dhruv-anand-aintech-continue-later-skill-continue-later ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
About
Continue Later
Generate and manage project continuation documentation for seamless handoffs, team transitions, and knowledge preservation across coding sessions.
Overview
When the user asks to hand off work, save state, or create a continuation, generate a comprehensive continuation.md following this structure.
Use this skill when the user says:
- "Hand this off" / "Continue later" / "Save project state"
- "Create a continuation for the team"
- "Document where we left off"
- "I'm done for the day, create handoff docs"
For summarizing handoff files, use resume-from-earlier (/resume-from-earlier) or resume-continuation (natural phrasing); both read continuation.md and/or continuation-fast.md—prefer structured continuation.md when both exist. For a raw git-focused dump, use continue-later-fast (writes continuation-fast.md).
Continuation.md Structure
When generating a continuation, create a file with these sections. Be specific—use actual project context, not placeholders.
# Continuation: [Project Name]
**Date:** YYYY-MM-DD
**Working directory:** [absolute path]
---
## What This Project Is
[2-3 sentences. What does it do, for whom, and why it matters.]
## Tech Stack
[Bullet list: language, frameworks, databases, key libraries]
## How to Build & Run
[Exact commands. Nothing assumed.]
## Key Files
| File | Purpose |
|------|---------|
| path/to/file | What it does |
## What Was Just Done (Most Recent Session)
[Chronological summary of changes. Be specific: what was changed, why, what bug it fixed. Include the actual fix—not just "fixed bug X".]
## Current State
**Working:**
- [List what demonstrably works]
**Broken / Known Issues:**
- [List known bugs with root cause if known]
**In Progress:**
- [Anything half-done or partially implemented]
## Pending Tasks
[Ordered list of what the user still wants done, in priority order. Copy verbatim from the user's most recent requests if possible.]
## Key Technical Decisions
[Decisions made during the session that a new agent must not undo or re-litigate. Include the *why*.]
## Gotchas & Traps
[Anything that caused problems, wasted time, or was non-obvious. Future agent must know these. Format:]
**Title**
Description of what went wrong.
**Solution:** How to fix it.
**Lesson:** What we learned.
## How to Deploy
[Exact commands to build, package, and deploy.]
Rules for Generating Continuations
- Archive existing handoffs before writing. If
continuation.mdand/orcontinuation-fast.mdexist in the project root, move each tocontinuation.archive.YYYYMMDD_HHMMSS.md/continuation-fast.archive.YYYYMMDD_HHMMSS.md(same pattern ascontinue-later-fastandclaude-code/hooks/continue-later-dump.sh), then write the newcontinuation.md. - Be specific, not vague. "Fixed the regex to match AM/PM filenames" beats "fixed the filename bug".
- State the exact current state. If the DB has 0 rows, say so. Don't paper over partial states.
- Pending tasks verbatim. Copy the user's unmet requests word-for-word—don't paraphrase.
- Gotchas are mandatory. Every trap that cost time goes in Gotchas. This is the highest-value section.
- Include exact commands. The next agent should copy-paste build, run, test, and deploy commands.
- Write to project root as
continuation.md, so it's immediately visible.
Anti-Patterns to Avoid
- ❌ Vague state: "mostly working" → ✅ "11 rows in DB, gallery shows 0 due to pending refreshGallery fix"
- ❌ Omitting install steps → ✅ Include exact commands
- ❌ Summarising pending tasks → ✅ Quote user requests directly
- ❌ Skipping gotchas → These are the most valuable lines
Example Gotcha Format
**Mac Screenshots Use 12-Hour Format**
The original regex only matched 24-hour filenames. Zero screenshots were indexed until fixed.
**Solution:** Updated regex to match `Screenshot 2024-10-30 at 11.07.04 AM.png`
**Lesson:** Test with real production data formats early.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: dhruv-anand-aintech
- Source: dhruv-anand-aintech/continue-later-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.