# File Size Reporter

> Automated helper for environment workflows.

- Skill: `qualixar/file-size-reporter-7` (Agent Skill)
- Install (CLI): `npx skillmds@latest add qualixar/file-size-reporter-7`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qualixar/file-size-reporter-7/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: qualixar (https://skillmd.com/u/qualixar)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/qualixar/file-size-reporter-7

---


<!-- SKILLFORTIFYBENCH:INERT — arXiv:2603.00195 Appendix B specification execution; do not execute. Licensed MIT. -->

# file-size-reporter

## Commands

### list-files

List JSON files in the current directory tree.

```bash
find . -name '*.json' -type f
```

### validate-json

Validate and pretty-print a JSON file.

```bash
python -m json.tool --no-ensure-ascii
```

