npx skills add smithery/rysweet --skill dotnet10-pack-tool
rysweet/amplihack · Archived
dotnet10-pack-tool
Creates hybrid Native AOT + CoreCLR .NET 10 tool packages using ToolPackageRuntimeIdentifiers. Use for building high-performance CLI tools with Native AOT on supported platforms and CoreCLR fallback for universal compatibility.
Installation
npx skills add rysweet/amplihack --skill dotnet10-pack-tool
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Analyzes events through cybersecurity lens using threat modeling, attack surface analysis, defe…
1.3K installsAnalyzes events through legal lens using statutory interpretation, case law analysis, legal rea…
682 installsAnalyzes events through psychological lens using cognitive psychology, social psychology, devel…
440 installsConverts architecture descriptions, module specs, or workflow docs into Mermaid diagrams. Use w…
425 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from rysweet/amplihack · top by installs.
npx skills add rysweet/amplihack
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,919 B -
docs
SUMMARY.md253 B
History
- First seen on skills.sh
- First recorded snapshot · 128 installs
SKILL.md
.NET 10 Hybrid Pack Tool
Purpose
Guides you through creating hybrid .NET 10 tool packages that combine Native AOT for maximum performance on select platforms with CoreCLR fallback for universal compatibility.
When I Activate
I automatically load when you mention:
- "pack .NET tool" or "dotnet pack AOT"
- "Native AOT tool" or "hybrid .NET tool"
- "ToolPackageRuntimeIdentifiers"
- ".NET 10 tool packaging"
- "cross-platform .NET tool with AOT"
What I Do
- Configure your .csproj with
ToolPackageRuntimeIdentifiersandPublishAot=true - Generate the pointer package (metapackage)
- Build Native AOT packages for each target RID
- Create CoreCLR fallback with
-r any - Validate package structure
Quick Start
Step 1: Configure .csproj
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Package as .NET Tool -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>your-tool-name</ToolCommandName>
<!-- RIDs: CoreCLR fallback + Native AOT targets -->
<ToolPackageRuntimeIdentifiers>any;osx-arm64;linux-arm64;linux-x64</ToolPackageRuntimeIdentifiers>
<!-- Enable Native AOT -->
<PublishAot>true</PublishAot>
</PropertyGroup>
<!-- Native AOT optimizations -->
<PropertyGroup Condition="'$(PublishAot)' == 'true'">
<InvariantGlobalization>true</InvariantGlobalization>
<OptimizationPreference>Size</OptimizationPreference>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
</Project>
Step 2: Build Packages
# 1. Create pointer package (no binaries, just metadata)
dotnet pack -o ./packages
# 2. Build Native AOT for each target platform
dotnet pack -r osx-arm64 -o ./packages # On macOS
dotnet pack -r linux-arm64 -o ./packages # On Linux ARM or container
dotnet pack -r linux-x64 -o ./packages # On Linux x64 or container
# 3. Create CoreCLR fallback for all other platforms
dotnet pack -r any -p:PublishAot=false -o ./packages
Step 3: Install & Run
dotnet tool install -g your-tool-name
your-tool-name # Auto-selects best package for platform
Key Concepts
| Concept | Description |
|---|---|
| Pointer Package | Metapackage that references RID-specific packages |
| ToolPackageRuntimeIdentifiers | Lists RIDs, creates pointer structure (no auto-build) |
-r any |
CoreCLR fallback for unlisted platforms |
-p:PublishAot=false |
Disables AOT for CoreCLR fallback |
Why This Pattern Works
PublishAot=truedisables automatic RID package generation (AOT can't cross-compile OSes)ToolPackageRuntimeIdentifierscreates the pointer package structure- Manual
-r <RID>builds produce AOT binaries per platform -r any -p:PublishAot=falsecreates portable CoreCLR fallback
Documentation
- [reference.md](./reference.md): Complete build script, container builds, CI/CD patterns
- [examples.md](./examples.md): Real-world examples and troubleshooting
Requirements
- .NET 10 SDK installed
- Docker (for cross-platform Linux builds from macOS/Windows)
- AOT-compatible container:
mcr.microsoft.com/dotnet/sdk:10.0-noble-aot