context-bridge
Resume multi-session projects with full context retention. Use when returning to previous work, needing conversation history, recalling past decisions, or bridging context across days/weeks. Solves agent memory loss between sessions.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/hykhor0601/context-bridgeContext Bridge
Never lose project context again. Context Bridge creates persistent memory across agent sessions, letting you resume complex projects days or weeks later with full context of conversations, decisions, and progress.
When to Use
- Resuming work on a multi-day project
- Recalling what was decided in previous sessions
- Finding past conversation threads about a topic
- Bridging context after time away from a project
- Building institutional memory of your work
- Preventing repeated explanations to your agent
- Tracking decision history and reasoning
- Creating project narratives over time
The Problem This Solves
Agents forget between sessions. Every /new command wipes the slate clean. You waste time re-explaining context, re-sharing decisions, and re-establishing what you were working on.
Context Bridge remembers for you. It saves conversation threads, decisions, file changes, and reasoning - then reconstructs full context when you return.
Quick Start
Save Current Session Context
# Save context with a project name
echo "Save this session as: api-redesign" | openclaw agent
# Or save with description
echo "Save context: api-redesign - Switched from REST to GraphQL" | openclaw agent
Resume a Previous Session
# Resume specific project
echo "Resume context: api-redesign" | openclaw agent
# List available contexts
echo "List saved contexts" | openclaw agent
# Search contexts by keyword
echo "Find contexts about authentication" | openclaw agent
Core Commands
Save Context
# Save current session
echo "save context as project-name" | openclaw agent
# Save with description
echo "save context as project-name: brief description" | openclaw agent
# Auto-save on /new (if context-bridge hook enabled)
/new # Automatically prompts to save current context
Resume Context
# Resume by project name
echo "resume context: project-name" | openclaw agent
# Resume latest session
echo "resume last context" | openclaw agent
# Resume with date
echo "resume context from yesterday" | openclaw agent
Query Contexts
# List all saved contexts
echo "list contexts" | openclaw agent
# Search by keyword
echo "find contexts about database migration" | openclaw agent
# Show context summary
echo "summarize context: project-name" | openclaw agent
# Show decision history
echo "what decisions were made in: project-name" | openclaw agent
What Gets Saved
Context Bridge captures comprehensive session data:
1. Conversation Thread
- Full message history (user + agent)
- Timestamp of each exchange
- Command sequences
2. Decisions Made
- Extracted decision points: "We decided to use X because Y"
- Reasoning and alternatives considered
- Trade-offs discussed
3. File Changes
- Files created, modified, deleted
- Diffs of code changes
- File paths and descriptions
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-hykhor0601-context-bridge": {
"enabled": true,
"auto_update": true
}
}
}