List all temp files saved by skim. Use when you need to see what large outputs have been cached or find a specific saved file.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add tonyzdev/skim --skill list --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of List?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/tonyzdev-list)More formats (shields.io, HTML) on the badges page.
---
name: list
description: List all temp files saved by skim. Use when you need to see what large outputs have been cached or find a specific saved file.
---
# List Temp Files
View all files in the skim temp directory.
## Usage
```bash
# List all temp files with details
ls -lah .claude-temp/
# List only JSON files
ls -la .claude-temp/*.json 2>/dev/null || echo "No JSON files"
# List only CSV files
ls -la .claude-temp/*.csv 2>/dev/null || echo "No CSV files"
# List only text files
ls -la .claude-temp/*.txt 2>/dev/null || echo "No text files"
# List with human-readable sizes, sorted by time (newest first)
ls -laht .claude-temp/
# Show file count and total size
echo "Files: $(ls -1 .claude-temp/ 2>/dev/null | wc -l | tr -d ' ')"
du -sh .claude-temp/ 2>/dev/null || echo "Directory empty or not exists"
```
## File Naming Convention
Files are named: `{YYYYMMDD}_{HHMMSS}_{hash}.{ext}`
- Date and time of when the output was saved
- Hash for uniqueness
- Extension indicates format: `.json`, `.csv`, `.yaml`, `.xml`, `.txt`
## When to Use
- To find a previously saved output
- To check how many temp files exist
- Before using `/skim:clean` to see what will be deleted
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!