Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,19 @@
"description": "Skills for running, diagnosing, and migrating .NET tests: test execution, filtering, platform detection, and MSTest workflows."
},
{
"name": "dotnet-aspnet",
"source": "./plugins/dotnet-aspnet",
"name": "dotnet-aspnetcore",
"source": "./plugins/dotnet-aspnetcore",
"description": "ASP.NET Core web development skills including middleware, endpoints, real-time communication, and API patterns."
},
{
"name": "dotnet-blazor",
"source": "./plugins/dotnet-blazor",
"description": "Skills for Blazor development: component authoring, interactivity, and web application patterns."
},
{
"name": "dotnet11",
"source": "./plugins/dotnet11",
"description": "Skills for new .NET 11 APIs and language features."
}
]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-ai/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-ai",
"version": "0.1.0",
"description": "AI and ML skills for .NET: technology selection, LLM integration, agentic workflows, RAG pipelines, MCP, and classic ML with ML.NET.",
"skills": ["./skills/"]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-aspnetcore/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-aspnetcore",
"version": "0.1.0",
"description": "ASP.NET Core web development skills including middleware, endpoints, real-time communication, and API patterns.",
"skills": ["./skills/"]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-blazor/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-blazor",
"version": "0.1.0",
"description": "Skills for Blazor development: component authoring, interactivity, and web application patterns.",
"skills": ["./skills/"]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-data/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-data",
"version": "0.1.0",
"description": "Skills for .NET data access and Entity Framework related tasks.",
"skills": ["./skills/"]
}
7 changes: 7 additions & 0 deletions plugins/dotnet-diag/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-diag",
"version": "0.1.0",
"description": "Skills for .NET performance investigations, debugging, and incident analysis.",
"skills": ["./skills/"],
"agents": ["./agents/optimizing-dotnet-performance.agent.md"]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-experimental/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-experimental",
"version": "0.1.0",
"description": "Experimental skills under active evaluation that may change or graduate to stable plugins.",
"skills": ["./skills/"]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-maui/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-maui",
"version": "0.1.0",
"description": "Skills for .NET MAUI development: environment setup, diagnostics, troubleshooting, navigation, data binding, dependency injection, layout, and theming.",
"skills": ["./skills/"]
}
26 changes: 26 additions & 0 deletions plugins/dotnet-msbuild/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "dotnet-msbuild",
"version": "0.1.0",
"description": "Comprehensive MSBuild and .NET build skills: failure diagnosis, performance optimization, code quality, and modernization.",
"skills": ["./skills/"],
"agents": [
"./agents/build-perf.agent.md",
"./agents/msbuild-code-review.agent.md",
"./agents/msbuild.agent.md"
],
"mcpServers": {
"binlog": {
"type": "stdio",
"command": "dotnet",
"args": [
"dnx",
"Microsoft.AITools.BinlogMcp",
"--yes",
"--prerelease",
"--add-source",
"https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json"
],
"tools": ["*"]
}
}
}
6 changes: 6 additions & 0 deletions plugins/dotnet-nuget/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-nuget",
"version": "0.1.0",
"description": "NuGet and .NET package management skills: dependency management and modernization.",
"skills": ["./skills/"]
}
7 changes: 7 additions & 0 deletions plugins/dotnet-template-engine/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-template-engine",
"version": "0.1.0",
"description": ".NET Template Engine skills for dotnet new: create projects (console app, class library, web API, Blazor, MAUI), discover and search templates, inspect template parameters and frameworks (net8.0, net9.0, net10.0), scaffold solutions, author and validate custom templates, install template packages from NuGet.",
"skills": ["./skills/"],
"agents": ["./agents/template-engine.agent.md"]
}
19 changes: 19 additions & 0 deletions plugins/dotnet-test/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "dotnet-test",
"version": "0.1.0",
"description": "Skills for running, diagnosing, and migrating .NET tests: test execution, filtering, platform detection, and MSTest workflows.",
"skills": ["./skills/"],
"agents": [
"./agents/code-testing-generator.agent.md",
"./agents/code-testing-researcher.agent.md",
"./agents/code-testing-planner.agent.md",
"./agents/code-testing-implementer.agent.md",
"./agents/code-testing-builder.agent.md",
"./agents/code-testing-tester.agent.md",
"./agents/code-testing-fixer.agent.md",
"./agents/code-testing-linter.agent.md",
"./agents/testability-migration.agent.md",
"./agents/test-quality-auditor.agent.md",
"./agents/test-migration.agent.md"
]
}
6 changes: 6 additions & 0 deletions plugins/dotnet-upgrade/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet-upgrade",
"version": "0.1.0",
"description": "Skills for migrating and upgrading .NET projects across framework versions, language features, and compatibility targets.",
"skills": ["./skills/"]
}
7 changes: 7 additions & 0 deletions plugins/dotnet/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet",
"version": "0.1.0",
"description": "Common everyday C#/.NET coding skills. Expected to be useful to all .NET developers.",
"skills": ["./skills/"],
"lspServers": "./lsp.json"
}
6 changes: 6 additions & 0 deletions plugins/dotnet11/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "dotnet11",
"version": "0.1.0",
"description": "Skills for .NET 11 APIs and language features.",
"skills": ["./skills/"]
}