locus-consolidate-af8f9a — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited locus-consolidate-af8f9a (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.
Merges accumulated session logs into canonical room files, enforces size limits, and archives processed logs. Run per room.
Arguments: room path relative to palace root (e.g. projects/my-project). If omitted, auto-detect rooms needing consolidation (Step 1b).
1a — Argument provided:
ls <palace-root>/<room-path>/sessions/
wc -l <palace-root>/<room-path>/<room-name>.mdVerify the room exists and has session logs or exceeds size limits.
1b — No argument (auto-detect):
# Find session dirs with unarchived logs
find <palace-root> -path "*/sessions/*.md" ! -path "*/archived/*" | sort
# Find room main files over 150 lines
find <palace-root> -name "*.md" ! -path "*/sessions/*" | xargs wc -l | awk '$1 > 150'Process qualifying rooms one at a time.
cat <room>/<room-name>.md
ls <room>/sessions/ # list all logs
ls <room>/sessions/archived/ # list already processed (if dir exists)
# Read unprocessed logs oldest-first
for f in $(ls <room>/sessions/*.md | sort); do cat "$f"; doneFrom each session log, collect ### Consolidation Notes content. Build a working list of changes to apply. Newer notes supersede older ones on the same topic. Flag irreconcilable conflicts for review.
For each candidate:
wc -l <canonical-file>mkdir -p <room>/sessions/archived
mv <room>/sessions/YYYY-MM-DD.md <room>/sessions/archived/Leave conflicted logs in place with a comment at the top:
<!-- CONSOLIDATION PENDING: conflicts flagged, requires review -->Check whether the room's description in INDEX.md still reflects its contents. Edit in place if it has drifted. Verify INDEX.md remains under 50 lines:
wc -l <palace-root>/INDEX.mdLocus Consolidate: <room-path>
Session logs processed: <N>
Canonical files updated: <list>
Specialty files created: <list or none>
Logs archived: <N>
Conflicts flagged: <N or none>
Room main file: <final line count> lines
INDEX.md updated: yes/nocp -r skills/codex/locus-consolidate ~/.codex/skills/locus-consolidate~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.