template-authoring

template-authoring is a skill for Claude Code, Codex from managedcode/dotnet-skills. It costs 157 tokens per session (2,981 once invoked), scanned A, a copy of template-authoring, MIT.

A guide for creating reusable `.NET` project templates from existing projects. It helps set up the `.template.config/template.json` file that describes how the template works.

In plain words
What is it for?
Use it to bootstrap template configuration, preserve project conventions, validate the result, and prepare a template for distribution.
Why use it?
It reduces authoring mistakes when turning a project into a template that can be reused or packaged for NuGet.

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/managedcode/dotnet-skills/template-authoring
Any agent
npx skills add managedcode/dotnet-skills --skill template-authoring
Clone the repo
git clone --depth 1 https://github.com/managedcode/dotnet-skills

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 template-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/managedcode/dotnet-skills/template-authoring.svg)](https://agentmods.dev/skills/managedcode/dotnet-skills/template-authoring)
Your own site
<a href="https://agentmods.dev/skills/managedcode/dotnet-skills/template-authoring"><img src="https://agentmods.dev/badge/skills/managedcode/dotnet-skills/template-authoring.svg" alt="Measured on agentmods" height="20"></a>
Per session 157 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,981 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 86% copy Near-identical to another mod 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.00157 $0.02981
Opus 5 $0.00078 $0.01491
Sonnet 5 $0.00031 $0.00596
Haiku 4.5 $0.00016 $0.00298

Measured today against content hash d602c2d1e122, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

template-authoring 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 today.

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.

Origin

This is a copy

86% identical to template-authoring — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

catalog/Tools/Official-DotNet-Template-Engine/skills/template-authoring/SKILL.md · 219 lines

How it starts

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

Template Authoring

This skill helps an agent create and validate custom dotnet new templates. It guides bootstrapping templates from existing projects and validates template.json files for authoring issues before publishing.

When to Use

  • User wants to create a reusable template from an existing .csproj
  • User wants to validate a template.json they are authoring before publishing
  • User is setting up .template.config/template.json from scratch
  • User wants to package a template for NuGet distribution

When Not to Use

  • User wants to find or use existing templates — route to template-discovery or template-instantiation
  • User has MSBuild issues unrelated to template authoring — route to dotnet-msbuild plugin

Inputs

Input Required Description
Source project path For creation Path to the .csproj to use as template source
template.json path For validation Path to an existing template.json to validate
Template name For creation Human-readable name for the template
Short name Recommended Short name for dotnet new <shortname> usage

Workflow

Rules that change the answer

Use these structures exactly; do not invent fields from other template features.

Deliver the requested artifact. When the user says "show", "write", or "give me the content", put the complete JSON/XML in the final response even if you also wrote it to disk. Never edit this skill's SKILL.md or plugin documentation as a substitute for authoring the user's template. Only create or modify template files when the user requested file changes and the target template/project is present.

Need Correct structure Never use
Conditional XML in a .csproj XML comments such as <!--#if (database == "SqlServer") --> and <!--#endif --> around the complete element bare #if lines, which make the XML invalid
Restore generated projects restore action 210D431B-A78B-4D2F-B762-4ED3E3EA9025; use primaryOutputs, or args.files containing source-template paths/globs run-script fields such as executable on the restore action
Restrict to the SDK host a host constraint whose args is an array containing { "hostname": "dotnetcli" }; its optional version restricts the host/CLI version using host version when the requirement is specifically the active SDK version, the invalid host ID dotnet-cli, or unrelated pattern / value fields
Restrict the active SDK version an sdk-version constraint with a NuGet version/range string in args a machine-specific exact patch unless the template truly requires it
Preserve CPM keep generated PackageReference items versionless and package the owning Directory.Packages.props when the template is self-contained adding inline Version attributes
Package templates a pack project with <PackageType>Template</PackageType> and template content packed below content/ describing a layout without showing the requested project file

Read the full file on GitHub · 219 lines

Files

What ships with it

1 file 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. today Changed · +82 lines d602c2d1e122
  2. yesterday First seen · 137 lines · 157 tokens per session scan A 993098b3ec96

Subscribe to this mod's changes

template-authoring is a skill published in the GitHub repository managedcode/dotnet-skills (477 stars, last pushed today), licensed MIT. It adds 157 tokens to every session and 2,981 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to template-authoring, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

winui-setup

Install and verify the prerequisites the win-dev-skills WinUI 3 toolchain depends on — .NET SDK 8.0.100+, WinApp CLI 0.6+, and Developer Mode. Use only when the user explicitly asks to set up or repair the toolchain. Do not invoke automatically when another skill reports a missing prerequisite; tell the user what is…

microsoft/win-dev-skills · 88 tokens

winui-wpf-migration

Migrate WPF applications to WinUI 3 — namespace replacement (System.Windows → Microsoft.UI.Xaml), control mapping (DataGrid→ListView, WrapPanel→ItemsRepeater, TabControl→TabView), threading (Dispatcher→DispatcherQueue), imaging (System.Drawing→BitmapImage), MVVM conversion to CommunityToolkit.Mvvm, and…

microsoft/win-dev-skills · 100 tokens

opengis-skills

Use when AI coding assistant needs GIS/CAD/C#/AI/IoT/3D domain expertise for 73+ open-source projects. One-stop skill index with tag-based search and on-demand loading for GDAL, GeoServer, QGIS, PostGIS, JTS, CesiumJS, FreeCAD, OpenSCAD, OCCT, NPOI, SqlSugar, Furion, Dify, SuperSplat, Go and more.

znlgis/opengis-skills · 97 tokens

clean-architecture-dotnet

Use when domain logic leaks into API/Infrastructure, project references violate layer boundaries, or you need to decide between CQS (always), CQRS bus (complex domains), and DDD patterns (invariants and events).

SebastienDegodez/copilot-instructions · 50 tokens

creating-dotnet-mcp-servers

Use when building Model Context Protocol (MCP) servers in .NET, configuring tools, transports (SSE/stdio), JSON serialization for AOT, or testing MCP endpoints.

SebastienDegodez/copilot-instructions · 43 tokens

blazor

Use for Blazor Server development with Fluent UI Blazor, Razor components, layouts, pages, scoped UI services, culture switching, localization, forms, loading/empty/error states, and Studio-style dashboard workflows.

AterDev/Perigon.CLI · 45 tokens