viewing-files
Use when viewing source files or documentation with syntax highlighting, previewing files with Git integration, or when enhanced readability would improve code review
Install
mkdir -p .claude/skills/viewing-files && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14949" && unzip -o skill.zip -d .claude/skills/viewing-files && rm skill.zipInstalls to .claude/skills/viewing-files
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when viewing source files or documentation with syntax highlighting, previewing files with Git integration, or when enhanced readability would improve code reviewAbout this skill
bat: Enhanced File Viewer with Syntax Highlighting
Always invoke viewing-files skill for enhanced file viewing - do not execute bash commands directly.
Use bat as a modern replacement for cat with beautiful syntax highlighting, Git integration, and smart features.
When to Use bat vs cat
Use bat when:
- Viewing source code or structured text files
- Syntax highlighting improves readability
- Need Git integration or line numbers
- Working with files >50 lines where highlighting helps
- Previewing changes from other tools
Use cat when:
- Very small files (<10 lines)
- Non-text/binary files
- Simple concatenation without formatting
- When highlighting would add noise
- Performance-critical operations on many tiny files
Common workflow: Any skill → viewing-files skill (preview enhanced output)
Default Strategy
Invoke viewing-files skill for enhanced file viewing with syntax highlighting. Use when viewing source files, documentation, or when syntax highlighting improves readability.
Common workflow: Any discovery skill → viewing-files skill (preview enhanced output).
Key Options
Display Control
-n/--numberline numbers only-p/--plainplain output (no decorations)-A/--show-allshow non-printable characters--line-range START:ENDview specific lines--wrap neverdisable line wrapping--tabs Nset tab width to N spaces
Language & Themes
-l/--language LANGforce language detection--list-languagesshow supported languages--list-themesshow available themes--theme NAMEset color theme (default: Monokai Extended)--theme-dark/--theme-lightauto-switch themes based on terminalBAT_THEMEenvironment variable for default theme
Output Styling
--style COMPONENTScontrol output (numbers,changes,header,grid,snip)--decorations auto|never|alwayscontrol decorations--color always|never|autocontrol coloring
Paging
--paging auto|never|alwayscontrol paging behavior--pager COMMANDset custom pagerBAT_PAGERenvironment variable
Detailed Reference
For comprehensive usage patterns, integration examples, advanced features, and troubleshooting, load bat guide when needing:
- Git integration workflows
- Output styling and customization details
- Theme configuration and options
- Performance optimization tips
- Shell integration examples
The guide includes:
- Core usage patterns and language control
- Git integration workflows
- Output styling and customization
- Integration with other tools (fzf, git, ripgrep)
- Advanced features and configuration
- Performance tips and troubleshooting
Skill Combinations
For Discovery Phase
- finding-files → fuzzy-selecting → viewing-files: Find files, select interactively, view with syntax highlighting
- searching-text → fuzzy-selecting → viewing-files: Search content, select matches, view with highlighting
- querying-json/querying-yaml → fuzzy-selecting → viewing-files: Extract data, select entries, view formatted output
For Analysis Phase
- analyzing-code-structure → viewing-files: Preview structural changes with syntax highlighting
- replacing-text → viewing-files: Preview find-and-replace results before committing
- extracting-code-structure → viewing-files: View extracted code structure with formatting
For Output Preview
- analyzing-code → viewing-files: View code statistics with formatted output
- searching-text → viewing-files: Preview matched files with context highlighting
- querying-json/querying-yaml → viewing-files: View extracted structured data with syntax formatting
Integration Examples
# Interactive file viewer
fd --type file | fzf --preview="bat --color=always --style=numbers {}" --bind="enter:execute(bat {})"