New to Claude Skills? Learn how to install them →

Tdotnet on GitHub

Template Authoring

Free

Create and validate custom dotnet new templates efficiently.

by dotnet5.1k stars on dotnet/skills
2 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Template Authoring does

The Template Authoring skill is designed for developers looking to create and validate custom dotnet new templates based on existing projects. It streamlines the process of bootstrapping a reusable template by generating the necessary .template.config/template.json file while preserving the conventions and settings of the source project. This ensures that key properties such as SDK types, package references, and output types are accurately carried over, which is crucial for maintaining project integrity.

Using this skill, you can quickly set up a new template from an existing .csproj, making it easier to share and reuse code across different projects. The skill not only creates the template but also validates the generated template.json file against the required specifications, helping to catch potential issues before publishing. This includes checks for required fields, conflicts with existing short names, and the correct configuration of parameters and post-actions.

Whether you are a developer creating templates for internal use or for broader distribution via NuGet, this skill simplifies the authoring process. It allows you to focus on refining your templates by adding parameters, conditional content, and other customizations. The step-by-step guidance ensures that you can test your templates locally to confirm they work as intended before making them available to others.

Overall, the Template Authoring skill is an essential tool for developers who want to create robust and reusable dotnet templates without the hassle of manual configuration and validation.

When to use it

Use this skill when you need to create a new reusable template from an existing .csproj or validate a template.json before publishing.

When not to use it

Do not use this skill for validating existing templates or for issues unrelated to template authoring.

What you can build with it

Creating a New Template from a Project

You have an existing .csproj and want to create a reusable dotnet template for future projects.

Validating a template.json File

You are authoring a new template and need to ensure the template.json file meets all requirements before publishing.

Packaging Templates for Distribution

You want to package your newly created dotnet template as a NuGet package for others to use.

How to install Template Authoring

View source

1. Install with the skills CLI

npx skills add dotnet/skills/template-authoring --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by dotnet

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

InputRequiredDescription
Source project pathFor creationPath to the .csproj to use as template source
template.json pathFor validationPath to an existing template.json to validate
Template nameFor creationHuman-readable name for the template
Short nameRecommendedShort name for dotnet new <shortname> usage

Workflow

Step 1: Bootstrap from existing project

Analyze the source .csproj and create a .template.config/template.json:

  1. Create .template.config directory next to the project
  2. Generate template.json with identity (reverse-DNS), name, shortName, sourceName (project name for replacement), classifications, and tags
  3. Preserve from source — generic dotnet new templates frequently get these wrong, so verify each is carried over from the original .csproj:
    1. SDK typeMicrosoft.NET.Sdk, Microsoft.NET.Sdk.Web, Microsoft.NET.Sdk.Worker, etc.
    2. Analyzer/package reference metadataPrivateAssets, IncludeAssets, ExcludeAssets
    3. OutputType and other key propertiesTreatWarningsAsErrors, Nullable, LangVersion
    4. CPM participation — no inline Version attributes when a Directory.Packages.props is present
    5. Custom build props/targets and Directory.Build.props conventions
    6. Repo conventions — folder layout, naming, global.json SDK pin

Minimal example:

{
  "$schema": "http://json.schemastore.org/template",
  "author": "MyOrg",
  "classifications": ["Library"],
  "identity": "MyOrg.Templates.MyLib",
  "name": "My Library Template",
  "shortName": "mylib",
  "sourceName": "MyLib",
  "tags": { "language": "C#", "type": "project" }
}

Required output — do not stop at a minimal stub. Write the complete .template.config/template.json for the actual source project, then emit a short conventions-preserved confirmation so the user can see nothing was silently dropped. This carry-over is the whole value of the skill; a generic dotnet new template that loses these is why authoring ties with a hand-written stub.

Source .csproj settingCarried over?How
SDK (Microsoft.NET.Sdk.*)template content .csproj uses same SDK
TreatWarningsAsErrors / Nullable / LangVersionpreserved verbatim in template .csproj
PackageReference PrivateAssets / IncludeAssets / ExcludeAssetsmetadata kept on each reference
CPM (Directory.Packages.props present)no inline Version attributes emitted

Mark any row you intentionally omitted as ⚠️ with a reason — never leave it implicit.

Step 2: Validate template.json

Validate the generated template.json using the template-validation skill (it owns the full rule set — required fields, identity format, reserved shortName conflicts, parameter datatypes, post-actions, constraints, and tags).

Quick summary of what gets checked:

  • Required fieldsidentity, name, and shortName must be present.
  • ShortName conflicts — avoid names that collide with dotnet new subcommands. Read the authoritative set from the Commands: section of dotnet new --help for the installed SDK and do not hardcode it (it can change between versions); illustrative examples from current SDKs are install, uninstall, update, list, search, details, create. A conflict happens because dotnet new <name> would be parsed as the subcommand of the same name. Top-level dotnet verbs like build, run, test, and publish do NOT conflict. Run dotnet new list to confirm the name is not already taken.
  • Parameters, post-actions, tags — see template-validation for the complete rules, including the valid datatype list.

Step 3: Refine the template

Based on validation results and user requirements:

  1. Add parameters with appropriate types (string, bool, choice), defaults, and descriptions
  2. Add conditional content using #if preprocessor directives for optional features
  3. Configure post-actions for solution add, restore, or custom scripts
  4. Set constraints to restrict which SDKs or workloads the template supports
  5. Add classifications and tags for discoverability

Step 4: Test the template locally

dotnet new install ./path/to/template/root
dotnet new mylib --name TestProject --dry-run
dotnet new mylib --name TestProject --output ./test-output
dotnet build ./test-output/TestProject

Validation

  • template.json passes manual validation with zero errors
  • Template identity and shortName are unique and meaningful
  • All parameters have descriptions and appropriate defaults
  • Template can be installed, dry-run, and instantiated successfully
  • Created projects build cleanly with dotnet build
  • Conditional content produces correct output for all parameter combinations

Common Pitfalls

PitfallSolution
Identity format issuesUse reverse-DNS format (e.g., MyOrg.Templates.WebApi). Avoid spaces or special characters.
ShortName conflicts with CLI commandsAvoid names that match a dotnet new subcommand; read the live set from dotnet new --help and don't hardcode it (illustrative examples: install, uninstall, update, list, search, details, create). Top-level verbs like build/run/test/publish are fine. Run dotnet new list to see if the name is already taken.
Missing parameter descriptionsEvery parameter should have a description and displayName for discoverability.
Not testing all parameter combinationsUse dotnet new <template> --dry-run with different parameter values to verify conditional content works correctly.
Hardcoded versions in templateUse sourceName replacement for project names and consider parameterizing framework versions.
Not setting classificationsAdd appropriate classifications (e.g., ["Web", "API"]) for template discovery.

More Info

Frequently asked questions about Template Authoring

Similar skills