Help us improve
Share bugs, ideas, or general feedback.
From dstoic
Resumes Claude Code sessions by loading CONTEXT-*.md files from project root or done/ folder, with optional full resource expansion and resume report generation. Use for continuing previous work.
npx claudepluginhub digital-stoic-org/agent-skills --plugin dstoicHow this skill is triggered — by the user, by Claude, or both
Slash command
/dstoic:load-contexthaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load session state from `CONTEXT-{stream}-llm.md` and optionally expand full resources.
Presents menu-driven interface to scan, select, and resume saved sessions from CONTEXT files. Extracts headers, summaries next tasks, hot files; supports active/archived.
Resumes saved Claude Code sessions from docs/context-sessions/. Lists pending tasks, loads selected session, tracks progress per completion, deletes file when done.
Reads a CONTINUE_HERE.md continuation file at session start and resumes from where a prior session left off, detecting freshness, parsing structured handoff, and cleaning up after consumption.
Share bugs, ideas, or general feedback.
Load session state from CONTEXT-{stream}-llm.md and optionally expand full resources.
Speed: < 3 seconds (default), 5-8 seconds (--full)
CRITICAL: After EVERY AskUserQuestion call, check if answers are empty/blank. Known Claude Code bug: outside Plan Mode, AskUserQuestion silently returns empty answers without showing UI.
If answers are empty: DO NOT proceed with assumptions. Instead:
rtk for ALL shell commandsBash: rtk ls -t CONTEXT-*llm.md done/CONTEXT-*llm.md 2>/dev/null || true
Read: CONTEXT-{stream}-llm.md (if stream known from $ARGUMENTS)
If not found in project root, check done/ subfolder. If found there, note 📦 (from done/) in report.
If multiple streams and no selection → AskUserQuestion with options (mark done/ files with 📦).
Filename: "default" → CONTEXT-llm.md, "{name}" → CONTEXT-{name}-llm.md
Parallel Read: OpenSpec project/proposal/tasks.md, top 3 hot files, manifest.yaml. DO NOT restore tasks — informational only.
Thinking Artifacts (if ## Thinking Artifacts section exists in CONTEXT file):
--full mode: Read referenced $THINKING_DIR artifacts and include brief summaries in report$THINKING_DIR is unset: display paths as-is, note ⚠️ $THINKING_DIR not setParse key-value header + markdown sections → human-friendly report.
See reference.md for section mapping, report structure, error messages, and formatting rules.