Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Agent Sort

  • 4.2k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

How should a project-specific ECC install be configured to load only stack-matched components without noise or guesswork?

About

agent-sort builds evidence-backed install plans for Everything Claude Code (ECC) by analyzing repository structure and classifying skills, commands, rules, hooks, and extras into two buckets: DAILY (always-loaded, stack-matched) and LIBRARY (searchable, retained but not default-loaded). Developers use it when full ECC installs are too noisy or when a project needs trimmed, repeatable install decisions grounded in grep evidence rather than opinion. The workflow reads the actual repo stack (languages, frameworks, package managers, CI/hook configs), builds an evidence table linking each component to concrete file counts and config matches, then produces an install plan with verification checks to ensure stale language rules and incompatible hooks are not left active. Classifies ECC surfaces using repo-local evidence: file extensions, lockfiles, framework configs, build scripts, and dependency manifests instead of guesses. Executes parallel review passes across agents, skills, commands, rules, hooks, scripts, and extras for comprehensive component audit.

  • Classifies ECC surfaces using repo-local evidence: file extensions, lockfiles, framework configs, build scripts, and dep
  • Executes parallel review passes across agents, skills, commands, rules, hooks, scripts, and extras for comprehensive com
  • Produces DAILY inventory (session-loaded, stack-matched) and LIBRARY inventory (searchable reference) with cited justifi
  • Generates optional skill-library router with grouped trigger keywords and evidence table for transparent decision tracki
  • Verifies result by confirming DAILY files exist, removing stale language rules, excluding incompatible hooks, and report

Agent Sort by the numbers

  • 4,176 all-time installs (skills.sh)
  • +248 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #189 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

agent-sort capabilities & compatibility

Capabilities
analyze repo stack from manifests and source fil · classify multi type components (skills, commands · generate evidence tables linking decisions to gr · create install plans with action items · build optional skill library routers for searcha · verify installs match repo stack
Works with
github
Use cases
devops · ci cd · refactoring
Platforms
macOS · Windows · Linux · WSL
Runs
Runs locally
Pricing
Free
npx skills add https://github.com/affaan-m/everything-claude-code --skill agent-sort

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.2k
repo stars238k
Security audit3 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

What it does

Classify ECC components into DAILY vs LIBRARY buckets using repo evidence to create project-specific install plans.

Who is it for?

Multi-skill ECC projects with mixed stacks; teams wanting transparent install decisions; repos that need cleanup after stack drift; enforcing stack-specific surfaces without second install systems

Skip if: Single-language projects; repos with no CI/hook config; projects that prefer full bundle installs; minimal or starter ECC setups

When should I use this skill?

ECC is too noisy for a specific repo; full installs load unused language rules; team wants repeatable, auditable install decisions; stale surfaces remain after stack changes

What you get

A repeatable, evidence-backed install plan that separates DAILY (session-critical) from LIBRARY (reference) components, verified against repo structure and stack.

  • DAILY inventory with evidence citations
  • LIBRARY inventory with justifications
  • Install plan (install/remove/route actions)

By the numbers

  • Executes 6 parallel or sequential review passes: agents, skills, commands, rules, hooks/scripts, extras
  • Uses repo-local evidence sources: file extensions, package managers, CI configs, build scripts, dependency manifests
  • Produces 5 ordered artifacts: DAILY inventory, LIBRARY inventory, install plan, verification report, optional router

Files

SKILL.mdMarkdownGitHub ↗

Agent Sort

Use this skill when a repo needs a project-specific ECC surface instead of the default full install.

The goal is not to guess what "feels useful." The goal is to classify ECC components with evidence from the actual codebase.

When to Use

  • A project only needs a subset of ECC and full installs are too noisy
  • The repo stack is clear, but nobody wants to hand-curate skills one by one
  • A team wants a repeatable install decision backed by grep evidence instead of opinion
  • You need to separate always-loaded daily workflow surfaces from searchable library/reference surfaces
  • A repo has drifted into the wrong language, rule, or hook set and needs cleanup

Non-Negotiable Rules

  • Use the current repository as the source of truth, not generic preferences
  • Every DAILY decision must cite concrete repo evidence
  • LIBRARY does not mean "delete"; it means "keep accessible without loading by default"
  • Do not install hooks, rules, or scripts that the current repo cannot use
  • Prefer ECC-native surfaces; do not introduce a second install system

Outputs

Produce these artifacts in order:

1. DAILY inventory 2. LIBRARY inventory 3. install plan 4. verification report 5. optional skill-library router if the project wants one

Classification Model

Use two buckets only:

  • DAILY
  • should load every session for this repo
  • strongly matched to the repo's language, framework, workflow, or operator surface
  • LIBRARY
  • useful to retain, but not worth loading by default
  • should remain reachable through search, router skill, or selective manual use

Evidence Sources

Use repo-local evidence before making any classification:

  • file extensions
  • package managers and lockfiles
  • framework configs
  • CI and hook configs
  • build/test scripts
  • imports and dependency manifests
  • repo docs that explicitly describe the stack

Useful commands include:

rg --files
rg -n "typescript|react|next|supabase|django|spring|flutter|swift"
cat package.json
cat pyproject.toml
cat Cargo.toml
cat pubspec.yaml
cat go.mod

Parallel Review Passes

If parallel subagents are available, split the review into these passes:

1. Agents

  • classify agents/*

2. Skills

  • classify skills/*

3. Commands

  • classify commands/*

4. Rules

  • classify rules/*

5. Hooks and scripts

  • classify hook surfaces, MCP health checks, helper scripts, and OS compatibility

6. Extras

  • classify contexts, examples, MCP configs, templates, and guidance docs

If subagents are not available, run the same passes sequentially.

Core Workflow

1. Read the repo

Establish the real stack before classifying anything:

  • languages in use
  • frameworks in use
  • primary package manager
  • test stack
  • lint/format stack
  • deployment/runtime surface
  • operator integrations already present

2. Build the evidence table

For every candidate surface, record:

  • component path
  • component type
  • proposed bucket
  • repo evidence
  • short justification

Use this format:

skills/frontend-patterns | skill | DAILY | 84 .tsx files, next.config.ts present | core frontend stack
skills/django-patterns   | skill | LIBRARY | no .py files, no pyproject.toml       | not active in this repo
rules/typescript/*       | rules | DAILY | package.json + tsconfig.json            | active TS repo
rules/python/*           | rules | LIBRARY | zero Python source files             | keep accessible only

3. Decide DAILY vs LIBRARY

Promote to DAILY when:

  • the repo clearly uses the matching stack
  • the component is general enough to help every session
  • the repo already depends on the corresponding runtime or workflow

Demote to LIBRARY when:

  • the component is off-stack
  • the repo might need it later, but not every day
  • it adds context overhead without immediate relevance

4. Build the install plan

Translate the classification into action:

  • DAILY skills -> install or keep in .claude/skills/
  • DAILY commands -> keep as explicit shims only if still useful
  • DAILY rules -> install only matching language sets
  • DAILY hooks/scripts -> keep only compatible ones
  • LIBRARY surfaces -> keep accessible through search or skill-library

If the repo already uses selective installs, update that plan instead of creating another system.

5. Create the optional library router

If the project wants a searchable library surface, create:

  • .claude/skills/skill-library/SKILL.md

That router should contain:

  • a short explanation of DAILY vs LIBRARY
  • grouped trigger keywords
  • where the library references live

Do not duplicate every skill body inside the router.

6. Verify the result

After the plan is applied, verify:

  • every DAILY file exists where expected
  • stale language rules were not left active
  • incompatible hooks were not installed
  • the resulting install actually matches the repo stack

Return a compact report with:

  • DAILY count
  • LIBRARY count
  • removed stale surfaces
  • open questions

Handoffs

If the next step is interactive installation or repair, hand off to:

  • configure-ecc

If the next step is overlap cleanup or catalog review, hand off to:

  • skill-stocktake

If the next step is broader context trimming, hand off to:

  • strategic-compact

Output Format

Return the result in this order:

STACK
- language/framework/runtime summary

DAILY
- always-loaded items with evidence

LIBRARY
- searchable/reference items with evidence

INSTALL PLAN
- what should be installed, removed, or routed

VERIFICATION
- checks run and remaining gaps

Related skills

Forks & variants (1)

Agent Sort has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Pick agent-sort over manual rule pruning when you need systematic, evidence-backed ECC bucket classification across skills, hooks, and commands.

FAQ

What counts as DAILY vs LIBRARY?

DAILY = always-loaded, strongly matched to repo language/framework/workflow (e.g., frontend-patterns in a Next.js repo). LIBRARY = useful to retain but not default-loaded (e.g., Django rules in a TypeScript repo); remain searchable.

How do I cite repo evidence for each classification?

Use file counts (84 .tsx files), config presence (package.json, tsconfig.json, pyproject.toml, Cargo.toml), CI patterns, and build scripts. Link each decision to concrete grep output or manifest markers.

What if the repo uses multiple stacks?

Run parallel review passes for each stack. Promote components to DAILY only if they serve the primary or frequent workflows; demote secondary stacks to LIBRARY unless they're foundational to the team.

Is Agent Sort safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingdevopsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.