dotnet-with-claudecode: Skill for Claude Code

.claude/skills/wpf-dev-pack-release/SKILL.md

wpf-dev-pack-release is a skill for Claude Code from christian289/dotnet-with-claudecode. It costs 59 tokens per session (1,649 once invoked), scanned A, original, MIT.

A release checklist for the wpf-dev-pack plugin. Given a version, it updates version references and prepares the corresponding GitHub release and profile changes.

In plain words
What is it for?
Use it when releasing a new wpf-dev-pack version, either with a specified version or with an automatically increased patch version.
Why use it?
It reduces the chance of missing a version number, release tag, commit, push, or related profile update during publication.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths; positional $N argument.

This is christian289/dotnet-with-claudecode's own configuration. It tells Claude Code how to work on dotnet-with-claudecode itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything dotnet-with-claudecode configures →

Reuse

Borrowing it

Nothing to install: this file belongs to christian289/dotnet-with-claudecode. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/christian289/dotnet-with-claudecode/main/.claude/skills/wpf-dev-pack-release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/christian289/dotnet-with-claudecode

Made for: Claude Code.

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 wpf-dev-pack-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release/github.svg)](https://agentmods.dev/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release)
Your own site
<a href="https://agentmods.dev/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release"><img src="https://agentmods.dev/badge/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release/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 wpf-dev-pack-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release"><img src="https://agentmods.dev/badge/skills/christian289/dotnet-with-claudecode/wpf-dev-pack-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,649 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 10
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00059 $0.01649
Opus 5 $0.00030 $0.00825
Sonnet 5 $0.00012 $0.00330
Haiku 4.5 $0.00006 $0.00165

Measured 9d ago against content hash 7c716bd9cd74, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

wpf-dev-pack-release 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 9d 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.

.claude/skills/wpf-dev-pack-release/SKILL.md · 198 lines

How it starts

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

wpf-dev-pack Release Workflow

Owner-only release tool for the wpf-dev-pack plugin. Execute all steps sequentially without asking for confirmation at each step.

Arguments

  • $0 contains the optional version argument.
  • Version specified (e.g., 1.6.0): Use that exact version.
  • No version specified: Auto-increment patch from current version (e.g., 1.5.01.5.1).

Step 0: Verify GitHub Account

gh auth status

If christian289 is not the active account:

gh auth switch --user christian289

Step 1: Determine Version

Read current version:

cat wpf-dev-pack/.claude-plugin/plugin.json

Determine {new-version}:

  • If $0 contains a semver string → use it as {new-version}
  • Otherwise → increment patch of current version (e.g., 1.5.01.5.1)

Step 2: Update Version in All Files

Update version in these 3 files:

  1. wpf-dev-pack/.claude-plugin/plugin.json"version": "{new-version}"
  2. wpf-dev-pack/README.md — badge version-{new-version}-blue
  3. wpf-dev-pack/README.ko.md — badge version-{new-version}-blue

Step 3: Run VersionReleaseChecker

dotnet ".claude/skills/wpf-dev-pack-release/scripts/VersionReleaseChecker.cs" -- --standalone

Fix any issues before proceeding:

  • README MISMATCH: Update README.md and README.ko.md counts, then re-run checker.
  • GITHUB_PROFILE MISMATCH: Will be fixed in Step 8.
  • RELEASE MISSING: Expected — will be created in Step 7.

Step 4: Commit Changes

git add wpf-dev-pack/.claude-plugin/plugin.json wpf-dev-pack/README.md wpf-dev-pack/README.ko.md

Include any other staged changes, then commit:

git add -A
git commit -m "feat(wpf-dev-pack): v{new-version} - {summary of changes since last tag}"

Step 5: Push to Remote

git push origin main

Step 6: Create GitHub Tag

git tag wpf-dev-pack-v{new-version}
git push origin wpf-dev-pack-v{new-version}

Step 7: Create GitHub Release Note

Read the full file on GitHub · 198 lines

Files

What ships with it

2 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. 9d ago First seen · 198 lines · 59 tokens per session scan A 7c716bd9cd74

Subscribe to this mod's changes

wpf-dev-pack-release is a skill published in the GitHub repository christian289/dotnet-with-claudecode (41 stars, last pushed 1mo ago), licensed MIT. It adds 59 tokens to every session and 1,649 once invoked, about $0.0003 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

conventional-commit

Workflow for generating conventional commit messages following the Conventional Commits specification. MUST be invoked every time a commit is created. Guides construction of standardized commit messages with correct type, scope, description, body, and footer.

JanDeDobbeleer/oh-my-posh · 47 tokens

python-release

Handle Python SDK release, build, bump, packaging metadata, PyPI client pin, uv.lock, nox/build workflow, and publish verification changes. Use for Python release process work or dependency pin bumps; do not use for ordinary Python feature implementation.

ComposioHQ/composio · 53 tokens

date-formatter

Converts dates between formats and handles timezone differences.

Azure/azure-sdk-for-net · 13 tokens

release-notes

Generate and publish concise, evidence-based notes in the body of the latest existing GitHub Release. Use only when the user explicitly invokes $release-notes or explicitly asks to update the latest existing GitHub Release body. Do not invoke for general release planning, changelog, tag, or version tasks.

kenryu42/cc-safety-net · 65 tokens

review-gate

Use before an agent-produced diff is committed, pushed, opened as a PR, merged, landed, or applied to user files when explicit implementation approval is missing. Trigger for review gate, review pack, approve before landing, diff first then land, human approval, merge gate, commit gate, push gate, or PR readiness.…

majiayu000/spellbook · 95 tokens

ai-visibility-writing

Audit, question, suggest, or fact-preservingly revise a press release, blog post, contributed article, or expert explainer so AI answer systems can more easily retrieve, understand, quote, and cite its useful information. Use when someone asks for AI visibility, AI search, answer-engine, AEO, GEO, AI Overview, or…

elvisun/newsjack · 137 tokens