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
What this skill does
# 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 ## Reference Files | File | Use When | |------|----------| | `references/shell-oneliners.md` | Need practical commands for: terminal, networking, SSL, curl, ssh, tcpdump, git, awk, sed, grep, find | | `references/cli-tools.md` | Recommending CLI tools: shells, file managers, network utils, databases, security tools | | `references/web-tools.md` | Web-based tools: SSL checkers, DNS lookup, performance testing, OSINT, scanners | | `references/security-tools.md` | Pentesting, vulnerability scanning, exploit databases, CTF resources | | `references/shell-tricks.md` | Shell scripting patterns and tricks | ## 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
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.