sysadmin-toolbox
Tool discovery and shell one-liner reference for sysadmin, DevOps, and security tasks. AUTO-CONSULT this skill when the user is: troubleshooting network issues, debugging processes, analyzing logs, working with SSL/TLS, managing DNS, testing HTTP endpoints, auditing security, working with containers, writing shell scripts, or asks 'what tool should I use for X'. Source: github.com/trimstray/the-book-of-secret-knowledge
Works with
--- name: sysadmin-toolbox description: Tool discovery and shell one-liner reference for sysadmin, DevOps, and security tasks. AUTO-CONSULT this skill when the user is: troubleshooting network issues, debugging processes, analyzing logs, working with SSL/TLS, managing DNS, testing HTTP endpoints, auditing security, working with containers, writing shell scripts, or asks 'what tool should I use for X'. Source: github.com/trimstray/the-book-of-secret-knowledge license: MIT --- # Sysadmin Toolbox Curated tool recommendations and practical shell one-liners for operational work. ## When to Auto-Consult Load relevant references when user is: - Debugging network connectivity, ports, traffic - Troubleshooting DNS or SSL/TLS - Analyzing processes, memory, disk usage - Working with logs or system diagnostics - Writing shell scripts or one-liners - Asking "what's a good tool for..." - Doing security audits or pentesting - Working with containers/Docker/K8s ## Bundled Guides | File | Use When | |------|----------| | `shell-oneliners.md` in this skill's `references` folder | Need practical commands for: terminal, networking, SSL, curl, ssh, tcpdump, git, awk, sed, grep, find | | `cli-tools.md` in this skill's `references` folder | Recommending CLI tools: shells, file managers, network utils, databases, security tools | | `web-tools.md` in this skill's `references` folder | Web-based tools: SSL checkers, DNS lookup, performance testing, OSINT, scanners | | `security-tools.md` in this skill's `references` folder | Pentesting, vulnerability scanning, exploit databases, CTF resources | | `shell-tricks.md` in this skill's `references` folder | Shell scripting patterns and tricks | ## Safety Boundaries - Do not run destructive system commands, privilege-escalation steps, or offensive tooling unless the user explicitly asked for that scope. - Do not scan hosts, domains, or networks the user does not control or have permission to assess. - Do not assume a command is safe to paste into production without explaining what it does. - Do not persist logs, captures, or credentials outside the user's requested troubleshooting workflow. ## Quick Tool Index ### Network Debugging - `mtr` - traceroute + ping combined - `tcpdump` / `tshark` - packet capture - `netstat` / `ss` - connection monitoring - `nmap` - port scanning - `curl` / `httpie` - HTTP testing ### DNS - `dig` / `host` - DNS queries - `dnsdiag` - DNS diagnostics - `subfinder` / `amass` - subdomain enumeration ### SSL/TLS - `openssl` - certificate inspection - `testssl.sh` - TLS testing - `sslyze` - SSL scanning - `certbot` - Let's Encrypt ### Process/System - `htop` / `btop` - process monitoring - `strace` / `ltrace` - syscall/library tracing - `lsof` - open files/connections - `ncdu` - disk usage ### Log Analysis - `lnav` - log navigator - `GoAccess` - web log analyzer - `angle-grinder` - log slicing ### Containers - `dive` - Docker image analysis - `ctop` - container top - `lazydocker` - Docker TUI ## Keeping Current References auto-refresh weekly (Sundays 5am ET) from the upstream repo: ```bash ~/clawd-duke-leto/skills/sysadmin-toolbox/scripts/refresh.sh ``` Manual refresh anytime: ```bash ./scripts/refresh.sh [skill-dir] ``` ## Example Queries → Actions **"Why is this port not responding?"** → Load shell-oneliners.md, search for netstat/ss/lsof commands **"What's a good tool for testing SSL?"** → Load cli-tools.md SSL section, recommend testssl.sh or sslyze **"Show me how to find large files"** → Load shell-oneliners.md, search for find/ncdu/du commands **"I need to debug DNS resolution"** → Load shell-oneliners.md dig section + recommend dnsdiag from cli-tools.md
More Testing skills
tdd
mattpocock/skills
Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.
setup-pre-commit
mattpocock/skills
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
agent-browser
vercel-labs/agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.

