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

file-organization文件组织

Agent Skill

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

总安装

612

周安装

25

GitHub Stars

11

下载量

196
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill file-organization

简介

用于优化仓库结构与文件分类策略。file-organization 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 支持增量迁移与现有混乱结构的逐步整理。
  • 需根据项目类型(前端/后端/docs)选择合适模式。
  • 应定义清晰边界规则,避免过度重构。
  • 安装前请确认是否有重命名或移动文件权限。

SKILL.md

File Organization

Use this skill when the real question is "what structure should this repo use next, and how do we improve it without creating a bigger mess?"

The job is to choose the lowest-complexity structure that fits, define the boundary rules, and give an incremental migration path when the repo already exists.

Read references/repo-shape-decision-guide.md before choosing a structure. Read references/migration-playbook.md when the repo is already messy. Read references/repo-type-patterns.md when the request spans frontend, backend, docs/ops, or game-development layouts.

When to use this skill

  • Decide how to structure a frontend, backend, fullstack, docs, or game-development repo
  • Choose between framework defaults, feature/domain folders, apps/ + packages/libs/, docs taxonomy, or engine-aware hybrid layouts
  • Reorganize an existing repo whose folders no longer communicate ownership or intent
  • Define naming and placement rules for code, docs, scripts, assets, tests, or packages
  • Stop shared/, common/, misc/, helpers/, or utils/ junk drawers from spreading
  • Plan an incremental reorganization instead of a risky all-at-once rewrite

When not to use this skill

  • The main task is finding where something currently lives → use codebase-search
  • The main task is scaffolding generators, task runners, hooks, or recurring commands → use workflow-automation
  • The main task is Docker/devcontainers/toolchains/services needed to run the repo → use system-environment-setup
  • The main task is frontend state ownership or store boundaries → use state-management
  • The main task is shared UI primitives, tokens, or package boundaries inside the design system → use design-system
  • The main task is game-production planning or milestone routing → use bmad-gds

Core idea

Good file organization is a decision ladder, not one canonical folder tree:

  1. Keep framework or engine defaults first when they already solve the problem.
  2. Escalate to feature/domain grouping when change locality matters more than technical layers.
  3. Escalate to apps/ + packages/libs/ when multiple deployables or real shared packages appear.
  4. Add naming rules, placement rules, and migration guardrails before inventing more folders.
  5. Prefer incremental migrations unless the repo is small enough to restart safely.

Instructions

Step 1: Classify the repository before proposing structure

Normalize the request into this intake:

repo_structure_intake:
  repo_type: frontend-app | backend-service | fullstack-monorepo | docs-ops-repo | game-project | library-cli | mixed | unknown
  lifecycle: greenfield | growing | messy-existing | partial-reorg | unknown
  dominant_pressure:
    - route-sprawl
    - feature-sprawl
    - shared-folder-junk-drawer
    - ownership-unclear
    - docs-taxonomy-drift
    - asset-sprawl
    - too-many-top-level-folders
    - monorepo-boundary-confusion
    - unknown
  current_shape: framework-defaults | layer-first | feature-first | monorepo | hybrid | ad-hoc | unknown
  migration_tolerance: low | medium | high
  contributors: solo | small-team | multi-team | mixed-discipline
  constraints:
    - framework-routing-rules
    - engine-special-folders
    - generator-lock-in
    - import-path-stability
    - docs-url-stability
    - asset-pipeline-rules
    - unknown

If the request is vague, prefer the smallest reasonable interpretation and state the assumption.

Step 2: Choose one primary organization mode

Pick exactly one primary mode for the run:

  1. framework-default mode — early framework/engine defaults still fit; add only small colocated boundaries.
  2. feature/domain mode — one workflow touches UI/state/api/tests/docs together and layer-first folders are scattering the work.
  3. workspace/monorepo mode — multiple deployables or reusable packages need explicit top-level separation.
  4. docs-taxonomy mode — the repo is mostly documentation, runbooks, or knowledge assets and should be organized by reader task and content type.
  5. engine-aware hybrid mode — the project must honor engine-required folders while still preserving ownership and naming rules.

Return the chosen mode explicitly before proposing folders.

Step 3: Define the boundary packet

For any chosen mode, return this packet:

structure_packet:
  primary_mode: framework-default | feature-domain | workspace-monorepo | docs-taxonomy | engine-aware-hybrid
  top_level_folders:
    - name: <folder>
      purpose: <why it exists>
      owner: <role/team/unknown>
  naming_rules:
    files: <rule>
    folders: <rule>
    shared_code: <rule>
  placement_rules:
    - "new route-specific code goes near the route"
    - "extract to shared only after proven reuse"
  anti_patterns_to_block:
    - <pattern>
  migration_scope: greenfield | incremental | targeted-reorg
  route_outs:
    - <adjacent skill if needed>

Do not stop at a folder tree. Explain why each boundary exists.

Step 4: Apply the repo-type pattern that fits

Use the references for detailed patterns. In the front door, keep only the routing decision:

  • Frontend / meta-framework app → keep framework routing/layout conventions first, colocate route-specific code, and add feature folders only when components/ or hooks/ become dumping grounds.
  • Backend service → keep framework/module conventions first, then group by domain/module when one workflow keeps crossing controllers/services/schemas/jobs unnecessarily.
  • Fullstack / monorepo → keep apps/ + packages/libs/, extract shared code only after repeated reuse, and document ownership/public APIs.
  • Docs / ops repo → organize by user need and document type; separate tutorials, runbooks, reference, and explanation when audiences differ.
  • Game-development repo → respect engine-required roots and special folders, then add naming and ownership rules for scenes/assets/scripts/tools.

Step 5: Plan migration only if needed

If the repo already exists, prefer this order:

  1. freeze the target vocabulary,
  2. pick one hot path or one feature/domain,
  3. move new work into the new shape before backfilling old code,
  4. add compatibility notes or shims where needed,
  5. clean the highest-confusion legacy buckets last.

Step 6: Guard against junk-drawer patterns

Always call out these failure modes if they appear:

  • shared/, common/, misc/, helpers/, utils/ with unclear ownership
  • barrels at every folder level
  • too many top-level folders without distinct purpose
  • packages extracted before a stable public API exists
  • docs trees organized around org history instead of reader tasks
  • game asset trees that ignore engine/tool constraints
  • generated or cache folders treated like first-class source structure

Step 7: Produce the output in this order

  1. Repository diagnosis — current shape, pressure, and constraints
  2. Chosen organization mode — one sentence
  3. Boundary packet — top-level folders, naming rules, placement rules, anti-patterns
  4. Migration plan — only if the repo already exists
  5. Route-outs — adjacent skills when the problem expands beyond structure

Output format

Repository diagnosis

  • Repo type:
  • Lifecycle:
  • Main pressure:
  • Constraints:

Recommended structure

Folder / boundaryPurposeTypical contentsNotes
............

Naming and placement rules

  • Files:
  • Folders:
  • Shared code:
  • Assets/docs/scripts:

Anti-patterns to block

  • ...

Migration plan

  1. ...
  2. ...
  3. ...

Route-outs

  • ...

Examples

Example 1: Growing Next.js app with components/ sprawl

Input: “Our Next.js repo has components, hooks, lib, and utils, and no one knows where new checkout code belongs.”

Output direction: Keep App Router defaults, choose feature/domain mode only for high-churn product areas, shrink components/ to truly shared UI primitives, and route store-boundary questions to state-management.

Example 2: Fullstack monorepo with premature package extraction

Input: “We have three apps, six packages, duplicated helpers, and no clarity on what should stay shared.”

Output direction: Keep apps/ + packages/, collapse pseudo-shared packages that do not have stable public APIs, define extraction rules, and route generator/task-runner follow-up to workflow-automation.

Example 3: Docs repo with a giant mixed notes tree

Input: “Our docs repo has onboarding notes, runbooks, architecture docs, and user help all mixed together.”

Output direction: Choose docs-taxonomy mode, separate by reader task and document type, keep runbooks distinct from end-user help, and avoid one catch-all notes/ bucket.

Example 4: Unity repo with asset sprawl

Input: “Our Unity project has art, prefabs, scenes, tools, and scripts mixed together under Assets/.”

Output direction: Choose engine-aware hybrid mode, respect Unity special folders, separate scenes/prefabs/scripts/tools/content assets intentionally, and add naming/ownership rules for cross-discipline contributors.

Best practices

  1. Start from framework or engine defaults before inventing custom top-level folders.
  2. Organize by what changes together, not just by file type.
  3. Extract shared code only after repeatable reuse is obvious.
  4. Keep top-level folders few, named, and purposeful.
  5. Treat naming and placement rules as part of the design, not optional polish.
  6. Prefer incremental migrations over heroic restructures.
  7. Document exceptions when the tree cannot fully explain the repo.
  8. Respect engine/tooling constraints in game/content repositories.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.95%
按下载量换算69

Claude

29.72%
按下载量换算58

Cursor

17.04%
按下载量换算33

Gemini CLI

9.03%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills