using-infino — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited using-infino (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.
Infino is an embedded retrieval engine over data on object storage: it runs full-text (BM25), vector, hybrid, and SQL search over one copy of the data, in-process, with no separate server. These tools (from the Infino MCP server) operate on a connected catalog of tables.
don't already know the table name.
which column to target and what each result row carries.
names, exact phrases. Ranked BM25. Use when the wording is known.
unknown. Pass filter ({column, query}) to first restrict to rows whose keyword column matches, then rank semantically within them.
Fuses keyword + vector in one ranking pass. A good default when unsure between keyword and semantic.
aggregates, filtering by exact column value. Not for ranked relevance.
rows containing a token, or rows where a column exactly equals a value.
Prefer the dedicated search tools over hand-writing SQL for retrieval — they embed the query and project results for you.
If INFINO_MCP_ENABLE_WRITES is set, three more tools appear: infino_add_documents, infino_update_documents (replace rows matching a SQL predicate, 1:1), and infino_delete_documents. Missing vectors are embedded from the text column automatically. Confirm intent with the user before writing.
must match the embedding model.
_id comes back as a string; use it to fetch or mutate specific rows.infino_describe_table first and pass the column explicitly.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.