Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

organize-folders组织文件夹

Agent Skill

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

总安装

399

周安装

16

GitHub Stars

公开资料未说明

下载量

129
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add philoserf/claude-code-setup --skill "organize-folders"

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于研究检索类任务,支持多宿主环境集成,可结合来源仓库进一步核验具体用法。
  • 通过 npx skills add philoserf/claude-code-setup --skill "organize-folders" 命令安装。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
organize-folders
description
Provides guidance on organizing folder structures and file system layouts for any project. Use when planning project organization, reorganizing messy directories, setting up folder hierarchies, designing directory layouts, structuring repositories, cleaning up files, suggesting folder structures, establishing naming conventions, or when you need help with folder structure or file organization. Helps with writing projects, code projects, document collections, or any file organization task.
allowed-tools
[Read, Grep, Glob]

Folder Organization Guidance

This skill provides guidance and recommendations for organizing folder structures and file system layouts. It helps you design effective file organization but doesn't automatically reorganize files.

User Preferences

The user prefers simple, practical systems with a typical pattern:

  • drafts
  • published

The user prefers top-level folders for nesting but repository design is flexible. Recommend whatever system best fits the task, keeping things simple.

Examples

Writing Project: Blog Post Rewrite

For a blog post rewrite targeting a more technical audience:

  • Create a new folder called /rewrite
  • Within that folder, create subfolders like /rewrite/v1, /rewrite/v2 or /rewrite/drafts

When to use versioned folders (v1, v2):

  • Rewrite involves multiple assets (text + images) that need to stay together
  • Each version is a complete package

When to use drafts folder:

  • Text-only rewrites without supporting files
  • Simpler iteration process

Document Collection

For organizing a collection of PDF documents:

  • Organize by source/publisher first, then by type
  • Use flat structures only for small collections (<30 files)
  • Create subdirectories when folders exceed ~50 files
  • Document file counts in README.md at collection root

Code Project

For a multi-component software project:

  • /src - source code organized by feature or layer
  • /tests - test files mirroring src structure
  • /docs - documentation
  • /scripts - automation and build scripts

Photo/Media Library

For organizing photos, videos, or media files:

  • By date: /2024/01-January, /2024/02-February (chronological)
  • By event: /Vacation-Hawaii-2024, /Birthday-Party-2024 (event-based)
  • Hybrid: /2024/Hawaii-Vacation, /2024/Birthday (year + event)

Choose based on retrieval patterns - date for large collections, events for memorable occasions.

Research Project

For academic or research work with papers and notes:

  • /papers - PDFs organized by topic or author
  • /notes - Reading notes and annotations
  • /writing - Drafts of your own work
  • /data - Datasets and analysis results
  • /references - Bibliography and citation management

General Principles

  • Start simple: Use one file/folder until you need more
  • Split when needed: Create subdirectories when folders get too large (~50+ items)
  • Name consistently: Establish conventions early
  • Document structure: Add README.md explaining organization when non-obvious
  • Follow the simplest solution that will get the job done

Common Organization Problems

Too Many Files in One Folder

When a folder exceeds ~50 items, it becomes hard to navigate:

  • Solution: Create subdirectories by logical grouping (type, date, category)
  • Example: Split /documents into /documents/contracts, /documents/reports, /documents/invoices

Deeply Nested Structures

More than 3-4 levels of nesting makes files hard to find:

  • Solution: Flatten by combining middle levels or using more descriptive names
  • Example: /projects/client/2024/Q1/reports/projects/client-2024-Q1-reports

Inconsistent Naming

Mixed conventions (spaces vs dashes, capitalization) cause confusion:

  • Solution: Pick one convention and apply consistently
  • Recommended: kebab-case for code projects, Title Case for documents

References

For detailed guidance on specific topics, see the reference documentation:

document-collection-organization.md

Comprehensive guide for organizing PDF and document collections:

  • Publisher-first hierarchy strategies
  • Size thresholds and when to split directories (30/50/100+ file triggers)
  • PDF examination workflow (pdfinfo, pdftotext)
  • Duplicate prevention and detection methods
  • Periodic audit processes and checklists
  • Collection README.md templates
  • Handling inherited disorganized collections

naming-conventions.md

Complete naming conventions for all file types:

  • Document collections: Title Case with spaces
  • Code projects: kebab-case for directories, language-specific for files
  • Media libraries: date-based (YYYY-MM-DD) vs event-based naming
  • Research papers: Author-Year-Title patterns
  • Common mistakes and how to fix them
  • Batch renaming strategies and scripts
  • Enforcement during audits

organization-patterns.md

Decision frameworks and pattern selection:

  • Pattern decision tree (topic, chronological, publisher, type, project, hybrid)
  • When to split directories (quantitative and qualitative triggers)
  • Anti-patterns to avoid (excessive nesting, premature organization, misc dumping grounds)
  • Reorganization strategies and when to reorganize
  • Effective pattern combinations

examples-and-workflows.md

Step-by-step walkthroughs and templates:

  • Organizing 200+ PDF research collection (complete 6-hour workflow)
  • Migrating from disorganized to organized structure
  • README.md templates for document and code collections
  • Quarterly collection audit checklist
  • Adding new files to existing collections
  • Reorganizing when structure is outgrown

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

28.45%
按下载量换算37

windsurf

24.79%
按下载量换算32

OpenCode

19.66%
按下载量换算25

Codex

11.31%
按下载量换算15

Antigravity

7.99%
按下载量换算10

Gemini CLI

3.84%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills