rollback — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited rollback (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.
Show the user their deploy history (from /home/ubuntu/deploy_history.jsonl on the EC2 box), let them pick a past version, and re-dispatch the standard sync flow against that historical tarball. Env vars, certificates, and the database stay intact - only the application code reverts.
echo "$NOMETRIA_API_KEY"
echo "$NOMETRIA_TOKEN"
grep -s 'NOMETRIA_API_KEY\|NOMETRIA_TOKEN' .env .env.local 2>/dev/null
cat ~/.nometria/credentials.json 2>/dev/nullIf no token: tell the user to run /login. Stop.
Store: TOKEN="<the token>"
cat nometria.json 2>/dev/nullIf absent, use $ARGUMENTS or list migrations:
curl -s -X POST https://app.nometria.com/listUserMigrations \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d '{}'Store: APP_ID="<app_id>".
curl -s -X POST https://app.nometria.com/getDeployHistory \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d "{\"app_id\": \"$APP_ID\"}"Response shape:
{
"deploys": [
{ "ts": "2026-05-18T20:00:00Z", "s3_path": "s3://...", "health": "passed", "kind": "resync" },
{ "ts": "2026-05-18T15:30:00Z", "s3_path": "s3://...", "health": "passed", "kind": "sync" }
],
"status": "ok"
}If status === "no_history" - tell the user no history has been recorded yet on this app and suggest deploying first so future deploys can be rolled back. Stop.
Display the deploys (newest first, the topmost is the current one). Format:
# Timestamp Health Kind Path
0 2026-05-18T20:00:00Z ✅ pass resync s3://own-my-app/myapp/.../code.tar.gz ← CURRENT
1 2026-05-18T15:30:00Z ✅ pass sync s3://own-my-app/myapp/.../code.tar.gz
2 2026-05-17T09:12:00Z ❌ fail resync s3://own-my-app/myapp/.../code.tar.gz$ARGUMENTS, find the match.health: passed deploy unless the user has reason to go further back.Store: ROLLBACK_S3="<chosen s3_path>".
Tell the user clearly:
Rolling back to <timestamp> (<s3_path>). Your env vars and database stay intact; only the application code reverts. The app will be briefly unavailable during the redeploy.
Dispatch:
curl -s -X POST https://app.nometria.com/getDeployHistory \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d "{\"app_id\": \"$APP_ID\", \"rollback_to\": \"$ROLLBACK_S3\"}"Response:
{ "status": "dispatched", "command_id": "<ssm-id>", "rollback_to": "s3://..." }Tell the user the rollback is dispatched and suggest:
/logs to watch progress/status to see when the instance is back to runningDo all of the above. Execute the curl calls and report results to the user.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.