From tac
Reloads prior session context from JSONL bundles: analyzes ops, deduplicates reads, loads files optimally, summarizes work, and reports for continuation.
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
Reload previous session context from a context bundle file.
Presents menu-driven interface to scan, select, and resume saved sessions from CONTEXT files. Extracts headers, summaries next tasks, hot files; supports active/archived.
Reads CONTINUE_HERE.md at session start to resume prior work: detects file, parses Objective/Completed/In Progress/Next Steps/Context, assesses freshness via timestamp/branch/git commits, confirms plan, cleans up.
Restores context from previous sessions by reading transcripts directly—no LLM calls or token costs. Cheaper, faster than /compact. Use to resume work or pick up where left off.
Share bugs, ideas, or general feedback.
Reload previous session context from a context bundle file.
$1: Path to the context bundle JSONL fileYou are reloading context from a previous agent session to continue work.
Read the JSONL bundle file at the path specified in $1.
Each line is a JSON object with one of these formats:
{"operation": "read", "file_path": "path/to/file", "limit": 100, "offset": 0}
{"operation": "write", "file_path": "path/to/file", "content_length": 500}
{"operation": "prompt", "prompt": "truncated user prompt..."}
Extract and analyze:
For each unique file, determine optimal read parameters:
Deduplication Rules:
Read each unique file ONLY ONCE with optimal parameters:
For each file in deduplicated list:
- Read with determined parameters
- Note what was loaded
Based on user prompts and file operations, construct understanding of:
Report context restoration:
## Context Bundle Loaded
**Bundle:** [filename]
**Session:** [session_id if available]
### Previous Work Summary
Based on prompts and file operations, the previous agent was:
[Summary of work done]
### Files Restored
| File | Access Count | Loaded |
| --- | --- | --- |
| file1.ts | 5 | Full |
| file2.md | 2 | Full |
| file3.py | 1 | Partial (lines 1-100) |
### Context Restored
- **Files loaded:** [count]
- **Estimated tokens:** [estimate]
- **Work continuity:** [assessment]
### Ready to Continue
[What you're now prepared to do based on restored context]
### Gaps Identified
[Any context that couldn't be restored or may be stale]