Agent skill · Security

hidden-folder-audit

Audit and consolidate hidden folders in a repository. Identifies duplicates, dead directories, and consolidation opportunities for .agent-os/, .ai/, .claude/, and other hidden folders.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill hidden-folder-audit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 16 KB
Bundled scripts: none
Version: 1.2.0
Path: skills/analysis/hidden-folder-audit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hidden Folder Audit Skill Systematic audit and consolidation of hidden (dot) folders in a repository. Identifies duplicate configurations, dead symlinks, orphaned directories, and consolidation opportunities to establish a clean, maintainable folder structure. ## Version Metadata ```yaml version: 1.2.0 python_min_version: '3.10' dependencies: [] compatibility: tested_python: - '3.10' - '3.11' - '3.12' - '3.13' os: - Windows - Linux - macOS ``` ## When to Use - Repository has accumulated multiple hidden folders over time - Multiple AI/agent configuration directories exist (`.agent-os/`, `.ai/`, `.claude/`) - Symlinks point to non-existent targets - Unclear which configuration is authoritative - Preparing for repository restructure or cleanup - After inheriting or forking a repository - Before establishing new folder standards ## Audit Process ### Step 1: Inventory All Hidden Folders List all hidden directories at the repository root. ```bash # List all hidden directories (excluding .git) find . -maxdepth 1 -type d -name ".*" ! -name ".git" | sort # With sizes du -sh .*/ 2>/dev/null | grep -v "^0" | sort -hr # Include symlinks find . -maxdepth 1 \( -type d -o -type l \) -name ".*"

What's inside
Steps it walks through
  1. Version Metadata
  2. When to Use
  3. Audit Process
  4. Step 1: Inventory All Hidden Folders
  5. Step 2: Check Git Tracking Status
  6. Step 3: Analyze Content Overlap
  7. Step 4: Identify Authoritative Source
  8. Step 5: Plan Consolidation
  9. Common Hidden Folders Reference
  10. Related Directory Patterns
  11. specs/archive/
  12. benchmarks/
  13. Consolidation Commands
  14. Migrate .agent-os to .claude
Ships with 1 file
  • metadata.json
Commands it runs
List all hidden directories (excluding .git)
find . -maxdepth 1 -type d -name ".*" ! -name ".git" | sort
With sizes
du -sh .*/ 2>/dev/null | grep -v "^0" | sort -hr
Include symlinks
find . -maxdepth 1 \( -type d -o -type l \) -name ".*" ! -name ".git" | sort
Check if folder is tracked
git ls-files --error-unmatch .folder/ 2>/dev/null && echo "TRACKED" || echo "NOT TRACKED"
Check if folder is ignored
git check-ignore -v .folder/ 2>/dev/null && echo "IGNORED" || echo "NOT IGNORED"
More from claude-skill-registry
All skills →
About this skill
What does the hidden-folder-audit skill do?

Audit and consolidate hidden folders in a repository. Identifies duplicates, dead directories, and consolidation opportunities for .agent-os/, .ai/, .claude/, and other hidden folders.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill hidden-folder-audit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going