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.
npx skills add ihudak/ihudak-claude-plugins --skill wiki-initgit clone --depth 1 https://github.com/ihudak/ihudak-claude-pluginsWrote 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.
[](https://agentmods.dev/skills/ihudak/ihudak-claude-plugins/wiki-init)<a href="https://agentmods.dev/skills/ihudak/ihudak-claude-plugins/wiki-init"><img src="https://agentmods.dev/badge/skills/ihudak/ihudak-claude-plugins/wiki-init.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00150 | $0.02644 |
| Opus 5 | $0.00075 | $0.01322 |
| Sonnet 5 | $0.00030 | $0.00529 |
| Haiku 4.5 | $0.00015 | $0.00264 |
Grade A, and why
wiki-init 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 335 lines — stays where its author put it; the contents beside it link to each section on GitHub.
wiki-init
Initialize or re-initialize vault integration. Safe to re-run after plugin updates — existing wiki pages and data files are never overwritten.
Step 1 — Resolve VAULT_PATH
VAULT="${VAULT_PATH:-${HOME}/obsidian_vault}"
[ -d "${VAULT}" ] || { echo "ERROR: vault not found at ${VAULT}. Set VAULT_PATH to your vault location."; exit 1; }
echo "Vault: ${VAULT}"
Step 2 — Create .raw/ inbox
mkdir -p "${VAULT}/.raw"
touch "${VAULT}/.raw/.gitkeep"
Step 3 — Bootstrap wiki/ skeleton files
Create the wiki directory and all four skeleton files. Skip any file that already exists — never overwrite existing data.
mkdir -p "${VAULT}/wiki"
wiki/_index.md — create only if absent:
---
type: meta
title: "Wiki Index"
updated: YYYY-MM-DD
---
# Wiki Index
## Concepts
| Page | Summary | Tags | Updated |
|------|---------|------|---------|
## Entities
| Page | Summary | Tags | Updated |
|------|---------|------|---------|
## Decisions
| Page | Summary | Tags | Updated |
|------|---------|------|---------|
## Patterns
| Page | Summary | Tags | Updated |
|------|---------|------|---------|
## Sources
| Page | Summary | Tags | Updated |
|------|---------|------|---------|
wiki/_log.md — create only if absent:
---
type: meta
title: "Ingest Log"
updated: YYYY-MM-DD
---
# Wiki Ingest Log
(Entries prepended by /wiki-ingest, /wiki-save, /wiki-scan, /wiki-lint, /wiki-tags-refresh, /wiki-hot, /wiki-init)
wiki/_manifest.json — create only if absent:
{
"ingested": [],
"last_run": null
}
wiki/hot.md — create only if absent:
# Recent Context
## Last Updated
(never — no wiki sessions yet)
## Current Focus
(none)
## Recent Changes
(none)
Use today's date (YYYY-MM-DD) in the updated: fields of files you create.
Step 4 — Sync wiki-schema to vault
Read skills/wiki-schema/SKILL.md fully.
Create the target directory if needed:
mkdir -p "${VAULT}/.obsidian/copilot"
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.
- 3d ago First seen · 335 lines · 150 tokens per session scan A 8ce2c52ff192
wiki-init is a skill published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed 6d ago), licensed MIT. It adds 150 tokens to every session and 2,644 once invoked, about $0.0007 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-09-05.
Other skills, from other repositories
cdb-scan
Map this codebase into project memory — a code graph of every symbol and how they connect, plus a written profile of stack, layout, conventions and workflows. Re-run any time to refresh both in place. Use when memory is newly installed on an existing project, or when the project has changed enough that the stored map…
ctx-purge
Purge the context-mode knowledge base. Permanently deletes all indexed content and resets session stats. This is destructive and cannot be undone. Trigger: /context-mode:ctx-purge.
ctx-index
Index a local file or directory into context-mode's persistent FTS5 knowledge base so future ctxsearch calls can retrieve focused snippets without rereading raw files. Trigger: /context-mode:ctx-index.
ctx-search
Search context-mode's persistent FTS5 knowledge base for previously indexed local project content, documentation, or session memory. Trigger: /context-mode:ctx-search.
ctx-upgrade
Update context-mode from GitHub and fix hooks/settings. Pulls latest, builds, installs, updates npm global, configures hooks. Trigger: /context-mode:ctx-upgrade.
evolving-status
View Self-Evolving Loop session status, history, and memory metrics.