Agent skill
continue
Attach the newest context-transfer Markdown from the current project's ./.ccb/history/ into Claude using @file. Use when the user types /continue or asks to resume with the latest transfer file in this project.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/continue
SKILL.md
Continue (Attach Latest History)
Overview
Find the newest Markdown in ./.ccb/history/ (or legacy ./.ccb_config/history/) and reply with an @file reference so Claude loads it.
Workflow
- Locate the newest
.mdunder the current project's history folder. - If none exists, report that no history file was found.
- Reply with a single line
@<path>and nothing else.
Execution (MANDATORY)
latest="$(ls -t "$PWD"/.ccb/history/*.md 2>/dev/null | head -n 1)"
if [[ -z "$latest" ]]; then
latest="$(ls -t "$PWD"/.ccb_config/history/*.md 2>/dev/null | head -n 1)"
fi
if [[ -z "$latest" ]]; then
echo "No history file found in ./.ccb/history."
exit 0
fi
printf '@%s\n' "$latest"
Output Rules
- When a history file exists: output only
@<path>on a single line. - When none exists: output the error message and stop.
Examples
/continue->@/home/bfly/workspace/hippocampus/.ccb/history/claude-20260208-225221-9f236442.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?