Loading...
Loading...
Master of the Modern Utility Toolbelt, specialized in AI-enhanced CLI, structured data transformation, and advanced Unix forensics.
npx skill4agent add yuniorglez/gemini-elite-core utility-progrepsedjqripgrepfzfawksedhttpiexhcatlszfindripgrep# Search for 'auth-error' but only in TSX files, excluding tests
rg "auth-error" -g "*.tsx" -g "!*.test.*" --stats
# Find all 'TODO' comments and export them to a JSON table (Nushell)
rg "TODO" --json | from json | select data.path.text data.lines.textsedfd# Rename 'OldComponent' to 'NewComponent' in all .tsx files
fd -e tsx -x sed -i 's/OldComponent/NewComponent/g' {}xh# POST a JSON payload with headers and follow redirects
xh POST api.squaads.com/v1/sync \
Authorization:"Bearer $TOKEN" \
name="Project X" \
active:=true(?:...)(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})jq# Extract IDs from a nested JSON array where status is 'active'
cat data.json | jq '.projects[] | select(.status == "active") | .id'greprglsgrepfdeza --filterawkrm -rf| Issue | Likely Cause | 2026 Corrective Action |
|---|---|---|
| Search is too slow | Searching | Use |
| JSON parse error | Trailing commas or invalid spec | Use |
| RegEx not matching | Escaping differences (PCRE vs JS) | Use |
| Terminal output garbled | Binary file cat or encoding mismatch | Use |
rgjqxhxh | jq | rgplanning-with-files