# Filesize CLI

> Use this skill when the user wants to check file sizes.

- Skill: `javimosch/filesize-cli` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/filesize-cli`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/filesize-cli/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/filesize-cli

---


# Filesize-CLI Plugin

Calculate and display file sizes.

## Commands

### File Size
- `filesize-cli file size` — Get file size

## Usage Examples
- "filesize-cli file size --file data.txt"
- "filesize-cli file size --file data.txt --human"

## Installation

```bash
npm install -g filesize-cli
```

## Examples

```bash
# Get file size in bytes
filesize data.txt

# Get human-readable size
filesize -h data.txt

# Get size in specific unit
filesize --mb data.txt

# Check multiple files
filesize file1.txt file2.txt

# Use glob pattern
filesize *.txt
```

## Key Features
- File size calculation
- Human-readable format
- Multiple unit options
- Batch file checking
- Glob pattern support

