vaultr-index-knowledge

vaultr-index-knowledge is a skill for Claude Code, Codex from skoowoo/vaultr-notes. It costs 107 tokens per session (1,059 once invoked), scanned A, original, Apache-2.0.

A knowledge-base indexing tool that creates and updates lists of notes grouped by subject area. Vaultr is the name of the knowledge-base system it works with.

In plain words
What is it for?
Use it to build or refresh domain indexes, organize knowledge files by subject, and find notes that are not yet indexed.
Why use it?
It removes the need to track which notes are already listed and safely adds missing notes when the index is refreshed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build or refresh domain indexes, organize knowledge files by subject, and find notes that are not yet indexed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skoowoo/vaultr-notes/vaultr-index-knowledge
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add skoowoo/vaultr-notes --skill vaultr-index-knowledge
Clone the repo
git clone --depth 1 https://github.com/skoowoo/vaultr-notes

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vaultr-index-knowledge

README.md
[![agentmods](https://agentmods.dev/badge/skills/skoowoo/vaultr-notes/vaultr-index-knowledge/github.svg)](https://agentmods.dev/skills/skoowoo/vaultr-notes/vaultr-index-knowledge)
Your own site
<a href="https://agentmods.dev/skills/skoowoo/vaultr-notes/vaultr-index-knowledge"><img src="https://agentmods.dev/badge/skills/skoowoo/vaultr-notes/vaultr-index-knowledge/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vaultr-index-knowledge

Your own site · 80×15
<a href="https://agentmods.dev/skills/skoowoo/vaultr-notes/vaultr-index-knowledge"><img src="https://agentmods.dev/badge/skills/skoowoo/vaultr-notes/vaultr-index-knowledge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,059 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00107 $0.01059
Opus 5 $0.00053 $0.00530
Sonnet 5 $0.00021 $0.00212
Haiku 4.5 $0.00011 $0.00106

Measured 9d ago against content hash a2c2946a65b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

vaultr-index-knowledge scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/vaultr-index-knowledge/SKILL.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vaultr Index Knowledge

Scans the knowledge directory, finds units not yet in any index, and adds them. Running this skill repeatedly is safe and always converges — it only ever adds missing entries, never rewrites existing ones.

Domain index files live at <knowledge-dir>/_indexes/<Domain>.md. The compile skill matches a note to a domain by the index filename alone (e.g. AI.md, Business.md).

A unit may appear in at most 2 indexes: one primary domain, one secondary only when the unit genuinely straddles two.

Run all steps to completion without stopping. Only speak at the end (Step 4 summary).


Inputs

  • Knowledge directory — default: _knowledge/ (relative to cwd, which is always the vault root)

The index directory is always <knowledge-dir>/_indexes/. Create it if it does not exist.


Step 1 — Find unindexed units

Scan all knowledge units:

find <knowledge-dir> -name "*.md" -not -path "*/_indexes/*" | sort

Scan all existing index files and collect every Path value from their tables:

find <index-dir> -name "*.md" | sort

A unit is unindexed if its vault-absolute path (e.g. /_knowledge/Vertical Agent.md) does not appear in any index table. Build a list of only these units.

If all units are already indexed, report and stop.


Step 2 — Read unindexed units

For each unindexed unit, read its YAML front matter and first non-heading paragraph. Build an internal list:

references/extract.md documents partial-read commands — vaultr extract tag retrieves front-matter tags directly; vaultr extract segment --head N retrieves the opening lines. Use them instead of a full vaultr read when only these fragments are needed.

title          | entity_type | tags          | summary (≤80 chars)                              | vault-absolute path
Vertical Agent | concept     | [ai, agent]   | AI product focused on a specific vertical domain | /_knowledge/Vertical Agent.md
Jane Smith     | person      | [founder, ai] | Founder of SophiaPro, AI startup                 | /_knowledge/Jane Smith.md

Read the full file on GitHub · 98 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 98 lines · 107 tokens per session scan A a2c2946a65b1

Subscribe to this mod's changes

vaultr-index-knowledge is a skill published in the GitHub repository skoowoo/vaultr-notes (90 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 107 tokens to every session and 1,059 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories