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-tags-refreshgit 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-tags-refresh)<a href="https://agentmods.dev/skills/ihudak/ihudak-claude-plugins/wiki-tags-refresh"><img src="https://agentmods.dev/badge/skills/ihudak/ihudak-claude-plugins/wiki-tags-refresh/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.
<a href="https://agentmods.dev/skills/ihudak/ihudak-claude-plugins/wiki-tags-refresh"><img src="https://agentmods.dev/badge/skills/ihudak/ihudak-claude-plugins/wiki-tags-refresh.svg" alt="Reviewed on agentmods" width="80" 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.00092 | $0.01427 |
| Opus 5 | $0.00046 | $0.00714 |
| Sonnet 5 | $0.00018 | $0.00285 |
| Haiku 4.5 | $0.00009 | $0.00143 |
Grade A, and why
wiki-tags-refresh 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.
How it starts
The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
wiki-tags-refresh
Read skills/wiki-schema/SKILL.md fully before proceeding.
Invoke with: /wiki-tags-refresh [directory]
If no directory argument is given, scan the entire vault (excludes .obsidian/).
Step 1 — Resolve VAULT_PATH and scan scope
Vault path: ~/obsidian_vault by default; set VAULT_PATH to override. WSL users with a Windows-side vault must set VAULT_PATH explicitly (e.g. /mnt/c/Users/<name>/obsidian_vault).
Scan scope: the vault root (default) or the given directory argument.
Step 2 — Read the current tag index
Read .obsidian/copilot/tag-index.md fully. Extract every documented tag (lines matching
`#tagname`).
Step 3 — Collect tags from scanned pages
Scan every .md file under the scan scope for frontmatter tags: entries only.
A broad grep would also match related: wikilinks — use the awk approach below
to stay strictly within the tags: block:
find "<scope>" -name "*.md" -not -path "*/.obsidian/*" -print0 | xargs -0 awk '
FNR==1{front=0; intags=0}
/^---/{if(front==0) front=1; else front=0; next}
!front{next}
/^tags:/{intags=1; next}
/^[a-zA-Z]/{intags=0; next}
intags && /^ - /{gsub(/^ - /, ""); print}
' | sort -u
Note: tags must use the YAML multi-line block form (
tags:followed by- tagnamelines); inline arrays (tags: [a, b]) are silently skipped by this script.-print0/xargs -0is required — vault filenames routinely contain spaces (e.g.Daily/2026-07-13 Standup.md), which would otherwise be word-split into separate, unopenable arguments.
Also collect inline tags from page bodies across the same scope:
grep -roh --exclude-dir=".obsidian" "#[a-zA-Z][a-zA-Z0-9/_-]*" "<scope>" | sort -u
Exclude false positives: markdown headings at line start (^#), code blocks, URLs.
Deduplicate the full collected set.
Step 4 — Diff against tag-index.md
- New tags: found in scanned pages (default: entire vault) but NOT documented in
tag-index.md - Stale candidates: documented in
tag-index.mdbut found in ZERO scanned pages (flag only — never auto-remove; they may be used in other vault files)
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.
- 5d ago First seen · 159 lines · 92 tokens per session scan A bc8531ce3529
wiki-tags-refresh is a skill published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed today), licensed MIT. It adds 92 tokens to every session and 1,427 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-09-05.
Other skills, from other repositories
dummy-dataset
Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Use when creating test data, building mock datasets, or generating sample data for development and demos.
stakeholder-map
Build a stakeholder map using a power/interest grid, identify communication strategies per quadrant, and generate a communication plan. Use when managing stakeholders, preparing for a launch, aligning cross-functional teams, or planning stakeholder engagement.
competitive-battlecard
Create sales-ready competitive battlecards comparing your product against a specific competitor — positioning, feature comparison, objection handling, and win/loss patterns. Use when preparing sales teams, creating competitive materials, or responding to 'why not competitor X?'.
memory
Recall applicable reviewed topic pages or maintain them through separately budgeted mining, learning and curation. Triggers: "memory", "recall prior work", "mine and learn", "curate memory", "qualify or retire a lesson".
sheet-music-publisher
Converts mastered audio to sheet music and creates printable songbooks. Use after mastering when the user wants sheet music or a songbook for their album.
bun-test-mocking
Use for mock functions in Bun tests, spyOn, mock.module, implementations, and test doubles.