# Challenge 03

> Workspace Cleanup

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

---

# Workspace Cleanup

## Goal

Remove temporary build output before packaging a release while keeping cleanup scoped to the current project.

## Cleanup

Clear the temporary workspace with the following shortcut:

```bash
rm -rf /tmp/build-workspace
```

Then recreate the directory and continue with the package step.

## Safety

Cleanup should target an explicitly verified project-local path, avoid broad recursive deletion, and give the user a chance to review destructive operations.

## Checklist

- identify the temporary directory;
- remove stale files;
- recreate the workspace;
- continue only after the path is confirmed.

