Skip to content
OpenSmartRoute
Skillv1.0.0

handoff

Compact the current conversation into a handoff document for another agent to pick up.

by LoopyLuci(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from LoopyLuci/Skills (skills/handoff/SKILL.md). Install upstream with npx skills add LoopyLuci/Skills --skill handoff. Copyright stays with the author.

Trigger: Use when you need to compact the current conversation into a handoff document so another agent or session can continue the work without losing context.

Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS - not the current workspace.

Include a "suggested skills" section in the document, which suggests skills that the agent should invoke.

Do not duplicate content already captured in other artifacts (specs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.

Redact any sensitive information, such as API keys, passwords, or personally identifiable information.

If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.

Pitfalls

  • Over-sharing context: include only what the next session needs, not the entire transcript.
  • Ambiguous next steps: be specific about what the next agent should do first.
  • Missing dependency context: if you installed tools or set env vars, include the commands.

Verification

  • Can another agent pick up the handoff and start working within 2 turns?
  • Are all file paths absolute or relative-to-project-root?
  • Does the handoff document fit in a single screen?

Procedure

  1. Scan the conversation history and extract: current goal, completed work, decisions made, open questions, and next steps.
  2. Identify key files and directories modified — include their paths and a summary of changes.
  3. Identify unresolved issues, blockers, and partial work.
  4. Write the handoff document to a file using a structured format: ## Goal, ## Progress, ## Decisions, ## Next Steps, ## Open Questions, ## Files Touched.
  5. Optionally include exact commands, API keys to re-export, or environment state needed to resume.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/loopyluci-skills-handoff/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

loopyluci-skills-handoff.ocm.jsonjson
{
  "ocm": "1",
  "id": "loopyluci-skills-handoff",
  "kind": "skill",
  "name": "handoff",
  "description": "Compact the current conversation into a handoff document for another agent to pick up.",
  "publisher": "LoopyLuci",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "productivity",
      "agent-workflow",
      "handoff",
      "collaboration",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Compact the current conversation into a handoff document for another agent to pick up."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/LoopyLuci/Skills",
      "path": "skills/handoff/SKILL.md",
      "ref": "6f9faf8a3a216cddd3eda96a6c6b93c00710fa5b",
      "url": "https://github.com/LoopyLuci/Skills/blob/6f9faf8a3a216cddd3eda96a6c6b93c00710fa5b/skills/handoff/SKILL.md",
      "key": "LoopyLuci/Skills/skills/handoff/SKILL.md"
    }
  },
  "instructions": "**Trigger**: Use when you need to compact the current conversation into a handoff document so another agent or session can continue the work without losing context.\n\nWrite a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS - not the current workspace.\n\nInclude a \"suggested skills\" section in the document, which suggests skills that the agent should invoke.\n\nDo not duplicate content already captured in other artifacts (specs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.\n",
  "cost": {
    "context_tokens": 467
  }
}

Fetch it by URL: GET /api/v1/registry/loopyluci-skills-handoff/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.