locus-feedback-327b6b — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited locus-feedback-327b6b (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.
Record quality feedback on the most recent Locus run. Annotates the run's metrics file with a user verdict so retrieval quality can be tracked over time.
Usage: locus-feedback <quality> [note]
Arguments:
quality (required) — pass, partial, or fail (aliases: good/ok/bad)note (optional) — free-text explanationExamples:
locus-feedback pass
locus-feedback partial "Got the right room but missed the port number"
locus-feedback fail "Answered about the wrong service entirely"Map the first argument to a canonical value:
pass or good → "pass"partial or ok → "partial"fail or bad → "fail"If missing or unrecognized, stop and print:
Usage: locus-feedback <pass|partial|fail> [note]Walk up from cwd looking for a directory containing both INDEX.md and _metrics/.
If not found:
Error: no palace found (no _metrics/ directory above current path).
Run from inside a palace directory.ls -t <palace_root>/_metrics/*.json | head -1If empty:
Error: no metrics files found in <palace_root>/_metrics/.
Run a locus query first to generate a metrics file.cat <metrics_file>Check feedback field is null. If already set, warn and overwrite.
Update the feedback field in-place using python3 -c:
python3 -c "
import json, sys
from datetime import datetime, timezone
data = json.load(open('$METRICS_FILE'))
data['feedback'] = {
'quality': '$QUALITY',
'note': $NOTE_JSON,
'recorded_at': datetime.now(timezone.utc).isoformat()
}
json.dump(data, open('$METRICS_FILE', 'w'), indent=2)
"Locus feedback recorded: <quality> → _metrics/<filename>~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.