Use this skill when the user wants to compare files or directories with a syntax-aware diff tool.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-ee1c35db)More formats (shields.io, HTML) on the badges page.
---
name: difftastic
description: Use this skill when the user wants to compare files or directories with a syntax-aware diff tool.
---
# difftastic Plugin
Structural diff tool that understands syntax across 30+ languages.
## Commands
### Files
- `difftastic files diff` — Compare two files with structural diff
### Directories
- `difftastic dirs diff` — Compare two directories recursively
## Usage Examples
- "Compare two files with syntax-aware diff"
- "Show differences between directories"
- "Diff two source code files"
## Installation
```bash
cargo install difftastic
```
## Examples
```bash
# Compare two files
difft old.rs new.rs
# Side-by-side display
difft --display side-by-side old.py new.py
# Compare directories
difft dir1/ dir2/
# Show in inline format
difft --display inline file1.js file2.js
# Ignore whitespace changes
difft --ignore-comments old.java new.java
```
## Key Features
- Syntax-aware diff for 30+ languages
- AST-based comparison (not just text)
- Side-by-side and inline display modes
- Better diffs for code refactors
- Works with git for improved diffs
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!