Convert To Cpm logo

Convert To Cpm

OrganizationPopular
dotnet
convert-to-cpm

Convert .NET projects and solutions (.sln, .slnx) to NuGet Central Package Management (CPM) using Directory.Packages.props. USE FOR: converting to CPM, centralizing or aligning NuGet package versions across multiple projects, inlining MSBuild version properties from Directory.Build.props into Directory.Packages.props, resolving version conflicts or mismatches across a solution or repository, updating or bumping or syncing package versions across projects. Also activate when packages are out of sync, drifting, or inconsistent -- even without the user mentioning CPM. Provides baseline build capture, version conflict resolution, build validation with binlog comparison, and a structured post-conversion report. DO NOT USE FOR: packages.config projects (must migrate to PackageReference first) or repositories that already have CPM fully enabled.

Overview

Publisherdotnet
Repositoryskills
Skill nameconvert-to-cpm
Stars
5.4K
Forks
416
Bundled files
6
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 6 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by dotnet on GitHub. Read the source before you install it.

Installation

Install the Convert To Cpm AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/dotnet/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/plugins/dotnet-nuget/skills/convert-to-cpm .claude/skills/convert-to-cpm
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Convert To Cpm in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Convert To Cpm on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Convert To Cpm is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Convert to Central Package Management

Centralize package versions in Directory.Packages.props while preserving project behavior and producing reviewable before/after evidence.

Choose a mode first

Do this before running builds or changing files.

  1. Guard mode -- If any in-scope project uses packages.config, stop. Explain that CPM requires PackageReference and recommend migrating first. Do not create or modify files.
  2. Package-maintenance mode -- A request to update, align, bump, or sync packages authorizes those package edits, not CPM conversion. Audit the named scope, resolve the requested versions, update existing project/shared version declarations, and restore/build every affected CLI target from the directory that establishes its applicable global.json. Ask only when the version or alignment policy is ambiguous. Do not create or modify Directory.Packages.props, remove versions for CPM, or capture conversion artifacts. Complete the package work, then recommend CPM as the durable follow-up.
  3. Conversion mode -- Use only when the user explicitly asks to adopt, enable, or convert to CPM. Follow the workflow below.

If the scope is unclear, ask once before proceeding.

Default execution plan

  • Guard: use a minimal scoped detection pass, then answer and stop.
  • Package maintenance: use a compact audit, edit only the requested package versions in their existing locations, validate affected targets, then recommend CPM. Do not read conversion references or enter the conversion workflow.
  • Conversion: batch the preflight, baseline, audit/mutation, final validation, and report work to avoid redundant turns. Revisit a stage only when new CPM-specific evidence requires a targeted follow-up.

This plan is an efficiency default, not a hard cap. Never omit an in-scope project, imported .props/.targets file, detected complexity, required validation, or deliverable to save a turn. Batch complete work where practical.

Inputs

InputRequiredRule
ScopeYesProject, solution, or directory containing the projects to inspect or convert
Conflict strategyFor package maintenance or conversion with conflictsIf the user already supplied a strategy such as "use the highest version," apply it without asking again and record its impact. Otherwise stop after the audit and ask before editing.

Read references only when needed

Never preload all references.

ConditionRead
Entering conversion baseline or producing the package diffbaseline-comparison.md
A conflict, conditional reference, shared import, security concern, or VersionOverride is detectedaudit-complexities.md
Placement is unclear or conditional PackageVersion/VersionOverride is requireddirectory-packages-props.md
A package version uses an MSBuild propertymsbuild-property-handling.md
Restore or build fails after conversionvalidation-and-errors.md
Writing the final reportreport-template.md

Conversion workflow

1. Scope and preflight

  • Resolve the project/solution scope. For a solution, list its projects. For a directory, search only beneath that directory and create an explicit target set that covers the full scope: use each applicable .sln/.slnx, then add each project not covered by a solution. Verify that every in-scope project is covered and avoid duplicate work for projects that occur in more than one target. Ask only when overlapping targets or repository boundaries make the intended coverage ambiguous; never ask the user to select one target when that would omit in-scope projects.
  • Determine CPM management scopes separately from CLI targets. Group projects that will share one central version policy and place one Directory.Packages.props at each group's first common ancestor, while respecting existing nearest-file boundaries. Multiple CLI targets can share one CPM file; independent project groups can require separate files.
  • Check for packages.config; if found, switch to Guard mode and stop.
  • Check the scope and ancestors for Directory.Packages.props. If CPM is already fully enabled, report that and stop. If a partial file exists, preserve it and ask only when its intended scope is ambiguous.
  • Choose one common artifact directory within the resolved scope, normally the targets' first common ancestor. Use explicit paths into it for every binlog, package snapshot, and the report.
  • Run each target's .NET commands from its solution/project directory or another directory that establishes its applicable global.json, not from an unrelated parent workspace.
  • Do not inspect unrelated projects or host-tool configuration when the user supplied a scope.

2. Capture the baseline

Read baseline-comparison.md. For each target, determine the active SDK once from that target's command directory and select the documented command syntax for that version. If SDK resolution fails or the SDK cannot process the requested solution format, stop and report the prerequisite; do not alter the host SDK or repository SDK policy unless the user asks.

Then use one command batch to:

  1. Clean, restore, and build every explicit target. Use baseline.binlog for one target or a unique baseline-<target-key>.binlog for each of multiple targets.
  2. Write resolved packages for every target without restoring again. Use baseline-packages.json for one target or a matching baseline-packages-<target-key>.json for each of multiple targets.
  3. Keep normal command output concise. Save full output to artifacts when useful; inspect only errors on failure and never read the binlog as text.

Finish every baseline before editing. If any baseline build fails, stop without modifying files and preserve all artifacts already produced.

3. Audit with a targeted checklist

Use all baseline snapshots plus one targeted scan of in-scope project, .props, and .targets files. Identify:

  • Package IDs, resolved versions, and consuming projects
  • Version conflicts
  • MSBuild property-based versions and their definitions
  • Conditional PackageReference items
  • Imported files containing package references
  • Existing VersionOverride usage

For a complex scope, complete every applicable item above across all projects and imported files; do not stop after finding the first conflict.

Do not run broad --outdated or --deprecated scans by default. Before editing, attempt a scoped --vulnerable --include-transitive query when the user requested security information, a known advisory must be verified, or conflict resolution will move a project across a major package version. Record the compact findings, "no advisories found," or why the check could not run. If a high-risk check is unavailable because of authentication, package-source, or offline constraints, surface the uncertainty and confirm the user's strategy rather than silently treating it as safe. Do not upgrade beyond the highest version already in scope as part of a CPM conversion.

Present conflicts and their impact. Explicitly classify major-version alignment as high risk and minor/patch alignment as moderate risk without performing an extra online scan. If the user supplied a conflict strategy, proceed. Otherwise ask for the unresolved decisions and stop before editing.

4. Create CPM files and update references

  • Create or update each required Directory.Packages.props at its computed management scope with ManagePackageVersionsCentrally set to true.
  • Add one alphabetically sorted PackageVersion per package, preserving required target-framework conditions.
  • Remove only Version from managed PackageReference items in projects and imported files.
  • Preserve conditions, whitespace, and all other metadata such as PrivateAssets, IncludeAssets, ExcludeAssets, GeneratePathProperty, and Aliases.
  • Use VersionOverride only when the chosen strategy requires it.

For MSBuild version properties, follow msbuild-property-handling.md. When the user directs inlining, include both the literal PackageVersion and removal of the obsolete property definition in the same mutation batch. Before final validation, verify separately that:

  1. No $(PropertyName) references remain in scoped project, .props, or .targets files.
  2. No <PropertyName>...</PropertyName> definition remains for each property chosen for removal.

Do not rely on a $() reference scan to prove that the XML property definition was removed.

5. Validate and compare

Using baseline-comparison.md, validate the final on-disk state after all project, shared-file, and property edits. Use one command batch to:

  1. Clean, restore, and build every explicit target after all CPM edits. Use after-cpm.binlog for one target or a matching after-cpm-<target-key>.binlog for each of multiple targets.
  2. Write resolved packages for every target without restoring again. Use after-cpm-packages.json for one target or a matching after-cpm-packages-<target-key>.json for each of multiple targets.
  3. Produce a compact per-project changes/unchanged comparison without printing or rereading the full JSON files.
  4. If resolved versions changed and the repository exposes a routine, scoped test command for affected projects, run it with --no-build --no-restore and record the result. If tests require substantial setup, broad infrastructure, or user approval, recommend the exact scoped command instead. A version-neutral conversion does not require an automatic test run.

If restore or build fails with a CPM-related error, read validation-and-errors.md, inspect only the relevant error lines, make a targeted correction, and rerun the affected validation. For SDK, authentication, package-source, file-lock, test-host, or other environmental failures, report the blocker instead of changing the machine or expanding the investigation.

If a test run fails after a successful build, inspect only enough output to determine whether CPM package resolution caused it. Apply a targeted correction only when the evidence clearly identifies a CPM defect; otherwise record the failure and recommended user action without expanding into test-host, SDK, output-directory, or dependency-copy debugging.

6. Write the report

Read report-template.md now, not earlier. Create convert-to-cpm.md beside the other artifacts. It must include the six required sections, every explicit target and CPM management scope, concrete conflict impacts, the aggregate package comparison, risk level, follow-ups, artifact usage, and the name of every shared .props/.targets file inspected or changed. In the final response, mention those shared files, the risk level, and how any conditional references and target frameworks were preserved. Avoid rewriting the report after validation unless verification finds an omission or incorrect evidence.

Required conversion artifacts

Preserve the report and every target's four evidence files; they are not temporary files. For one target, the five deliverables are:

  • baseline.binlog
  • after-cpm.binlog
  • baseline-packages.json
  • after-cpm-packages.json
  • convert-to-cpm.md

For multiple targets, replace the four fixed evidence names with unique target-keyed pairs such as baseline-api.binlog, after-cpm-api.binlog, baseline-packages-api.json, and after-cpm-packages-api.json. Keep one aggregate convert-to-cpm.md.

Efficiency rules

  • Batch independent reads and edits when supported.
  • Keep full build logs and package JSON out of the conversation; return compact summaries and artifact paths.
  • Do not repeat successful commands or reread successful output.
  • In conversion mode, do not perform package upgrades, broad outdated/deprecated scans, repeated tests, or unrelated repository exploration. The single conditional vulnerability query and test run defined above are part of complete high-risk conversion validation. Package maintenance can perform the requested upgrades and one scoped version-discovery query needed to resolve them.
  • Do not install or remove an SDK, create a temporary SDK selector, change roll-forward policy, invoke SDK-internal assemblies, kill unrelated processes, or clean host tooling/temp infrastructure. Report an environment prerequisite and stop.

Validation

  • Baseline and converted builds succeeded for every explicit target and all target binlogs exist
  • Every managed PackageReference has no Version, or intentionally uses VersionOverride
  • Every managed package has the correct central PackageVersion
  • Conditions and non-version metadata were preserved
  • Before/after package comparison contains no unexplained changes
  • Inlined version properties have neither remaining $() references nor obsolete XML definitions
  • The report and all per-target baseline and converted artifacts exist

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Convert To Cpm AI skill do?

Convert .NET projects and solutions (.sln, .slnx) to NuGet Central Package Management (CPM) using Directory.Packages.props. USE FOR: converting to CPM, centralizing or aligning NuGet package versions across multiple projects, inlining MSBuild version properties from Directory.Build.props into Directory.Packages.props, resolving version conflicts or mismatches across a solution or repository, updating or bumping or syncing package versions across projects. Also activate when packages are out of sync, drifting, or inconsistent -- even without the user mentioning CPM. Provides baseline build c...

Why use Convert To Cpm on TypingMind?

Because you install it once and use it with any model. Convert To Cpm is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Convert To Cpm in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/dotnet/skills/tree/main/plugins/dotnet-nuget/skills/convert-to-cpm. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Convert To Cpm?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Convert To Cpm?

As many as you like. As long as a model supports skills, you can use Convert To Cpm with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Convert To Cpm AI skill free?

Yes. It is published on GitHub by dotnet under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇