vault-query — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vault-query (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.
Based on the "compile, don't retrieve" philosophy: look up the index first, read full text to synthesize, write back high-value answers.
1a. Detect vault root — follow ../../_shared/common-steps.md "Vault Detection" section.
1b. Parse user query intent:
Extract from user input:
query: core question or keywordsscope: whether a directory scope was specified (e.g., user mentions a topic that maps to a configured directory)depth: simple lookup ("which article covers X") vs deep synthesis ("compile everything about X")2a. Read index.md:
Read("$VAULT_ROOT/index.md")Scan all entries in index.md — titles, summaries, and tags — to find candidate articles related to the query (typically 3-8).
2b. Supplementary search:
index.md may miss content. Use Grep to supplement:
Grep("{keyword}", path="$VAULT_ROOT", glob="**/*.md")Exclude results from .claude/, .git/, reviews/, index.md.
2c. Determine reading list:
Merge index lookup and Grep results, sort by relevance, finalize the list of articles to read in full.
3a. Read relevant articles in full:
For each article on the reading list, use Read to get full text. Read in parallel for efficiency.
3b. Synthesize the answer:
Choose synthesis mode based on depth:
see [[article-name]])After synthesizing, evaluate whether writing back is warranted:
Worth writing back:
Not worth writing back:
4a. If worth writing back, use AskUserQuestion to ask:
"This query produced valuable synthesized knowledge: {brief description}. Save as a new note? Suggested title: {title}, directory: {dir}/"
Upon user confirmation:
title: synthesis note titledate: today's datetags: 3-8 relevant tagstype: inferred per Type Inference Rules in ../../_shared/common-steps.mdconfidence: cross-article synthesis is typically mediumrelated: source article list ("[[article-name]]" format)summary: 1-3 sentence synthesis summarysource: "Vault Query synthesis"Output to user:
[[wikilink]] citations)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.