strings
Files
SKILL.mdagentsreferencesscripts
Install
Install the containing plugin
/plugin install shared-skills@llm-skills
Invoke this skill after installation
/shared-skills:strings
This skill is bundled inside shared-skills. Install the plugin once, then Claude Code can use any of its included skills. Browse the full plugin repository at github.com/alisonaquinas/llm-shared-skills.
SKILL.md
name: strings description: Extract readable text strings from binary files. Use when the agent needs to inspect, analyze, or extract information from binary files or data structures.
Strings
Extract readable text strings from binary files
Quick Start
- Verify
stringsis available:strings --versionorman strings - Establish the command surface:
man stringsorstrings --help - Start with a read-only probe:
strings file
Intent Router
Load only the reference file needed for the active request.
references/install-and-setup.md— Installing strings on macOS, Linux, Windowsreferences/cheatsheet.md— Common options, output formats, usage patternsreferences/advanced-usage.md— Advanced patterns, performance optimizationreferences/troubleshooting.md— Common errors, exit codes, platform differences
Core Workflow
- Verify strings is available:
strings --version - Start with safe, read-only operation:
strings [options] file - Validate output on test data before processing at scale
- Document exact command and flags for reproducibility
Quick Command Reference
strings --version # Check version
strings --help # Show help
strings file # Basic usage
strings file | head # Limit output
man strings # Full manual
Safety Notes
| Area | Guardrail |
|---|---|
| Untrusted input | Validate files from untrusted sources before processing. |
| Large files | May consume memory on large files. Test with smaller samples first. |
| Output handling | Pipe output safely. Binary output may corrupt terminal. |
| Symlinks | Tool may follow or skip symlinks. Check man page for behavior. |
Source Policy
- Treat the installed
stringsbehavior andman stringsas runtime truth. - Use upstream documentation for semantics.
Resource Index
scripts/install.sh— Install strings on macOS or Linux.scripts/install.ps1— Install strings on Windows or any platform via PowerShell.