An AI agent workflow optimizer designed to safely ingest, validate, and continue development execution from previous session handoffs without losing context.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install handoff-receiver
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install handoff-receiver using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The handoff-receiver skill is a specialized execution protocol designed for AI agents to resume development tasks from a previous session or other developer agents seamlessly. Part of the Openclaw Skills suite, this tool ensures that agents don't wander off-scope or re-architect existing solutions when picking up ongoing work. It accomplishes this by reading localized handoff indexes and active pointers, validating the agent's current workspace against the historical log, and establishing a clear, single source of truth.
By utilizing this skill within the Openclaw Skills framework, developers can prevent common multi-agent friction points such as redundant execution, state drift, and ignored constraints. It acts as a bridge between separate agent execution runs, preserving crucial context files, execution history, and next-step priorities.
.trellis/handoffs/CURRENT, docs/handoffs/CURRENT, or the root directory.INDEX.md file to evaluate the status of current and parallel streams, identifying any potential conflicts, orphans, or active tasks.Next Steps block.Ensure that your local repository has standard Git tracking enabled and contains a directory or pointer file structure for handoffs (such as .trellis/handoffs/).
To use the handoff-receiver as part of your Openclaw Skills workflow, configure your agent with access to basic system commands (Bash, Read, Write, Glob, Grep).
You can initiate a takeover by prompting your agent with any of the supported trigger phrases:
# Examples of natural trigger prompts for the agent:
"take over this handoff"
"continue from handoff"
"resume from handoff"
"pick this up from previous session"
The system will automatically scan:
# Path resolution logic executed by the skill:
if [ -f ".trellis/handoffs/CURRENT" ]; then
cat .trellis/handoffs/CURRENT
echo ".trellis/handoffs/INDEX.md"
elif [ -f "docs/handoffs/CURRENT" ]; then
cat docs/handoffs/CURRENT
echo "docs/handoffs/INDEX.md"
elif [ -f "CURRENT" ]; then
cat CURRENT
echo "INDEX.md"
else
[ -f handoff.md ] && echo "handoff.md"
fi
The handoff-receiver expects and writes to structured metadata files to preserve context across Openclaw Skills execution sessions.
.trellis/handoffs/ or docs/handoffs/: The home for all handoff-related tracking.CURRENT: A plain text file containing the relative path to the active markdown handoff file.INDEX.md: A markdown database tracking all active, orphaned, paused, or completed handoffs.| Status State | Meaning & Action |
|---|---|
in_progress |
Active stream that matches the CURRENT pointer. Proceed with execution. |
paused |
Parallel work stream. Surfaced in terminal output but not executed. |
done / superseded |
Archived or completed stream. Safely ignored by the receiver. |
orphan |
Unmapped handoff file. Requires a prompt to classify prior to proceeding. |
Loading
An advanced prompt engineering skill that generates production-grade, highly controlled prompts for Midjourney and other major image models.

An automated skill to deploy Stalwart Mail Server on Dokploy with a Resend SMTP relay fallback for blocked port 25 environments.

A CLI proxy skill designed to compress verbose terminal, build, and git outputs to minimize LLM token usage during agent executions.

An automated workflow optimization skill designed to refactor bloated AGENTS.md and CLAUDE.md files into streamlined, high-performance instruction trees using progressive disclosure.

A specialized API integration designed to fetch Google Scholar citation data and export links directly into your workflows.

A dedicated search skill for querying Google Patents and extracting structured search engine results page (SERP) data for patent discovery and portfolio monitoring.








































