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

file-categorization文件分类

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

11

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/enuno/claude-command-and-control --skill file-categorization

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据任务场景快速定位内容。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • 可结合原始 README 进一步核验具体用法和功能边界。

SKILL.md

File Categorization Skill

When to Use This Skill

  • Processing files in integration pipelines
  • Scanning directories for file organization
  • Auto-routing files to appropriate locations
  • Generating file inventory reports
  • Validating repository structure

What This Skill Does

Analyzes file structure and content to accurately categorize files into:

  • Commands - Slash command definitions
  • Agents - Agent configuration files
  • Skills - Reusable workflow automation
  • Documentation - General markdown documentation
  • Other - Uncategorized files requiring manual review

Categorization Logic

Step 1: Filename Pattern Matching

Commands:

  • Filename matches *-command.md or *command.md
  • Located in .claude/commands/ directory
  • Filename uses verb-noun pattern (e.g., integration-scan.md)

Agents:

  • Filename matches *-agent.md or *agent.md
  • Located in agents-templates/ directory
  • Contains role-based names (architect, builder, validator, etc.)

Skills:

  • Filename is SKILL.md or *-SKILL.md or *-skill.md
  • Located in skills/*/ directories
  • Contains workflow automation content

Documentation:

  • Standard .md files
  • Located in docs/ directory
  • Contains reference or tutorial content

Step 2: Frontmatter Analysis

Read the YAML frontmatter (if present) to identify:

Command Indicators:

---
description: "..."
allowed-tools: [...]
author: "..."
version: "X.Y"
---

Skill Indicators:

---
name: skill-name
description: "..."
---

Agent Indicators (less structured, more prose):

## Agent Identity
**Role**: [Agent Role]
**Version**: X.Y.Z
**Purpose**: [Purpose description]

Step 3: Content Structure Analysis

Commands have:

  • Workflow sections with numbered steps
  • Bash command examples (prefixed with !)
  • allowed-tools restrictions
  • Usage examples

Agents have:

  • Core Responsibilities section
  • Allowed Tools and Permissions section
  • Workflow Patterns section
  • Context Management section

Skills have:

  • "When to Use" section
  • "What This Skill Does" section
  • Step-by-step process descriptions
  • Examples with real data

Documentation has:

  • Standard markdown structure
  • Tutorial or reference content
  • No executable workflows
  • Educational purpose

Step 4: Keyword Detection

Scan content for category-specific keywords:

Command Keywords:

  • !bash, !git, !npm, etc. (shell commands)
  • "allowed-tools"
  • "Usage:", "Workflow:", "Steps:"
  • Command-line patterns

Agent Keywords:

  • "Core Responsibilities"
  • "Workflow Patterns"
  • "Context Management"
  • "Orchestrator", "Sub-Agent"
  • "Handoff", "Delegation"

Skill Keywords:

  • "When to Use"
  • "What This Skill Does"
  • "Skill" in self-references
  • Reusable workflow language

Documentation Keywords:

  • "Introduction", "Overview", "Guide"
  • "Tutorial", "Reference", "Best Practices"
  • Educational/explanatory language

Categorization Algorithm

function categorizeFile(filePath, content):
  // Phase 1: Filename and location
  if filename matches command patterns OR in .claude/commands/:
    category = "Command"
    confidence = "High"

  else if filename == "SKILL.md" OR in skills/*/:
    category = "Skill"
    confidence = "High"

  else if in agents-templates/:
    category = "Agent"
    confidence = "High"

  else if in docs/:
    category = "Documentation"
    confidence = "Medium"

  // Phase 2: Frontmatter analysis (refine)
  frontmatter = extractYAML(content)
  if frontmatter contains "allowed-tools" AND "version":
    category = "Command"
    confidence = "High"

  else if frontmatter contains "name" (no allowed-tools):
    category = "Skill"
    confidence = "High"

  // Phase 3: Content structure (if still uncertain)
  if confidence != "High":
    if content contains "## Agent Identity":
      category = "Agent"
      confidence = "High"

    else if content contains "## When to Use":
      category = "Skill"
      confidence = "Medium"

    else if content contains "!bash" OR "!git":
      category = "Command"
      confidence = "Medium"

  // Phase 4: Fallback
  if category == null:
    category = "Other"
    confidence = "Low"
    reason = "Unable to determine category, manual review needed"

  return {category, confidence, reasoning}

Output Format

For each categorized file, return:

### [Filename]
- **Category**: [Command|Agent|Skill|Documentation|Other]
- **Confidence**: [High|Medium|Low]
- **Reasoning**: [Why this category was assigned]
- **Frontmatter**: [✅ Valid | ⚠️ Malformed | ❌ Missing]
- **Required Fields**: [List of found/missing fields]
- **Recommended Location**: [Target directory path]

Example Usage

Example 1: Categorizing Integration File

Input:

File: USING-GIT-WORKTREES-SKILL.md
Content:
---
name: using-git-worktrees
description: Creates isolated git worktrees...
---

# Using Git Worktrees

## When to Use
...

Output:

### USING-GIT-WORKTREES-SKILL.md
- **Category**: Skill
- **Confidence**: High
- **Reasoning**: Filename matches skill pattern, frontmatter has 'name' field, content has "When to Use" section
- **Frontmatter**: ✅ Valid
- **Required Fields**: name ✅, description ✅
- **Recommended Location**: skills/using-git-worktrees/SKILL.md

Example 2: Categorizing Command File

Input:

File: integration-scan.md
Content:
---
description: "Scan and categorize incoming files"
allowed-tools: ["Read", "Bash(find)"]
author: "Claude Command and Control"
version: "1.0"
---

# Integration Scan

## Purpose
...

Output:

### integration-scan.md
- **Category**: Command
- **Confidence**: High
- **Reasoning**: Filename uses verb-noun pattern, frontmatter has 'allowed-tools' and 'version'
- **Frontmatter**: ✅ Valid
- **Required Fields**: description ✅, allowed-tools ✅, author ✅, version ✅
- **Recommended Location**: .claude/commands/integration-scan.md

Example 3: Uncategorizable File

Input:

File: notes.md
Content:
# Random Notes

Some thoughts about the project...

Output:

### notes.md
- **Category**: Other
- **Confidence**: Low
- **Reasoning**: No frontmatter, no structural indicators, generic content
- **Frontmatter**: ❌ Missing
- **Required Fields**: N/A
- **Recommended Location**: Manual review required

Integration with Commands

Used By

  • /integration-scan - Primary categorization logic
  • /integration-process - Determines target directory
  • /integration-validate - Validates category-specific structure

Usage Pattern

# In integration-scan command

For each file in /INTEGRATION/incoming:
  1. Read file content
  2. Use file-categorization skill
  3. Extract category and confidence
  4. Include in scan report
  5. Mark for processing if High confidence
  6. Flag for review if Medium/Low confidence

Category-Specific Validation Rules

Commands

  • ✅ MUST have: description, allowed-tools, author, version
  • ✅ SHOULD have: workflow steps, usage examples
  • ⚠️ Check: Tool permissions not overly broad

Agents

  • ✅ MUST have: Agent Identity, Core Responsibilities, Allowed Tools
  • ✅ SHOULD have: Workflow Patterns, Context Management
  • ⚠️ Check: Role clearly defined

Skills

  • ✅ MUST have: name, description, "When to Use"
  • ✅ SHOULD have: Examples, step-by-step process
  • ⚠️ Check: Examples use real data (not placeholders)

Documentation

  • ✅ MUST have: Clear title, structured content
  • ✅ SHOULD have: Table of contents, cross-references
  • ⚠️ Check: No executable workflows (should be in Command/Skill)

Error Handling

Malformed Frontmatter

Issue: YAML syntax error
Action: Note in categorization output
Category: "Other" with reason "Invalid frontmatter"
Recommendation: Fix YAML before processing

Conflicting Indicators

Issue: Filename says "command" but structure says "skill"
Action: Confidence = "Medium"
Reasoning: "Filename and content indicators conflict"
Recommendation: Manual review

Missing Content

Issue: File is empty or too short (<100 chars)
Action: Category = "Other"
Confidence: "Low"
Reasoning: "Insufficient content for categorization"

Testing Recommendations

Test with:

  1. Typical files - Standard commands, agents, skills
  2. Edge cases - Mixed indicators, missing frontmatter
  3. Malformed files - Syntax errors, incomplete content
  4. Ambiguous files - Could fit multiple categories

Expected accuracy:

  • High confidence: >95% correct
  • Medium confidence: >80% correct
  • Low confidence: Requires manual review

Version History

1.0 (2025-11-23)

  • Initial file categorization skill
  • Four-phase categorization algorithm
  • Integration with scan/process commands
  • Comprehensive validation rules

Skill Status: Production Ready Accuracy Target: >95% for High confidence categorizations Dependencies: None (standalone logic)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.96%
按下载量换算37

Claude

29.59%
按下载量换算30

Cursor

19.57%
按下载量换算20

Gemini CLI

9.21%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/enuno/claude-command-and-control --skill file-categorization 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills