query — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited 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.
Query engram's knowledge graph instead of reading files directly. Saves tokens when a structural answer suffices.
The argument is a natural-language question. Run:
engram query "$ARGUMENTS" -p $CLAUDE_PROJECT_DIRThe graph returns a token-budgeted answer with:
represent past failure modes)
If the answer doesn't fully address the question, fall back to reading specific files mentioned in the result.
For a connection between two specific concepts use engram path <source> <target>. For most-connected entities use engram gods.
User: "How does authentication work in this project?" You: Run engram query "how does authentication work" -p $CLAUDE_PROJECT_DIR. Read the structured response. Cite the relevant nodes (function names, file paths). If the answer mentions specific files, those are good candidates for a follow-up Read — but only if the structural view leaves a question.
User: "What calls validateToken?" You: Run engram query "what calls validateToken" -p $CLAUDE_PROJECT_DIR. The graph returns the inbound call sites without you ever Reading those files.
User: "Where is the rate limiter implemented?" You: Run engram query "rate limiter implementation" -p $CLAUDE_PROJECT_DIR. If the answer points at one file, you can Read that file confidently. If it points at three files, ask the user which path matters.
User: "Trace from userController.create to the database write" You: This is a path query, not a free-text query. Use engram path userController.create database.write -p $CLAUDE_PROJECT_DIR. Returns the shortest call chain.
User: "Show me the most-connected files in this codebase" You: Use engram gods -p $CLAUDE_PROJECT_DIR --top 10. Returns the entities with the most graph degree. Useful for "where do I start reading."
engram stats shows 0 nodes) — the project hasn't been indexed yet. Recommend engram init . first.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.