# Work Complete

> Work completion handler. Archives the plan file. Example: /work-complete

- Skill: `hiroro-work/work-complete` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hiroro-work/work-complete`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hiroro-work/work-complete/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: hiroro-work (https://skillmd.com/u/hiroro-work)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/hiroro-work/work-complete

---


# Work Completion Handler

Performs cleanup at the end of a work session.

## Usage

```text
/work-complete
```

## Procedure

### 1. Archive the plan file

Move **only the plan file used in the current session** to `.claude/plans/archive/`.

- The file specified when plan mode started (e.g. `.claude/plans/lazy-riding-willow.md`)
- Do not move plan files belonging to other sessions (parallel runs may exist)
- Skip if the plan file does not exist
- The archived file remains available for reference if follow-up work is needed

```bash
# Create the archive directory if it doesn't exist
mkdir -p .claude/plans/archive

# Move the current session's plan file into the archive
mv .claude/plans/<current-session-plan-file>.md .claude/plans/archive/
```

### 2. Report completion

Report the result of the cleanup.

