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

folder-organization文件夹组织

Agent Skill

folder-organization 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,739

周安装

113

GitHub Stars

12

下载量

895
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill folder-organization

简介

folder-organization 用于记录任务执行中的错误和经验。

  • 适合让 Agent 持续沉淀问题修正和最佳实践。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:github,通过 npx skills add 命令添加。
  • 注意:需确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Folder Organization Best Practices

Expert guidance for organizing project directories, establishing file naming conventions, and maintaining clean, navigable project structures for research and development work.

When to Use This Skill

  • Setting up new projects
  • Reorganizing existing projects
  • Establishing team conventions
  • Creating reproducible research structures
  • Managing data-intensive projects

Core Principles

  1. Predictability - Standard locations for common file types
  2. Scalability - Structure grows gracefully with project
  3. Separation of Concerns - Code, data, documentation, outputs separated
  4. Discoverability - Easy for others (and future you) to navigate
  5. Version Control Friendly - Large/generated files excluded appropriately

Quick Reference: Standard Project Structure

Use the structure matching your project type. Full templates in project-structures.md.

Research/Analysis: data/{raw,processed,external}, notebooks/, src/, scripts/, tests/, docs/, results/, config/

Development: src/package_name/, tests/, docs/, examples/, .github/workflows/

Bioinformatics: data/{raw,reference,processed}, workflows/, config/, scripts/, results/, logs/

Data Analysis with Notebooks: notebooks/, figures/, data/, tests/, scripts/, docs/, archives/

Add MANIFEST.md files for token-efficient navigation (see manifest-system.md).

File Naming Rules

Detailed conventions in naming-conventions.md. Key rules:

  1. Use lowercase with hyphens or underscores (not spaces or CamelCase)
  2. Be descriptive but concise - process-telomere-data.py not script.py
  3. Use consistent separators - hyphens for files, underscores for Python modules
  4. Include version/date for important outputs - report-2026-01-23.pdf
  5. Zero-pad sequences - 01-exploration.ipynb, 02-analysis.ipynb
  6. Standardize session notes in session-saves/ directory

Version Control

DO commit: Source code, documentation, config files, small test data (<1MB), requirements files, READMEs

DON'T commit: Large data files, generated outputs, environment dirs, logs, temp files, API keys/secrets

.gitignore Template

# Claude Code
.claude/

# Python
__pycache__/
*.py[cod]
.venv/
venv/

# Jupyter
.ipynb_checkpoints/

# Data
data/raw/
data/processed/
*.fastq.gz
*.bam

# Outputs
results/
outputs/
*.png
*.pdf

# Logs & Environment
logs/
*.log
.env
.DS_Store

Data Organization

  • Never modify raw data - keep originals in data/raw/ (read-only if possible)
  • Document data provenance (source, download date)
  • Use hierarchy: raw/ -> interim/ -> processed/ -> external/

Common Anti-Patterns

Avoid these patterns:

  • Flat structure: Everything in root directory with no organization
  • Ambiguous naming: notebook1.ipynb, test.ipynb, analysis_new.ipynb
  • Mixed concerns: Data files and output images inside src/ directory

Deprecation Strategy

Deprecate rather than delete to maintain history and recovery options. Full guide in deprecation-guide.md.

Key pattern:

  1. Create deprecated/ subdirectory with descriptive name
  2. Move old files there
  3. Write README.md explaining what, when, why, and how to recover
  4. For scattered deprecated dirs, consolidate to single root deprecated/

Project Reorganization

Full systematic guide in reorganization-guide.md. Critical steps:

  1. Update all file paths in scripts and notebooks after moving files
  2. Search for references: grep -r "\.json\|\.csv\|\.png" --include="*.ipynb" --include="*.py"
  3. Verify file counts match expectations (no files lost)
  4. Remove temp files (.bak, .ipynb_checkpoints)
  5. Test that notebooks/scripts still run correctly

Documentation Standards

Full guide in documentation-organization.md. Key points:

  • Every project needs a README with: description, installation, usage, structure, data, results
  • After major changes, create dated summary documents
  • Consolidate scattered docs into documentation/ directory
  • Keep only README.md, LICENSE,.gitignore in project root

MANIFEST System

Token-efficient project navigation system. Full documentation in manifest-system.md.

  • Provides 85-90% token reduction for session startup
  • Root MANIFEST.md gives complete project overview in ~1,500 tokens
  • Subdirectory MANIFESTs for data/, figures/, scripts/, documentation/
  • Update at end of every session with /update-manifest

Project Cleanup: Identifying Essential Files

Detailed process in deprecation-guide.md (section "Project Cleanup"). Summary:

  1. Analyze notebooks to find referenced figures
  2. Map figures to generating scripts
  3. Move unused files to deprecated/ with descriptive subdirectory names
  4. Document what was kept in MINIMAL_ESSENTIAL_FILES.md
  5. Verify notebooks still work with cleaned structure

Integration with Other Skills

  • python-environment - Environment setup and management
  • claude-collaboration - Team workflow best practices
  • jupyter-notebook-analysis - Notebook organization standards
  • data-backup - Backup system should include MANIFESTs
  • project-sharing - Include MANIFESTs in shared packages

Quick Setup

# Create standard research project structure
mkdir -p data/{raw,processed,external} notebooks scripts src tests docs results config
touch README.md .gitignore environment.yml

Supporting Files

FileContents
project-structures.mdDetailed directory templates for all project types
naming-conventions.mdFile naming rules, patterns, and session notes storage
reorganization-guide.mdStep-by-step reorganization, path updates, verification
deprecation-guide.mdDeprecation strategy, consolidation, essential file identification
documentation-organization.mdDocumentation standards, change summaries, doc directory structure
manifest-system.mdComplete MANIFEST system: templates, commands, workflows, best practices

References and Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.04%
按下载量换算233

Gemini CLI

24.95%
按下载量换算223

windsurf

19.49%
按下载量换算174

Antigravity

11.44%
按下载量换算102

OpenCode

8.08%
按下载量换算72

Codex

3.43%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills