applying-template-updates

applying-template-updates is a skill for Claude Code, Codex from pvliesdonk/markdown-vault-mcp. It costs 81 tokens per session (1,062 once invoked), scanned A, original, MIT.

A procedure for applying updates from a project template’s weekly update pull request. It covers upgrade notes, conflict resolution, and checking files that were initially copied into the project.

In plain words
What is it for?
Use it to read the update instructions, apply safe changes, resolve permitted conflicts, and report skipped work that still needs a person.
Why use it?
It prevents template upgrades from being applied mechanically when notes, conflicts, secrets, or project-specific changes need human judgment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to read the update instructions, apply safe changes, resolve permitted conflicts, and report skipped work that still needs a person.

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

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 applying-template-updates

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/pvliesdonk/markdown-vault-mcp/applying-template-updates"><img src="https://agentmods.dev/badge/skills/pvliesdonk/markdown-vault-mcp/applying-template-updates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,062 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.00081 $0.01062
Opus 5 $0.00041 $0.00531
Sonnet 5 $0.00016 $0.00212
Haiku 4.5 $0.00008 $0.00106

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

Security

Grade A, and why

applying-template-updates 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 6d 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/applying-template-updates/SKILL.md · 89 lines

How it starts

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

Applying template updates

docs/deployment/template-updates.md explains the update; this skill is the procedure. Work on the copier/update branch the workflow opened (or the branch where copier update --trust was run). Stop and ask, rather than guess, at three points: a conflict hunk inside a sentinel block, an upgrade note you cannot perform (a secret, a repository setting), and a seeded-file change you are not certain applies to this project. Report at the end: what you applied, what you skipped and why, and what is left for a human.

1. Read the pull request body

Extract from it: the previous and target template refs, the compare link, the UPGRADING.md sections for the jump, and the list of files with conflict markers. If the body has no upgrade notes, fetch UPGRADING.md at the target ref from the template repository — it is an index whose released ## vX.Y sections point at per-minor upgrading/vX.Y.md files — and fetch every per-minor file from the previous ref's minor through the target's, reading each one whole. Never grep or tail your way through them: each file is complete for its minor, and the index enumerates which files a jump needs.

2. Apply every upgrade note

Each section is an instruction to a person. Perform it on the branch: renames, rewritten seeded tests, .gitignore lines, uv lock. A note you cannot perform (a secret to add, a repository setting to change) is a stop point: list it for the human. Do not skip a note because the project looks unaffected; check, then say so in the report.

3. Resolve conflict markers

Find them with git grep -n '^<<<<<<< before updating$'. A hunk has four marker lines: <<<<<<< before updating (local side), ||||||| last update (common base), =======, >>>>>>> after updating (template side). Resolving means keeping one side and deleting all four markers and the base block. For each hunk:

  • outside a DOMAIN-* / CONFIG-* / PROJECT-* sentinel block, keep the template side and move any local content it displaces into the nearest sentinel block, or note it as a change to propose to the template;
  • inside a sentinel block, stop and ask: the local side is the project's, and a template change in the same place means the sentinel moved.

Read the full file on GitHub · 89 lines

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. 6d ago Changed · +4 lines 6d5bb517064a
  2. 10d ago First seen · 85 lines · 81 tokens per session scan A a8ac40cdee1d

Subscribe to this mod's changes

applying-template-updates is a skill published in the GitHub repository pvliesdonk/markdown-vault-mcp (32 stars, last pushed today), licensed MIT. It adds 81 tokens to every session and 1,062 once invoked, about $0.0004 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

solomd

Read, search, edit, and version-control any folder of Markdown notes via the SoloMD MCP server. 13 tools including AutoGit per-note history, semantic search, and write-with-sandbox via an accept/reject branch. Includes 11 starter agent recipes (weekly review, todo extract, link suggester, …).

zhitongblog/solomd · 69 tokens

hyalo-changelog

Maintain Keep a Changelog files with Hyalo's changelog profile and add/release commands.

ractive/hyalo · 24 tokens

gh-sync

Sync GitHub issues and pull requests into the Distillery knowledge base as searchable, linkable entries.

norrietaylor/distillery · 22 tokens

mnemonic

Search local indexed markdown knowledge bases. Use when the user asks to find notes, dig up a concept from personal docs, cross-reference ideas across wikis, or answer from indexed local files. Triggers on "look up in notes", "search my docs", "what did I write about", "find in my vault", "check my index", "retrieve…

naveenadi/mnemonic · 79 tokens

gh-issues

Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…

the-open-agent/openagent · 116 tokens

github

Use when interacting with GitHub repositories, authentication, remotes, pushes, or repository creation through the GitHub CLI and related git workflows.

the-open-agent/openagent · 30 tokens