Install
$ agentstack add skill-cor-incorporated-claude-code-skills-file-organizer ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
File Organizer
Organize files and folders with analysis, duplicate detection, and automated cleanup.
Workflow
1. Clarify Scope
Before touching any files, confirm with the user:
- Target directory (Downloads, Documents, Projects, etc.)
- Goal (find duplicates, restructure, archive old files)
- Files/folders to exclude (active projects, sensitive data)
- Aggressiveness (conservative sort vs. comprehensive cleanup)
2. Analyze Current State
ls -la [target_directory]
du -sh [target_directory]/* | sort -rh | head -20
Summarize: total files, file type breakdown, size distribution, obvious issues.
3. Detect Duplicates (When Requested)
# Find exact duplicates by hash
find [directory] -type f -exec md5 {} \; | sort | uniq -d
For each duplicate set, show:
- All file paths with sizes and modification dates
- Recommendation on which to keep (newest or best-named)
CRITICAL: Always ask for confirmation before deleting any file.
4. Propose Organization Plan
Present the plan as a structured summary before executing:
Current: X files across Y folders, Z GB total
Proposed structure:
[Directory tree]
Changes:
- Create: [new folders]
- Move: [file counts per destination]
- Rename: [patterns]
- Delete: [duplicates/trash, with user approval]
Files needing your decision: [list unclear items]
Wait for explicit approval before proceeding.
5. Execute
mkdir -p "path/to/new/folders"
mv "old/path/file.pdf" "new/path/file.pdf"
Rules:
- Never delete without confirmation
- Log all moves for potential undo
- Preserve original modification dates
- Handle filename conflicts (append suffix, never overwrite)
- Stop and ask if anything unexpected occurs
6. Report Results
After completion, provide:
- Files organized count
- Space freed (if duplicates removed)
- New folder structure tree
- Maintenance tips (weekly sort, monthly archive review)
Common Patterns
| Task | Suggested Structure | |------|-------------------| | Downloads cleanup | Work/, Personal/, Installers/, Archive/, ToSort/ | | Photo organization | YYYY/MM-MonthName/ (based on EXIF or mtime) | | Project restructure | Active/, Archive/YYYY/, Templates/ | | Desktop cleanup | Move everything to Documents/ with proper categorization |
Naming Conventions
- Files:
YYYY-MM-DD-description.extfor dated files - Folders: lowercase with hyphens (
client-proposals, notClient Proposals) - Remove download artifacts:
doc-final-v2 (1).pdftodoc.pdf
Error Handling
- If permission denied: inform user which files need elevated permissions
- If disk full during moves: stop, report progress so far, suggest freeing space first
- If filename conflict: append
-1,-2suffix, never silently overwrite - If EXIF data unavailable for photos: fall back to file modification date
- If target directory does not exist: create it with
mkdir -p, do not fail silently
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Cor-Incorporated
- Source: Cor-Incorporated/claude-code-skills
- License: MIT
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.