Back to skills
SkillHub ClubShip Full StackFull Stack

handover-archival

Use when finishing a handover document or searching for past work context - marks handovers complete and knows where archived handovers live

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
1
Hot score
77
Updated
March 20, 2026
Overall rating
C2.6
Composite score
2.6
Best-practice grade
A92.0

Install command

npx @skill-hub/cli install mharbulous-syncopaid-handover-archival

Repository

Mharbulous/SyncoPaid

Skill path: .claude/skills/handover-archival

Use when finishing a handover document or searching for past work context - marks handovers complete and knows where archived handovers live

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: Mharbulous.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install handover-archival into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/Mharbulous/SyncoPaid before adding handover-archival to shared team environments
  • Use handover-archival for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: handover-archival
description: Use when finishing a handover document or searching for past work context - marks handovers complete and knows where archived handovers live
---

# Handover Archival

## Overview

Handovers are **permanent historical artifacts**, not temporary files. When work completes, mark the status and let CI archive it.

## When Work is Complete

Add this marker near the top of the handover (within first 20 lines):

```markdown
## Status: Complete
```

**Do NOT:**
- Delete handover documents (history is valuable)
- Manually move files (CI script handles this)

## Finding Past Context

| Location | Contents |
|----------|----------|
| `ai_docs/Handovers/` | Active, in-progress handovers |
| `ai_docs/Handovers/Completed/` | **68+ archived handovers** - search here for past work |

## Archival Script

```bash
# Dry run - see what would be archived
python scripts/archive_completed_handovers.py

# Actually move completed handovers
python scripts/archive_completed_handovers.py --apply
```

The script scans for `## Status: Complete` (case-insensitive) and uses `git mv` to archive.
handover-archival | SkillHub