Install
openclaw skills install @dwzhjt/file-organize-testOrganize messy folders by moving files into subfolders grouped by extension, date, or category. Use for downloads cleanups and batch file sorting.
openclaw skills install @dwzhjt/file-organize-testUse when the main artifact is an organized folder, for example:
{baseDir}/scripts/organize.py with --dry-run first and show the plan to the user.--dry-run after the user confirms the plan.--by type (default): images, documents, videos, audio, archives, other — based on file extension.--by ext: one subfolder per extension (for example pdf/, jpg/).--by date: one subfolder per YYYY-MM based on last-modified time.--recursive to include nested files; without it only the top level is processed.# Preview only (always do this first)
python {baseDir}/scripts/organize.py "C:\path\to\folder" --by type --dry-run
# Execute after user confirmation
python {baseDir}/scripts/organize.py "C:\path\to\folder" --by type
Print one line per planned or executed move plus a summary line at the end. Always report the summary back to the user, and never claim success unless every listed move completed.