Search Milan Jovanovic's .NET blog for Clean Architecture, DDD, CQRS, EF Core, and ASP.NET Core patterns. Use for finding applicable patterns, code examples, and architecture guidance. Invoke when working with .NET projects that could benefit from proven architectural patterns.
View on GitHubmelodic-software/claude-code-plugins
milan-jovanovic
plugins/milan-jovanovic/skills/milan-jovanovic-blog/SKILL.md
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/melodic-software/claude-code-plugins/blob/main/plugins/milan-jovanovic/skills/milan-jovanovic-blog/SKILL.md -a claude-code --skill milan-jovanovic-blogInstallation paths:
.claude/skills/milan-jovanovic-blog/# Milan Jovanovic Blog Skill
## Overview
This skill provides access to Milan Jovanovic's curated .NET blog content, filtered to November 2025+ (aligned with .NET 10 GA). It helps developers discover and apply proven patterns for Clean Architecture, Domain-Driven Design, CQRS, Entity Framework Core, and ASP.NET Core.
**Content scope:** Articles published November 2025 and later, with promotional content stripped.
## When to Use This Skill
Use this skill when:
- Working with .NET projects that could benefit from architectural patterns
- Implementing Clean Architecture, DDD, CQRS, or Vertical Slice patterns
- Configuring Entity Framework Core or ASP.NET Core
- Looking for proven .NET code patterns and examples
- Researching .NET 10/Aspire features
## Quick Start
### Search by Keywords
```bash
python scripts/core/find_articles.py search clean architecture cqrs
```
### Filter by Tag
```bash
python scripts/core/find_articles.py tag ef-core
```
### Resolve doc_id to Path
```bash
python scripts/core/find_articles.py resolve milanjovanovic-tech-blog-{slug}
```
### Natural Language Query
```bash
python scripts/core/find_articles.py query "how to implement CQRS"
```
### List Recent Articles
```bash
python scripts/core/find_articles.py list --sort date --limit 10
```
## Tag Taxonomy
| Tag | Description |
| --- | --- |
| `clean-architecture` | Clean/Onion/Hexagonal Architecture patterns |
| `ddd` | Domain-Driven Design (aggregates, value objects, domain events) |
| `cqrs` | Command Query Responsibility Segregation |
| `mediatr` | MediatR library usage patterns |
| `ef-core` | Entity Framework Core optimization and patterns |
| `aspnet-core` | ASP.NET Core patterns and Minimal APIs |
| `modular-monolith` | Modular Monolith architecture |
| `vertical-slice` | Vertical Slice Architecture |
| `dotnet-10` | .NET 10 features and patterns |
| `aspire` | .NET Aspire patterns |
| `result-pattern` | Result pattern for error handling |
| `outbox-pattern` | Transactional