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.

1,995 stars

Best use case

continue is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

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.

Teams using continue should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/continue/SKILL.md --create-dirs "https://raw.githubusercontent.com/bfly123/claude_code_bridge/main/claude_skills/continue/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/continue/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How continue Compares

Feature / AgentcontinueStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

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.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# 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

1. Locate the newest `.md` under the current project's history folder.
2. If none exists, report that no history file was found.
3. Reply with a single line `@<path>` and nothing else.

## Execution (MANDATORY)

```bash
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

ping

1995
from bfly123/claude_code_bridge

Test connectivity with AI provider (gemini/codex/opencode/droid/claude).

tr

1995
from bfly123/claude_code_bridge

Execute current step in AutoFlow workflow. Use when running /tr or continuing task execution.

tp

1995
from bfly123/claude_code_bridge

Create a task plan with collaborative design. Use when starting a new task or running /tp.

review

1995
from bfly123/claude_code_bridge

Dual review with Claude and Codex for quality verification. Use for step or task review.

pend

1995
from bfly123/claude_code_bridge

View latest reply from AI provider (gemini/codex/opencode/droid/claude).

mounted

1995
from bfly123/claude_code_bridge

Report which CCB providers are mounted (session exists AND daemon is online). Outputs JSON.

file-op

1995
from bfly123/claude_code_bridge

Delegate file I/O to Codex via FileOpsREQ protocol. Use when Claude needs Codex to modify files.

cping

1995
from bfly123/claude_code_bridge

Test connectivity with AI provider (gemini/codex/opencode/droid/claude).

autonew

1995
from bfly123/claude_code_bridge

Send /new to a provider's pane to start a new session without context injection.

ask

1995
from bfly123/claude_code_bridge

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.

all-plan

1995
from bfly123/claude_code_bridge

Collaborative planning using abstract roles (designer + inspiration + reviewer).

compose-multiplatform-patterns

144923
from affaan-m/everything-claude-code

KMP项目中的Compose Multiplatform和Jetpack Compose模式——状态管理、导航、主题化、性能优化和平台特定UI。