Views
No views yet
filesystem-auditor is a pair of high-performance Python scripts designed to scan and analyze repository structures and tech stacks. It handles massive filesystems efficiently using os.scandir and provides detailed Markdown-formatted audits of file types, counts, and sizes. Look at example_output\ forlder for examples.1graph TD
2 A[Repository Path] --> B{Action}
3 B -->|Structure Scan| C[scan_structure.py]
4 B -->|Techstack Scan| D[scan_techstack.py]
5 C --> E[STRUCTURE.md]
6 D --> F[TECHSTACK.md]
7 E --> G[Visual Documentation]
8 F --> G1filesystem-auditor (local)/
2├── scan_structure.py
3└── scan_techstack.py1# Scan directory structure
2python scan_structure.py . --output STRUCTURE.md
3
4# Audit techstack (file types, counts, sizes)
5python scan_techstack.py . --output TECHSTACK.md
![]() |
![]() |
1@misc{albeos2026filesystemauditor,
2 author = {Rembrant Oyangoren Albeos},
3 title = {filesystem-auditor: High-performance repository structure and techstack scanner},
4 year = {2026},
5 publisher = {Hugging Face},
6 journal = {Hugging Face Repository},
7 howpublished = {\url{https://huggingface.co/algorembrant/filesystem-auditor/}}
8}