Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计异常

folder-organizer文件夹管理器

Agent Skill

folder-organizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:folder-organizer(文件夹管理器)
来源仓库:https://github.com/timlai666/skills
仓库路径:skills/folder-organizer
安装命令:
npx skills add https://github.com/timlai666/skills --skill folder-organizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/timlai666/skills --skill folder-organizer

简介

folder-organizer 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位信息。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:github,通过 npx skills add 命令添加。
  • 注意:需确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Folder Organizer

A skill for scanning, analyzing, and organizing files — producing a complete reorganization plan before touching anything.


Core Principle: Plan First, Execute Later

Never rename, move, copy, or delete any file before the user explicitly confirms the full plan.

Always present the complete plan and wait for an affirmative response.


Phase 1 — Scan & Inventory

Determine where the files are:

SourceHow to access
Uploaded to conversationCheck /mnt/user-data/uploads/
Local path given by userUse bash_tool to ls -lah <path>
Described verballyAsk the user to upload or provide a path

Run a scan and report:

# Count files and get basic stats
find <target_dir> -type f | wc -l
find <target_dir> -type f -name "*" | sort
ls -lah <target_dir>

Present a simple summary:

  • 📁 Total file count
  • File types found (extensions breakdown)
  • Any immediately obvious duplicates or empty files

Phase 2 — Per-File Analysis

For each file, determine:

FieldWhat to provide
📌 ContentWhat the file contains or represents (read text files; infer from name/extension for binaries)
🏷 Suggested filenameClear, descriptive, lowercase-with-hyphens or underscores, include date if relevant
📂 Suggested folderLogical category group name
🗑 Deletable?Flag if file appears redundant, empty, temp, or duplicate

Filename conventions:

  • Lowercase, use - or _ as separators
  • Include context: 2024-q3-sales-report.xlsx not report.xlsx
  • Keep extensions unchanged

Folder naming conventions:

  • Short, noun-based: reports/, assets/, drafts/, archives/
  • Avoid deep nesting beyond 2 levels unless necessary

Phase 3 — Grouping & Structure Proposal

After analyzing all files, produce:

  1. Grouped clusters — files that belong together by topic, project, or type
  2. Proposed folder tree — show as a tree diagram, e.g.: 📁 organized/ ├── 📁 reports/ │ ├── 2024-q1-sales.xlsx │ └── 2024-q3-forecast.pdf ├── 📁 assets/ │ ├── logo-primary.png │ └── banner-homepage.jpg └── 📁 drafts/ └── proposal-v2.docx
  3. Files to delete — list separately with reason
  4. Files to bundle — groups that could be zipped together (e.g., all assets for a project)

Phase 4 — Confirmation Gate

Present the full plan and ask:

「以上是完整的整理計畫,請確認後我再執行。如需調整任何分類、檔名或資料夾名稱,請直接告訴我。」 (English: "Above is the complete reorganization plan. Please confirm before I proceed. Let me know if you'd like to adjust any category, filename, or folder name.")

Do not proceed until the user says yes / 確認 / 執行 or equivalent.


Phase 5 — Execution (only after confirmation)

Once confirmed, execute the plan:

# Example: create folders and move files
mkdir -p <output_dir>/reports
mv "<source>/old-name.xlsx" "<output_dir>/reports/2024-q3-sales.xlsx"
# ... etc

After execution:

  • Show a final file tree of the result
  • Confirm completion with file count moved/renamed

Edge Cases

SituationBehavior
File content unreadable (binary, encrypted)Infer from filename/extension; flag as "manual review needed"
Duplicate filenames after renamingAppend -2, -3 suffix
User uploads a ZIPExtract first, then analyze contents
No files foundAsk user to re-upload or verify path
Very large folder (100+ files)Summarize by type clusters first; ask if user wants per-file detail

Output Language

Match the user's language. If the user writes in Traditional Chinese (繁體中文), respond in Traditional Chinese. If in English, respond in English.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.24%
按下载量换算23

Claude

30.45%
按下载量换算22

Cursor

20.28%
按下载量换算14

Gemini CLI

9.41%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills