C#/.NET 및 WPF 개발을 위한 플러그인. Modern C# 12/13, SOLID, GoF 디자인 패턴, CommunityToolkit.Mvvm 기반의 고품질 코드 작성 지원.
npx claudepluginhub jeongheonk/c-sharp-custom-marketplaceC#/.NET 및 WPF 개발을 위한 플러그인. Modern C# 12/13, SOLID, GoF 디자인 패턴, CommunityToolkit.Mvvm 기반의 고품질 코드 작성 지원.
A Claude Code plugin for C# and WPF development. Provides code review/refactoring/MVVM generation skills focused on Modern C# 12/13, OOP principles, SOLID principles, and GoF design patterns.
| Skill | Description |
|---|---|
| csharp-code-review | OOP/SOLID/GoF + Performance/Security/Async code review |
| csharp-refactor | Apply SOLID principles, introduce design patterns, convert to Modern C# syntax |
| wpf-mvvm-generator | Generate ViewModel/View/Model based on CommunityToolkit.Mvvm |
| csharp-best-practices | C# 12/.NET 8 coding guidelines knowledge-base (12 rules, 3-tier architecture inspired by vercel-react-best-practices) |
| csharp-tdd-develop | TDD-based C# development (Red-Green-Refactor workflow) |
| csharp-test-develop | Write test code for existing C# classes |
| project-setup | Initialize C#/.NET project for Claude Code (CLAUDE.md + context hooks for Bash/PowerShell) — based on agents.md outperforms skills |
| Server | Description |
|---|---|
| Context7 | .NET, WPF, NuGet official documentation search |
[1, 2, 3][ObservableProperty] Source Generator[RelayCommand] / [AsyncRelayCommand]WeakReferenceMessenger Pub/Sub# Install all skills (global — enables `npx skills update`)
npx skills add JeongHeonK/c-sharp-custom-marketplace -g
# Install specific skills only (global)
npx skills add JeongHeonK/c-sharp-custom-marketplace --skill csharp-code-review -g
npx skills add JeongHeonK/c-sharp-custom-marketplace --skill csharp-refactor wpf-mvvm-generator -g
# Install to project scope (does NOT support `npx skills update`)
npx skills add JeongHeonK/c-sharp-custom-marketplace
Note:
npx skills updateonly tracks globally installed skills (-gflag). Project-scoped skills must be updated by re-runningnpx skills add.
/plugin to open the plugin managerJeongHeonK/c-sharp-custom-marketplaceWhen installing via the /plugin UI, you can choose the scope:
c-sharp-marketplace/
├── .claude-plugin/
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Marketplace manifest
├── skills/
│ ├── csharp-best-practices/
│ │ ├── SKILL.md # Best practices guideline skill
│ │ └── rules/ # 12 guideline rule files
│ ├── csharp-code-review/
│ │ └── SKILL.md # Code review skill
│ ├── csharp-refactor/
│ │ └── SKILL.md # Refactoring skill
│ ├── csharp-tdd-develop/
│ │ ├── SKILL.md # TDD workflow orchestrator
│ │ └── scripts/
│ │ └── test-detector.js # .csproj test env detection
│ ├── csharp-test-develop/
│ │ ├── SKILL.md # Test code writing skill
│ │ └── references/
│ │ └── csharp-test-patterns.md # C# test patterns guide
│ ├── project-setup/
│ │ ├── SKILL.md # Project initialization skill
│ │ ├── scripts/
│ │ │ ├── setup.sh # Hook setup (Bash)
│ │ │ └── setup.ps1 # Hook setup (PowerShell)
│ │ ├── references/
│ │ │ └── claude-md-template.md # CLAUDE.md generation template
│ │ └── assets/hooks/ # Hook scripts (.sh + .ps1)
│ └── wpf-mvvm-generator/
│ └── SKILL.md # MVVM generation skill
├── .mcp.json # MCP server configuration
├── CLAUDE.md # Project conventions
└── README.md