code-search — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited code-search (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Fast, efficient utilities for searching code and browsing file hierarchies.
Ultra-fast grep alternative that respects .gitignore by default.
Common usage:
rg <pattern> [<path>] # Search for pattern in files
rg -t <type> <pattern> # Search files of specific type
rg --no-ignore <pattern> # Search ignoring .gitignore
rg -w <pattern> # Match whole word
rg -C <num> <pattern> # Show context linesFaster, simpler alternative to find with better defaults and colorized output.
Common usage:
fd <pattern> [<path>] # Find files matching pattern
fd -e <ext> <pattern> # Find by extension
fd -t f <pattern> # Find files only
fd -t d <pattern> # Find directories only
fd --follow <pattern> # Follow symlinksSyntax-highlighting cat with git integration and line numbers.
Common usage:
bat <file> # View file with syntax highlighting
bat --line-range <start:end> <file> # Show specific line range
rg <pattern> | bat --file-name <path> # Syntax highlight search resultsFuzzy filtering and pattern matching for command pipelines.
Common usage:
<command> | fzf --filter <pattern> # Filter output by pattern (non-interactive)
echo -e "file1\nfile2\nfile3" | fzf --filter "file" # Match lines containing "file"
rg <pattern> | fzf --filter <secondary-pattern> # Further filter search resultsDisplay directory structure in tree format.
Common usage:
tree [<path>] # Show tree structure
tree -L <depth> [<path>] # Limit depth
tree -I '<pattern>' # Exclude pattern
tree -a # Include hidden filesrg <primary-pattern> | fzf --filter <secondary-pattern>rg -C 3 <pattern>rg -t ts <pattern> # TypeScript files
rg -t py <pattern> # Python files
rg -t go <pattern> # Go filestree -L 3~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.