Handoff
Compact the current conversation into a handoff document for another agent to pick up.
Before & after
Same prompt, same agent — the only difference is the skill.
I can help you summarize the conversation and pass it along to another agent. I'd compile the key decisions, what's been done so far, what's still pending, and anything important they need to know. I could also list any files or documents that are relevant. The handoff document would be structured to make it easy for the next agent to jump in. Do you want me to start drafting a summary, or do you have specific context that's most important to pass along?
HANDOFF DOCUMENT FROM: Claude (Design & Implementation Phase) TO: Claude (Deployment & QA Phase) DATE: 2026-07-31 PROJECT: Event Automation Feature (TikTok Integration) COMPLETED: ✓ Architecture design (ADR-042: Event Streaming via Webhook; /path/to/adr-042.md) ✓ Database schema for event_webhooks table (/prisma/schema.prisma; lines 412-428) ✓ TikTok OAuth flow implemented (/app/api/auth/tiktok/callback.ts) ✓ Webhook signature verification function (/lib/webhook-verify.ts) ✓ Unit tests (42 test cases, 94% coverage; /app/__tests__/webhook.test.ts) PENDING (Assigned to Next Agent): • Integration test: Simulate TikTok webhook payload; verify event_webhooks table populates correctly • Staging deployment: Deploy to staging.agentvolt.app; verify OAuth redirect URLs work • E2E test: Complete flow (user connects TikTok → webhook fires → event stored → user sees event in UI) • Performance test: Load test with 1K webhook events/min; ensure latency stays under 200ms • Security audit: Request penetration test on webhook endpoint before production CRITICAL DECISION LOG: • Chose HTTP 202 (async acceptance) over 200 for webhook responses → allows fault tolerance • Event deduplication key: tiktok_event_id + timestamp (prevents duplicate processing) • Webhook retry policy: 3 exponential backoffs, max 1 hour between attempts KNOWN ISSUES: • TikTok sandbox environment is unstable (50% webhook delivery rate). Workaround: Use production credentials for testing (secure tunnel via ngrok). • Event_webhooks table growth: ~8GB per month at current scale. Add retention policy (archive events >90 days old) before production. NEXT AGENT CONTEXT: • Your focus: Deployment readiness. Block if any integration test fails. • Time estimate: 6 days (integration + E2E testing + perf validation) • Escalation: If load test fails, don't reimplement. Ping the original implementer. • Success criteria: All integration tests pass. E2E test completes in under 300ms. Security audit has zero critical findings. ARTIFACT REFERENCES (by path, not duplicated): • /app/api/webhooks/tiktok/route.ts (webhook handler) • /prisma/schema.prisma (data model) • /app/__tests__/webhook.test.ts (test suite) • /docs/ADR-042-event-streaming.md (architecture rationale) HANDOFF COMPLETE. Next agent has all context to proceed without backfill.
About this skill
name: handoff description: Use when Compact the current conversation into a handoff document for another agent to pick up.
Handoff
Compact the current conversation into a handoff document for another agent to pick up. References existing artifacts (PRDs, plans, ADRs, issues, commits, diffs) by path or URL instead of duplicating them. Use when user wants to hand off the conversation to a fresh agent or starts a new session that picks up prior work.
What you get
- Public GitHub repo (alirezarezvani/claude-skills)
- the handoff skill folder with SKILL.md. Part of a 337-skill / 30-agent / 70-command install.
Customize your output
- Fork the repo and adapt the skill's instructions and references to your workflow.
Example output
Activates automatically when your request matches Handoff; chains with the other skills, agents, and commands in the collection.
Best for
Creators, builders, and teams using Claude Code.
SKILL.md preview
---
name: handoff
description: Use this skill to compact the current conversation into a handoff document that a fresh agent can pick up.
version: 1.0.0
category: Development / Engineering
author: AgentVolt
license: proprietary
tags:
- development
- engineering
---
# Handoff
Compacts the current conversation into a handoff document a fresh agent can pick up cold, referencing existing artifacts by path or URL instead of duplicating them.
## When to use
… (sign up to view the full skill)More development skills
View all Development skills →Generate
Scaffold code, tests, and boilerplate from a short spec.
Performance Profiler
Systematic performance profiling for Node.js, Python, and Go applications.
Threat Detection
Use when hunting for threats in an environment, analyzing IOCs, or detecting behavioral anomalies in telemetry.
Agent Harness
Turns a domain folder of skills into a bounded agentic loop: compile a goal into a task plan, execute with the domain's tools, verify every task, retry within a budget.