organizing-root-files

Route markdown files from project root to categorized subdirectories.

4|1|Updated Oct 29, 2025
One-click install
npx skills add https://github.com/bacchus-labs/wrangler --skill organizing-root-files
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: organizing-root-files
Source: https://github.com/bacchus-labs/wrangler/tree/main/skills/organizing-root-files
Command: npx skills add https://github.com/bacchus-labs/wrangler --skill organizing-root-files

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill tackles the clutter of markdown files accumulating in a project's root directory, ensuring better organization and maintainability.

Core Features & Use Cases

  • File Routing: Automatically moves markdown files to appropriate subdirectories (memos/, docs/, devops/docs/) based on their content and intended audience.
  • Obsolete Content Removal: Identifies and deletes temporary or irrelevant markdown files.
  • Use Case: After a development sprint, several markdown files like RCA-bug-fix.md, NOTES-testing.md, and DEPLOYMENT-guide.md might be scattered in the root. This Skill will move the RCA and NOTES to memos/, the DEPLOYMENT-guide to devops/docs/, and delete any truly temporary notes.

Quick Start

Organize all markdown files currently located in the project's root directory.

Frequently Asked Questions about organizing-root-files

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically organize markdown files in my project root directory?

You can automatically organize markdown files in the project root by routing them to designated subdirectories like memos, docs, or devops/docs based on content analysis and target audience.

How do I move developer documentation and user documentation out of the root folder?

To move developer and user documentation out of the root folder, parse file content to determine the audience, then route developer docs to devops/docs and user docs to the docs subdirectory.

Can I automatically delete obsolete markdown files from my codebase root?

Yes, you can automatically delete obsolete markdown files from your codebase root by analyzing file content to identify temporary notes or irrelevant documentation and permanently removing them.

What is the best way to clean up temporary markdown notes after a development sprint?

The best way to clean up temporary markdown notes after a sprint is to analyze file content, move relevant memos to a memos subdirectory, and delete obsolete content from the root.

Does root file organization require parsing markdown content to determine the target directory?

Yes, organizing root files requires parsing markdown content to determine the appropriate categorization and destination directory, ensuring files reach the correct audience-specific subdirectory.

When should I avoid automatic file routing for root directory markdown files?

You should avoid automatic file routing for root directory markdown files if your project lacks clearly defined subdirectories for memos, user documentation, and developer documentation, as required by the routing logic.