Install
$ agentstack add skill-theseus-run-theseus-cleanup-audit ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Cleanup Audit
Use this skill as a finishing pass after substantial work. This is a cleanup and review pass, not a refactor pass.
Goal
Leave the repo without obvious agent leftovers:
- empty stubs
- unused imports
- stale comments
- accidental re-export wrappers
- old names in nearby docs or tests
- duplicate files created during moves
- scratch artifacts
- broad import artifacts introduced to avoid updating call sites
Core Rule
Delete only when the artifact is proven unused, non-public, and non-behavioral.
If removal might change imports, package exports, runtime behavior, persisted data handling, public contracts, or downstream compatibility, stop and report it as a concern instead of deleting it.
Not A Refactor
Do not use this skill to redesign code or remove live compatibility paths without confirmation.
- Cleanup removes confirmed trash.
- Refactoring changes structure or behavior.
- Compatibility removal is a breaking change unless the user explicitly authorized it.
When cleanup collides with compatibility, preserve behavior and report the stale path.
Workflow
- Inspect
git diff --statand changed files to understand the work surface. - Search old names, moved paths, and temporary terms with
rg. - Check for empty files, stub files, and single-line re-export wrappers.
- Check barrels and package exports for accidental old/new duplication.
- Check imports for old paths, broad namespace artifacts, and unused leftovers.
- Check tests, docs, and comments for stale names introduced by the change.
- Remove only confirmed non-behavioral leftovers.
- Report concerns separately from removed cleanup.
Safe Cleanup Targets
Usually safe when verified unused:
- empty files that are not imported or exported
- unused imports
- scratch files produced by local experiments
- comments created by the current change that describe obsolete temporary state
- duplicate local helpers with no callers
- test fixture files with no imports and no package export path
- docs or comments that mention an old name where the new name is unambiguous
Red Flags
Do not delete without confirmation:
- exported symbols
- package
exports - public barrels
- compatibility aliases or shims
- migration or fallback code
- persisted-data readers
- server, RPC, protocol, or serialized contract fields
- docs archive or design history
- files still imported anywhere
- behavior branches with active tests
- wrappers that may be used by downstream consumers
Search Prompts
Use searches shaped by the actual change:
- old file stem, new file stem
- old exported names, new exported names
legacy,compat,deprecated,alias,old,v1,temporary,for now,TODO- removed path fragments
- package export paths and barrel names
Report Format
In the final report:
Removed: confirmed non-behavioral leftovers.Concerns: possible stale paths that need confirmation before removal.Verification: searches and checks run.
If nothing was removed, say so clearly and list any concerns found.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: theseus-run
- Source: theseus-run/theseus
- License: MIT
- Homepage: https://www.theseus.run
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.