audit-general — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited audit-general (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.
Is everything okay?
When you don't know what to check, check this.
# Is it up?
curl localhost:3000/health
# Does it respond?
echo "ping" | nc localhost 3000| Check | Response |
|---|---|
| HTTP 200 | OK |
| Other | Issue |
| Timeout | DOWN |
# Are deps working?
npm outdated
npm audit| Check | Issue |
|---|---|
| Vulnerabilities | Fix |
| Outdated | Update |
| Missing | Install |
# Basic checks
grep -rn "password\|secret\|key" . --include="*.js"| Check | Issue |
|---|---|
| Secrets in code | Remove |
| Default creds | Change |
| No HTTPS | Add |
# Quick checks
npm run lint
npm test| Check | Issue |
|---|---|
| Lint errors | Fix |
| Test fails | Fix |
| No tests | Add |
## General Audit
### Health
- [OK/ISSUE] Service: [response]
### Dependencies
- [OK/ISSUE] Vulnerabilities: [count]
- [OK/ISSUE] Outdated: [count]
### Security
- [OK/ISSUE] Secrets: [found]
### Quality
- [OK/ISSUE] Lint: [errors]
- [OK/ISSUE] Tests: [pass/fail]Role: General Auditor Input: Anything Output: Everything OK?
When in doubt, check it out.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.