Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
managedcode avatar

Template Authoring

  • 18 installs
  • 466 repo stars
  • Updated July 25, 2026
  • managedcode/dotnet-skills

Helps with ai & agent building tasks.

About

template-authoring is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • template-authoring
  • AI & Agent Building
  • AI-coding skill

Template Authoring by the numbers

  • 18 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #10,710 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/managedcode/dotnet-skills --skill template-authoring

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs18
repo stars466
Last updatedJuly 25, 2026
Repositorymanagedcode/dotnet-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

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 for correctness
  • 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" }
}

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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.