vault

vault is a skill for Claude Code from burakolgun/vault-anything. It costs 23 tokens per session (3,483 once invoked), scanned A, original, MIT.

A tool that turns a project's source code and documents in raw/ into an Obsidian wiki vault. Obsidian is a note-taking app that stores linked pages as files.

In plain words
What is it for?
Use it to document a project, analyze its source code, include static reference documents, and generate the wiki in a chosen workspace and language.
Why use it?
It creates organized, self-contained project notes that people and language models can use without repeatedly reading the whole codebase.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions subagents.

Part of the vault-anything plugin — 2 skills, 2 agents shipped together

Good fit Use it to document a project, analyze its source code, include static reference documents, and generate the wiki in a chosen workspace and language.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/burakolgun/vault-anything/vault
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 burakolgun/vault-anything --skill vault
Clone the repo
git clone --depth 1 https://github.com/burakolgun/vault-anything

Made for: Claude Code.

Or install vault-anything, the plugin that ships this one along with the rest of its 2 skills, 2 agents.

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 vault

README.md
[![agentmods](https://agentmods.dev/badge/skills/burakolgun/vault-anything/vault/github.svg)](https://agentmods.dev/skills/burakolgun/vault-anything/vault)
Your own site
<a href="https://agentmods.dev/skills/burakolgun/vault-anything/vault"><img src="https://agentmods.dev/badge/skills/burakolgun/vault-anything/vault/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 vault

Your own site · 80×15
<a href="https://agentmods.dev/skills/burakolgun/vault-anything/vault"><img src="https://agentmods.dev/badge/skills/burakolgun/vault-anything/vault.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,483 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.
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.00023 $0.03483
Opus 5 $0.00012 $0.01741
Sonnet 5 $0.00005 $0.00697
Haiku 4.5 $0.00002 $0.00348

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

Security

Grade A, and why

vault 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 10d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (resolve-plugin-root.mjs, resolve-workspace.mjs, run-analyze.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/vault/SKILL.md · 357 lines

How it starts

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

/vault-anything:vault

Analyzes a project's source code and any static documents the user has placed under raw/, then generates a Karpathy-style Obsidian wiki vault where every page is self-contained and useful as either human documentation or LLM context.

Arguments

Argument Default Description
project-dir current directory Source code to analyze
--workspace <project>/vault-anything/ Where raw/ and vault/ are written
--lang en Vault page output language (must match a file in locales/)

Phase 0 — Pre-flight

Run the resolvers to get plugin and workspace paths. Save the outputs into shell variables you'll use throughout:

set -e
PLUGIN_ROOT=$(node "$CLAUDE_SKILL_DIR/resolve-plugin-root.mjs")
WORKSPACE=$(node "$PLUGIN_ROOT/skills/vault/resolve-workspace.mjs" "$@")

Parse $WORKSPACE (it's a JSON object) into shell variables with jq:

PROJECT_DIR=$(echo "$WORKSPACE"   | jq -r '.projectDir')
PROJECT_NAME=$(echo "$WORKSPACE"  | jq -r '.projectName')
WORKSPACE_DIR=$(echo "$WORKSPACE" | jq -r '.workspaceDir')
RAW_DIR=$(echo "$WORKSPACE"       | jq -r '.rawDir')
VAULT_DIR=$(echo "$WORKSPACE"     | jq -r '.vaultDir')
EXISTS=$(echo "$WORKSPACE"        | jq -r '.exists')
VAULT_LANG="en"   # parse from --lang argument if user provided one

Decision:

  • If $EXISTS is "true", this project has been analyzed before. Ask the user which path to take:
    • (a) Full re-analysis (all phases run again)
    • (b) Just update what changed → tell the user to run /vault-anything:vault-update instead, then STOP.
    • (c) Skip scan + analyze, regenerate vault from existing raw/ (jump to Phase 3).
  • If $EXISTS is "false", proceed with full analysis.

Set up progress tracking

Before running the phases, use the TaskCreate tool to create a top-level task list the user can watch. The tasks are:

  1. Phase 1: Scan project files
  2. Phase 2: Analyze files
  3. Phase 3: Cluster concepts + write skeleton
  4. Phase 4: Write pages
  5. Phase 5: Quality review

Read the full file on GitHub · 357 lines

Files

What ships with it

6 files 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. 10d ago First seen · 357 lines · 23 tokens per session scan A 6a114b4d26af

Subscribe to this mod's changes

vault is a skill published in the GitHub repository burakolgun/vault-anything (4 stars, last pushed 2mo ago), licensed MIT. It adds 23 tokens to every session and 3,483 once invoked, about $0.0001 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-31.