# Csview

> Use this skill when the user wants to pretty-print CSV files, view tabular data in the terminal, or format CSV output with proper alignment.

- Skill: `javimosch/csview` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/csview`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/csview/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/csview

---


# csview Plugin

Pretty and fast CSV viewer for CLI with CJK and emoji support.

## Commands

### CSV
- `csview csv view` — Pretty-print a CSV file

## Usage Examples
- "View a CSV file in a nice table format"
- "Pretty-print CSV data from stdin"
- "View a TSV file"

## Installation

```bash
cargo install csview
```

## Examples

```bash
# View a CSV file
csview data.csv

# Pipe from another command
cat data.csv | csview

# Custom delimiter (TSV)
csview -d '\t' data.tsv

# No headers
csview -H data.csv

# Markdown table output
csview --style markdown data.csv
```

## Key Features
- Small and fast
- Memory efficient
- CJK and emoji character alignment
- TSV and custom delimiter support
- Multiple output styles (ASCII, Markdown, etc.)
- Reads from file or stdin

