continue
Installation
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
Related skills
More from bfly123/claude_code_bridge
all-plan
Collaborative planning using abstract roles (designer + inspiration + reviewer).
20cping
Test connectivity with AI provider (gemini/codex/opencode/droid/claude).
8review
Dual review with Claude and Codex for quality verification. Use for step or task review.
8tr
Execute current step in AutoFlow workflow. Use when running /tr or continuing task execution.
8ask
Async via ask, end turn immediately; use when user explicitly delegates to any AI provider (gemini/codex/opencode/droid); NOT for questions about the providers themselves.
7