help — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited help (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.
How do I do X?
| Need | Go To |
|---|---|
| Run something | # Run |
| Understand code | # Read |
| Fix something | # Debug |
| Check something | # Verify |
| Build something | # Build |
| Find something | # Search |
# Check package.json for scripts
cat package.json | grep -A20 '"scripts"'
# Common commands
npm install
npm run dev
npm test
npm run build
npm start# Edit scripts in package.json
nano package.json# CLI: main file
head -20 bin/*
# Library: main export
grep "^module.exports" lib/*.js | head -10# What does it use?
grep -h "^const\|^import" *.js | sort -u| Error | Fix |
|---|---|
| Cannot find module | npm install |
| Syntax error | Check line number |
| Auth error | Check API keys |
| Port in use | Kill process: lsof -i :port |
# Test the thing
npm test
# Check output
node file.js
# Verify version
node -v
npm -vgrep build package.jsonnpm run build # Frontend
npm run package # Backendnpm publish # npm
git push # deploy# Find string
grep -r "string" .
# Find function
grep -r "function name" .
# Find file
find . -name "*.js"When asking for help, include:
Role: Helper Input: What you need Output: How to do it
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.