vault-prep

vault-prep is a skill for Claude Code, Codex from pass-agent/loomkin. It costs 17 tokens per session (503 once invoked), scanned A, original, MIT.

A meeting-preparation skill that builds an agenda with background gathered from a connected knowledge base.

In plain words
What is it for?
Use it to collect context, identify open decisions and action items, and prepare a structured meeting agenda.
Why use it?
It saves time spent searching past meetings, follow-up tasks, check-ins, goals, and milestones before a meeting. It can add topics to an existing preparation note or create a new one.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/pass-agent/loomkin/vault-prep
Any agent
npx skills add pass-agent/loomkin --skill vault-prep
Clone the repo
git clone --depth 1 https://github.com/pass-agent/loomkin

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 vault-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/pass-agent/loomkin/vault-prep.svg)](https://agentmods.dev/skills/pass-agent/loomkin/vault-prep)
Your own site
<a href="https://agentmods.dev/skills/pass-agent/loomkin/vault-prep"><img src="https://agentmods.dev/badge/skills/pass-agent/loomkin/vault-prep.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 503 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00017 $0.00503
Opus 5 $0.00009 $0.00251
Sonnet 5 $0.00003 $0.00101
Haiku 4.5 $0.00002 $0.00050

Measured 5d ago against content hash 3d73dd8d5f61, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vault-prep 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 5d 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.

.agents/skills/vault-prep/SKILL.md · 56 lines

What it actually says

Create or update a meeting prep file with topics and auto-gathered context.

Identify Contributor

Who is adding topics? Look for @mentions or ask.

Check for Existing Prep

vault_search(query: "prep", entry_type: "meeting") filtered to today's date.

  • If exists: APPEND MODE — add this person's topics to the existing prep
  • If not: CREATE MODE — gather full context and create new prep

Gather Context (CREATE MODE only)

  1. Recent meetings: vault_search(query: "*", entry_type: "meeting") last 3
    • Extract discussion topics, open action items, decisions
  2. Open follow-ups: vault_kanban(action: "list") filtered to items with meeting sources
  3. Recent checkins: vault_search(query: "*", entry_type: "checkin") since last meeting
    • Summarize as "async updates" — no need to rehash in the meeting
  4. At-risk OKRs: vault_search(query: "*", tags: ["okr"]) — check frontmatter for status
  5. Upcoming milestones: vault_search(query: "milestone", tags: ["in-progress"])

Parse Topics

From user input, extract:

  • Topics they want to discuss
  • Decisions that need to be made
  • Questions they have

Create/Update Entry

CREATE: vault_create_entry(entry_type: "meeting", ...) with prep content, include prep_generated: true and contributors: ["{person}"] in extra_frontmatter

APPEND: vault_update_entry(append: "{person}'s topics:\n- [ ] Topic 1\n- [ ] Topic 2") Also update contributors list in frontmatter.

Check for duplicate topics across contributors — note "(Also raised by {other person})" if similar.

Report

CREATE: Topics added, context gathered (follow-ups count, async updates, at-risk items) APPEND: Topics added, existing agenda summary, current contributors list

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. 5d ago First seen · 56 lines · 17 tokens per session scan A 3d73dd8d5f61

Subscribe to this mod's changes

vault-prep is a skill published in the GitHub repository pass-agent/loomkin (179 stars, last pushed 3mo ago), licensed MIT. It adds 17 tokens to every session and 503 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-30.

Related

Other skills, from other repositories

elixir

Use when writing or refactoring Elixir/OTP on the BEAM — GenServers, supervision trees and restart strategies, pattern matching, mix projects and releases — or when processes misbehave (restart loops, mailbox growth, call timeouts). NOT a Phoenix web app, LiveView, Ecto or channels (that is phoenix).

ericrisco/rsc-harness · 72 tokens

phoenix

Use when building an Elixir web app with Phoenix — contexts, Ecto schemas, changesets and migrations, LiveView, channels and PubSub, the generators, and the boundary between domain logic and the web layer. Covers the classic LiveView over-rendering and Ecto N+1 traps. NOT pure OTP work with no web or Ecto layer …

ericrisco/rsc-harness · 89 tokens

sync-docs

This skill should be used when the user asks to "sync docs", "update guides", "check docs against official", "refresh documentation", "compare guides to official docs", "update docs from upstream", or mentions syncing the SDK documentation guides with the official Claude Agent SDK documentation.

guess/claude_code · 60 tokens

cli-sync

This skill should be used when the user asks to "check CLI schema", "sync CLI version", "check for new CLI options", "update bundled CLI", "compare SDK structs", "check schema drift", "align message structs", "verify CLI compatibility", "check control protocol", or mentions CLI compatibility, schema alignment, or…

guess/claude_code · 100 tokens

code-review

Reviews code changes for quality, security, and best practices.

agentjido/jido_ai · 15 tokens

unit-converter

Converts between common units of measurement including temperature, distance, and weight.

agentjido/jido_ai · 19 tokens