shell-discipline — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited shell-discipline (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.
&&, ;, or cd dir && command. Use separate calls — first cd, then the command.VAR=value command. Set env separately or use proper auth tools.gh auth login / gh auth switch to switch GitHub accounts — never prefix with GH_TOKEN=....Each chained command is one opaque action to the permission layer; splitting them gives one auditable tool call per intent. Inline env vars hide configuration in the command line and leak secrets into shell history; explicit auth tools (gh auth login) keep credentials in the keyring where they belong.
gh CLI installed and authenticated.gh auth login -h github.com interactively, then gh auth status to verify. Don't paste the token into a shell command.gh auth switch -u <user>. If that user's token is invalid, re-auth that account before switching.sudo inline; an unattended agent shouldn't be entering passwords.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.