effective-tool-use — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited effective-tool-use (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.
CRITICAL: Prefer dedicated IDE tools over shell equivalents. They provide better user experience, clearer diffs, and easier permission review.
Always use the dedicated tool instead of its shell equivalent:
| Task | Use This | NOT This |
|---|---|---|
| Find files by pattern | Glob | find, ls -R |
| Search file contents | Grep | grep, rg, ag |
| Read a file | Read | cat, head, tail |
| Edit an existing file | Edit | sed, awk, inline scripts |
| Create / overwrite a file | Write | echo >, cat <<EOF >, tee |
| Communicate with the user | Direct text output | echo, printf |
Reserve the shell (Bash) tool for actual system commands: git, npm, docker, make, curl, test runners, build tools, and other CLI operations that have no dedicated tool equivalent.
Tools differ drastically in token cost. Always narrow before you read:
head_limit to cap results for common terms. Often sufficient without a full file read.For meaning-based queries ("how does authentication work"), check if MCP tools like search_code are available before falling back to broad Grep with keywords and synonyms.
When research spans >5 files, spawn a subagent via the Agent tool to research in an isolated context and return a summary. This prevents context exhaustion in the main session.
Use when operations are independent and can run simultaneously:
git status and git diff at the same time&& chaining in a single Bash call)Use when operations depend on each other:
mkdir -p dir && cp file dir/ — directory must exist before copygit add file && git commit — file must be staged before commitnpm install && npm build — deps before build; chaining)Use only when you need sequential execution but don't care if earlier commands fail:
rm -f old.log ; echo "cleaned" — proceed regardless& to background processes — use the run_in_background parameter instead.run_in_background, you'll be notified when it completes — don't poll.ls to verify the parent directory exists and is the correct location.cd unless the user requests it.--amend would modify the PREVIOUS commit and risk destroying work.--no-verify, --no-gpg-sign) unless the user explicitly asks. If a hook fails, investigate and fix the underlying issue.reset --hard, checkout ., clean -f, branch -D) unless the user explicitly requests them.git add -A or git add ., which can accidentally include secrets or binaries.git commit -m "$(cat <<'EOF'
Commit message here.
EOF
)"-i) like git rebase -i or git add -i — they require terminal input that isn't supported.When running in a sandboxed environment:
$TMPDIR for temporary files, NOT /tmp directly. The sandbox sets $TMPDIR to the correct writable directory.run_in_background for commands you don't need results from immediately. You'll be notified when they complete — no polling needed.CRITICAL REMINDER: Use dedicated IDE tools over shell equivalents. Narrow searches with Glob/Grep before reading full files. Read before editing. Never skip git hooks or force-push without explicit user consent.
codebase-exploration patterns for systematic investigation.disciplined-coding scope and verification standards.prompt-engineering patterns.If user-config.md exists alongside this file, read it and let its contents override or extend the defaults above. Common customizations:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.