ワンクリックで
organize
Intelligently organizes files in directories based on content type, date, and purpose with safe automation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Intelligently organizes files in directories based on content type, date, and purpose with safe automation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user asks to commit, write a commit message, generate a conventional commit, or invokes /conventional-commit. Also use when staged changes need a commitlint-compliant message, when the user asks to commit and push (or passes --push), when unstaged or untracked files exist and staging scope must be confirmed, or when agent-attribution trailers must be avoided on commits. Handles git commit and git push flags when the user passes them.
Use when the user asks to create, open, or raise a GitHub pull request, submit changes for review. Also when staged, committed, or unpushed work needs a PR via gh CLI and required PR metadata is missing (base branch, draft vs ready, reviewers, labels, linked issues, test plan).
Use when the task is multi-constraint, ambiguous, architectural, or needs a design/algorithm choice before answering. Skip for trivial lookups and one-line edits.
Use when the user explicitly asks to audit, critic, or verify a generated solution or answer (e.g. /verifying-solutions, "audit this", "critic this") — not for routine completion claims or pre-answer design.
Use when staging, formatting, or creating git commits for code changes in a Git repository.
Analyzes error logs, stack traces, and provides systematic debugging strategies and solutions
| name | organize |
| description | Intelligently organizes files in directories based on content type, date, and purpose with safe automation |
Organize and structure files in the specified directory.
question tool for EVERY user interaction — never ask questions as plain textPlease help organize files systematically:
Directory Analysis:
find "<target>" -type f | head -30ls -la "<target>"find "<target>" -type f | sed 's/.*.//' | sort | uniq -c | sort -nrls -lah "<target>" | head -15File Classification: Categorize files by:
Content Analysis:
file "<target>"/* | head -10find "<target>" -type f -exec basename {} ; | sort | uniq -d | head -10Organization Strategy:
Use the question tool to present organization strategy options to the user:
Cleanup Opportunities:
find "<target>" -type d -emptySmart Suggestions:
Safe Organization Commands: Generate safe file operations:
mv commands with full pathsAutomation Script: Create a bash script that:
User Confirmation:
Before executing any file operations, use the question tool to present the proposed changes and ask the user to confirm. Include a dry-run option.
Quality Control:
Maintenance Plan:
Please provide:
Example output:
# Create directory structure
mkdir -p "<target>/Documents/{PDF,Word,Spreadsheets}"
mkdir -p "<target>/Media/{Photos,Videos}"
# Organize files safely
mv "<target>"/*.pdf "<target>/Documents/PDF/"