snapshots — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited snapshots (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.
Save, list, and restore note versions using Aicoo OS endpoints.
AICOO_API_KEY must be sethttps://www.aicoo.io/api/v1GET /api/v1/os/snapshots/{noteId}POST /api/v1/os/snapshots/{noteId}POST /api/v1/os/snapshots/{noteId}/restorecurl -s -X POST "https://www.aicoo.io/api/v1/os/snapshots/42" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"label":"Before Q2 update"}' | jq .curl -s "https://www.aicoo.io/api/v1/os/snapshots/42?limit=10" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq .curl -s -X POST "https://www.aicoo.io/api/v1/os/snapshots/42/restore" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"versionId":7}' | jq .Restore auto-backs up current state first.
# 1) backup
curl -s -X POST "$PULSE_BASE/os/snapshots/42" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"label":"Pre-edit backup"}' | jq .
# 2) edit
curl -s -X PATCH "$PULSE_BASE/os/notes/42" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content":"# Updated content..."}' | jq .# list notes in a folder
NOTES=$(curl -s "$PULSE_BASE/os/notes?folderId=5&limit=200" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq -r '.notes[].id')
# backup each
for id in $NOTES; do
curl -s -X POST "$PULSE_BASE/os/snapshots/$id" \
-H "Authorization: Bearer $AICOO_API_KEY" \
-H "Content-Type: application/json" \
-d "{\"label\":\"Pre-sync $(date +%Y-%m-%d)\"}" | jq .success
doneGuest write scope still depends on notesAccess on the share link:
read: can view/search noteswrite: can create notesedit: can edit notes and use snapshots~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.