Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

file-organizer文件整理

Agent Skill

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

总安装

742

周安装

30

GitHub Stars

1

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill file-organizer

简介

file-organizer 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

File Organizer

Overview

Design and maintain well-organized project structures that scale with team and codebase growth. This skill covers monorepo patterns, feature-based vs layer-based architecture, naming conventions, index/barrel files, configuration file placement, and documentation structure.

Apply this skill whenever a project's file organization needs to be established, audited, or restructured for clarity and scalability.

Multi-Phase Process

Phase 1: Assessment

  1. Audit current project structure and identify pain points
  2. Measure project size (file count, team size, feature count)
  3. Identify existing naming conventions and import patterns
  4. Catalog configuration file locations
  5. Check for circular dependencies or deep nesting
STOP — Do NOT propose a new structure without understanding the current state and its pain points.

Phase 2: Strategy Selection

  1. Choose organization strategy using decision table below
  2. Define naming conventions and file placement rules
  3. Plan barrel export boundaries
  4. Establish configuration file placement rules
  5. Document import ordering convention
STOP — Do NOT begin migration without documenting the target structure and getting team alignment.

Phase 3: Migration Planning

  1. Plan migration path for existing projects (incremental, not big-bang)
  2. Identify files that move and their new locations
  3. Map import changes required
  4. Create automated codemods where possible
  5. Define rollback plan if migration causes issues
STOP — Do NOT execute migration without verifying tests pass at each incremental step.

Phase 4: Execution and Validation

  1. Move one feature or module at a time
  2. Update imports using automated tools
  3. Verify tests pass after each move
  4. Remove old structure after complete migration
  5. Document conventions for team reference

Architecture Strategy Decision Table

Project SizeTeam SizeRecommendationWhy
< 20 files1-2 devsLayer-basedSimple, low overhead
20-100 files2-5 devsHybridBalance of simplicity and scalability
100+ files5+ devsFeature-basedSelf-contained modules reduce conflicts
Multiple apps sharing codeAnyMonorepoShared packages with clear boundaries
Rapid prototype / MVP1-3 devsLayer-basedSpeed over structure, refactor later
Enterprise, multiple teams10+ devsFeature-based + MonorepoTeam ownership per feature module

Architecture Patterns

Feature-Based (Domain-Driven)

Organize by business domain. Each feature is self-contained.

src/
  features/
    auth/
      components/
        LoginForm.tsx
        SignupForm.tsx
      hooks/
        useAuth.ts
      api/
        auth.api.ts
      types/
        auth.types.ts
      utils/
        auth.utils.ts
      __tests__/
        auth.test.ts
      index.ts          # Public API (barrel export)
    dashboard/
      components/
      hooks/
      api/
      types/
      index.ts
    billing/
      ...
  shared/               # Cross-feature shared code
    components/
      Button.tsx
      Modal.tsx
    hooks/
      useDebounce.ts
    utils/
      format.ts
    types/
      common.types.ts

Best for: Teams > 5 developers, medium-large applications, clear domain boundaries.

Layer-Based (Technical)

Organize by technical concern.

src/
  components/
    Button.tsx
    Modal.tsx
    LoginForm.tsx
    DashboardCard.tsx
  hooks/
    useAuth.ts
    useDebounce.ts
  services/
    auth.service.ts
    billing.service.ts
  utils/
    format.ts
    validation.ts
  types/
    auth.types.ts
    billing.types.ts
  pages/
    Home.tsx
    Dashboard.tsx

Best for: Small teams (1-3), simple applications, rapid prototyping.

Hybrid (Recommended Default)

Combine both: shared layer + feature modules.

src/
  app/                  # App-level concerns
    layout.tsx
    providers.tsx
    routes.tsx
  features/             # Feature modules
    auth/
    dashboard/
    billing/
  components/           # Shared UI components
    ui/                 # Design system atoms
    layout/             # Layout components
  hooks/                # Shared hooks
  lib/                  # Shared utilities
  types/                # Shared types
  config/               # App configuration
  styles/               # Global styles

Monorepo Patterns

Turborepo / pnpm Workspaces

root/
  apps/
    web/                # Next.js web app
      package.json
    api/                # API server
      package.json
    mobile/             # React Native app
      package.json
  packages/
    ui/                 # Shared component library
      package.json
    config/             # Shared configs (ESLint, TypeScript)
      eslint/
      typescript/
      package.json
    utils/              # Shared utilities
      package.json
    types/              # Shared type definitions
      package.json
  package.json          # Root workspace config
  turbo.json            # Turborepo pipeline config
  pnpm-workspace.yaml

Package Boundaries

  • Apps depend on packages, never on other apps
  • Packages can depend on other packages
  • No circular dependencies
  • Each package has a clear, single responsibility
  • Shared packages export via index.ts barrel

Configuration Sharing

// packages/config/typescript/base.json
{
  "compilerOptions": {
    "strict": true,
    "moduleResolution": "bundler",
    "target": "ES2022"
  }
}

// apps/web/tsconfig.json
{
  "extends": "@repo/config/typescript/nextjs",
  "include": ["src"]
}

Naming Conventions

Files and Directories

TypeConventionExample
ComponentsPascalCaseUserProfile.tsx
HookscamelCase with use prefixuseAuth.ts
UtilitiescamelCaseformatDate.ts
TypescamelCase with .types suffixauth.types.ts
Testssame name with .test suffixUserProfile.test.tsx
Stylessame name with .module.css suffixUserProfile.module.css
ConstantscamelCase or UPPER_SNAKE in fileconfig.ts
API/ServicescamelCase with .api or .serviceauth.api.ts
Directorieskebab-caseuser-profile/

Component File Naming

# Single-file component
Button.tsx

# Component with co-located files
Button/
  Button.tsx
  Button.test.tsx
  Button.stories.tsx
  Button.module.css
  index.ts            # Re-exports Button

Import Ordering Convention

// 1. External packages
import React from 'react';
import { useQuery } from '@tanstack/react-query';

// 2. Internal packages (monorepo)
import { Button } from '@repo/ui';

// 3. Feature-level imports
import { useAuth } from '@/features/auth';

// 4. Relative imports (same feature)
import { LoginForm } from './LoginForm';
import { authSchema } from './auth.types';

// 5. Styles
import styles from './Auth.module.css';

Index Files and Barrel Exports

Barrel Export Pattern

// features/auth/index.ts — Public API
export { LoginForm } from './components/LoginForm';
export { useAuth } from './hooks/useAuth';
export type { User, AuthState } from './types/auth.types';

// Do NOT export internal implementation details
// Do NOT export utility functions used only within the feature

Barrel Export Decision Table

ContextUse Barrel?Why
Feature module public APIYes, alwaysClean boundary, controlled surface area
Shared component libraryYes, alwaysSingle import point for consumers
Utility librariesYes, alwaysDiscoverability for shared functions
Inside a feature (internal)NoImport directly, avoid indirection
Would cause circular dependenciesNoBreak the cycle, import directly
Hurts tree-shaking (verified)NoUse direct imports for bundle size

Configuration File Placement

Root-Level Configuration

root/
  .editorconfig         # Editor settings
  .eslintrc.js          # ESLint config (or eslint.config.js)
  .gitignore            # Git ignore rules
  .prettierrc           # Prettier config
  .env.example          # Environment variable template
  docker-compose.yml    # Docker composition
  Dockerfile            # Container build
  package.json          # Dependencies and scripts
  tsconfig.json         # TypeScript config
  next.config.js        # Framework config
  tailwind.config.ts    # Tailwind config
  vitest.config.ts      # Test config

Environment Files

.env                    # Local defaults (gitignored)
.env.example            # Template with dummy values (committed)
.env.local              # Local overrides (gitignored)
.env.development        # Development-specific (committed or not)
.env.production         # Production-specific (committed or not)
.env.test               # Test-specific (committed or not)

Documentation Structure

docs/
  architecture/
    adr/                # Architecture Decision Records
      001-framework.md
      002-database.md
    diagrams/
  api/                  # API documentation
  guides/
    getting-started.md
    deployment.md
  contributing.md

Migration Strategy

Incremental Migration (Recommended)

  1. Create the target structure alongside existing code
  2. Move one feature/module at a time
  3. Update imports using automated codemods
  4. Verify with tests after each move
  5. Remove old structure after complete migration

Automated Tools

  • ts-morph: programmatic TypeScript refactoring
  • jscodeshift: JavaScript codemods
  • IDE refactoring: rename/move with automatic import updates
  • ESLint import/order: enforce import ordering

Anti-Patterns / Common Mistakes

Anti-PatternWhy It FailsWhat To Do Instead
Deeply nested folders (> 4 levels)Hard to navigate, long import pathsFlatten structure, use path aliases
utils/ as a dumping groundBecomes unmaintainable junk drawerOrganize utils by domain or purpose
Circular dependencies between featuresBuild failures, unclear ownershipFeatures import only from shared or own modules
Barrel exports re-exporting everythingKills tree-shaking, bloats bundlesExport only the public API
Inconsistent naming (mixed conventions)Cognitive load, merge conflictsPick one convention, enforce with linter
Config scattered across multiple locationsHard to find and maintainAll config at project root
Tests in separate directory treeHard to find tests for a fileCo-locate tests with source code
100+ files in one flat folderImpossible to navigateGroup into sub-modules or features
Index files containing logicUnexpected side effects on importIndex files only re-export
Big-bang migration (move everything at once)High risk, hard to rollbackIncremental moves with tests after each

Anti-Rationalization Guards

  • Do NOT restructure without understanding current pain points -- assess first.
  • Do NOT skip the team alignment step -- structure changes affect everyone.
  • Do NOT migrate everything at once -- move one module at a time with test verification.
  • Do NOT create deeply nested structures "for future scalability" -- flatten until complexity demands it.
  • Do NOT ignore barrel export impact on bundle size -- verify with bundle analyzer.

Integration Points

SkillHow It Connects
senior-frontendFrontend project structure follows feature-based or hybrid patterns
senior-architectArchitecture decisions inform module boundaries and package structure
senior-fullstackFull-stack projects need coordinated frontend/backend organization
clean-codeNaming conventions and module boundaries support clean code principles
deploymentMonorepo structure affects CI/CD pipeline configuration
laravel-specialistLaravel projects follow framework-specific directory conventions

Skill Type

FLEXIBLE — Choose the organization strategy that fits the project's size, team structure, and complexity. The naming conventions and barrel export patterns are recommendations that should be adapted to existing project conventions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.86%
按下载量换算86

Claude

29.33%
按下载量换算68

Cursor

20.28%
按下载量换算47

Gemini CLI

9.6%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills