.NET CLI tools with SKILLS for coding agents.
| Skill | Description |
|---|---|
| ilspy-decompile | Understand .NET implementation details by decompiling assemblies |
Skills are lightweight prompts that teach coding agents how to use CLI tools effectively. They provide:
- Token-efficient workflows that don't bloat LLM context
- Purpose-built commands for specific tasks
- Best practices for common scenarios
- .NET 10 SDK or newer
- Claude Code, GitHub Copilot, or any other coding agent
/plugin marketplace add davidfowl/dotnet-skillz
/plugin install ilspy-decompile@dotnet-skillzmkdir -p .claude/skills/<skill-name>
curl -o .claude/skills/<skill-name>/SKILL.md \
https://raw.githubusercontent.com/davidfowl/dotnet-skillz/main/skills/<skill-name>/SKILL.mdYou can also point your agent directly at a tool's help:
Decompile MyLibrary.dll using dnx ilspycmd.
Check dnx ilspycmd --help for available commands.
To add a new skill:
- Create a folder under
skills/<skill-name>/ - Add a
SKILL.mdfile following the format of existing skills - Update the Available Skills table in this README