local-first — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited local-first (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.
Discover and use local documentation before external fetches. Local sources are authoritative for installed tools and cost zero context tokens.
For any CLI tool or system utility, run discovery BEFORE reaching for external docs. Each step takes <100ms. Stop at the first successful result.
command -v <tool> # exit 0 = installed, no output = not foundman -w <tool> # exit 0 = found, prints path
# exit 1 = no man page → try step 3
man -f <tool> # one-line description (whatis)If a topic has pages in multiple sections, specify the section: man <section> <name>
| Section | Covers | Example |
|---|---|---|
| 1 | Executable programs / shell commands | man 1 bash |
| 5 | File formats and conventions | man 5 crontab |
| 7 | Miscellaneous (macros, conventions) | man 7 regex |
| 8 | System administration commands | man 8 mount |
<tool> --help 2>&1 | head -20 # GNU-style help
<tool> -h 2>&1 | head -20 # Short help
<tool> help 2>&1 | head -20 # Subcommand help (gh, git, pacman)
<tool> <sub> --help 2>&1 | head -20 # Subcommand-specificapropos "<keyword>" # Search all man page descriptions
man -k "<keyword>" # Same as apropos
apropos -s <section> "<keyword>" # Filter by section (1,5,7,8)
# Common: apropos -s 8 for admin commands, -s 5 for config formatsinfo -w <topic> # Locate info page (exit 0 = found)
info <topic> # Read the info page directly
info -f <file> # Read a specific info filepacman -Qo $(which <tool>) # Which package provides this binary
pacman -Ql <pkg> | grep man # Does the package ship man pagesIs the question about... ├─ A CLI tool installed on hinterland? │ └─ Run discovery procedure above → use strongest local source found │ ├─ Infrastructure/hardware troubleshooting? │ └─ Check dmesg, journalctl, sysctl, modinfo FIRST (see below) │ ├─ A library, framework, SDK, or cloud API? │ └─ Local sources unlikely → use skill("find-docs") → ctx7 CLI │ ├─ A GitHub CLI pattern? │ └─ skill("gh-cli-patterns") OR gh --help (discovery: man -w gh) │ ├─ Systemd services or journal? │ └─ man -w systemctl is definitive → use man for directives │ ├─ A project workflow or convention? │ └─ Check AGENTS.md, README.md, .apm/instructions/ │ └─ Local discovery exhausted? └─ Fall back to skill("find-docs") → ctx7, then websearch
For hardware, kernel, and system-level questions, local sources are THE authoritative answer — they match your exact kernel, drivers, and firmware.
# Kernel parameters (matching your running kernel)
sysctl -a | grep <param>
# Kernel module info (matching your loaded modules)
modinfo <module> # Parameters, version, dependencies
lsmod | grep <module> # Is it loaded?
# Hardware detection (matches your actual hardware)
dmesg | grep -i <component> # What the kernel saw at boot
lspci -k | grep -i <device> # Which driver is handling it
lsusb | grep -i <device> # USB device tree
lsblk -f # Block devices + filesystems
# System logging (your actual error messages)
journalctl -xe | grep -i <service>
journalctl -u <unit> --since "1 hour ago"
# Installed package inspection (Arch)
pacman -Qi <pkg> # Version, description, deps, install date
pacman -Ql <pkg> # All files owned by a package
pkgfile <filename> # Which package provides a fileman -w <tool> exits 0| Wrong path | Right path |
|---|---|
| ctx7 for smartctl flags | man -w smartctl finds man8 instantly |
| Websearch "how to mount ext4" | man -w mount + man -w fdisk exist |
| ctx7 for systemd directives | man -w systemd.service is comprehensive |
| Websearch "pacman remove orphan" | pacman --help + man pacman |
| Websearch "nvme drive temperature" | man -w nvme + man -w smartctl |
| ctx7 for React hooks | Correct — library, not CLI tool |
| ctx7 for APM manifest schema | Correct — SDK/library reference |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.