Install
openclaw skills install agent-workspace-hygieneUse this skill only when the user explicitly asks for a dry-run cleanup inventory, disk-space cleanup, deletion review, or recoverable archiving of generated workspace artifacts in a coding repo, such as caches, logs, test reports, screenshots, temporary databases, eval outputs, build outputs, or agent scratch files. Do not trigger just because the user says a repo is messy, asks for code review, asks for git status, wants README/docs cleaned up, requests memory cleanup, or asks for ordinary coding/testing/refactoring. If cleanup or archive/removal of workspace artifacts is not the main request, do not use this skill.
openclaw skills install agent-workspace-hygieneKeep this skill quiet, cheap, and user-friendly. It is for cleaning the workspace around the project, not rewriting the project.
Stay silent unless cleanup is explicit. Do not interrupt normal development just because a few files exist. Mention cleanup only when the user directly asks to inventory, remove, or archive workspace artifacts, or asks to reduce disk usage from generated files.
Find the workspace root. Prefer the current repo root. Do not scan the user's home directory or sibling projects unless the user names them.
Take a cheap inventory first. If Python is available, run the read-only helper:
python <skill-dir>/scripts/workspace_inventory.py --root . --summary-json --max-entries 40 --recent-hours 24
Use python3 if that is the local convention. If Python is unavailable, inspect manually with the same categories below.
If no intervention is needed, say so briefly. Do not produce a long report.
If cleanup is useful, show a compact plan. Group findings into:
Ask before changing files. Default to a dry run. Before deletion or archiving, show the exact paths and actions.
Prefer recoverable archive over delete. Move approved files to .codex-cleanup/archive/<timestamp>/ and write a manifest with original path, size, modified time, and action. Permanent deletion should require explicit user wording.
Verify after cleanup. Re-check git status or file inventory. Report only the meaningful result.
If the user wants recurring project-specific cleanup rules, suggest a small .workspace-hygiene.yml with keep/skip patterns. Do not create config files unless asked.
Safe cleanup candidates are usually untracked or ignored generated artifacts:
__pycache__, .pytest_cache, .mypy_cache, .ruff_cache, .parcel-cache, .turbo, .next/cache, node_modules/.cachedist, build, coverage, htmlcov, test-results, playwright-report*.tmp, *.bak, *.orig, *.rej, *.pyc, .coverage, log files in obvious log/output foldersNeeds review:
data/Protected or skipped:
.git.codex/skills and installed skill files.env, private keys, token files, credential stores, and secret-looking filesUse a short report by default:
Workspace cleanup plan
Root: <path>
Safe candidates: <count>, <size>
Needs review: <count>, <size>
Skipped/protected: <count>
Recommended action:
- Archive safe candidates to .codex-cleanup/archive/<timestamp>/
- Review these paths before touching them: ...
If the user wants action, ask for one concise confirmation unless they already gave explicit approval for the exact paths and action.