一键导入
test
Run EggMapper tests — all tests or filtered by class/method name
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run EggMapper tests — all tests or filtered by class/method name
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implement a new feature following EggMapper's performance-first development loop
Manage pull requests — list open PRs, check CI status, view details, or merge
Run EggMapper benchmarks and analyze performance against competitors
Inspect and debug EggMapper's compiled expression trees for a type pair
Verify no performance regression after code changes — compares before/after benchmarks
Create a PR with performance evidence and proper conventional commit history
| name | test |
| description | Run EggMapper tests — all tests or filtered by class/method name |
| disable-model-invocation | true |
| user-invocable | true |
| allowed-tools | Bash, Read, Grep |
Run EggMapper unit tests with optional filtering.
$ARGUMENTS — optional test filter. Examples:
Flattening → run tests matching "Flattening"EnumConversion → run tests matching "EnumConversion"Map_NullSource → run a specific test methodBuild and run tests:
$ARGUMENTS is empty:
dotnet test src/EggMapper.UnitTests/EggMapper.UnitTests.csproj --configuration Release
$ARGUMENTS is provided:
dotnet test src/EggMapper.UnitTests/EggMapper.UnitTests.csproj --configuration Release --filter "FullyQualifiedName~$ARGUMENTS"
On failure:
On success: Report the pass count concisely. No verbose output needed.