بنقرة واحدة
ship
Create a PR with performance evidence and proper conventional commit history
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a PR with performance evidence and proper conventional commit history
التثبيت باستخدام 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
Run EggMapper tests — all tests or filtered by class/method name
| name | ship |
| description | Create a PR with performance evidence and proper conventional commit history |
| disable-model-invocation | true |
| user-invocable | true |
| allowed-tools | Bash, Read, Grep, Glob |
Create a pull request for the current feature branch, including benchmark evidence that EggMapper remains the fastest runtime mapper.
$ARGUMENTS — optional PR title override. If empty, auto-generate from branch name and commits.Pre-flight checks:
dotnet build --configuration Release — must succeed with no warningsdotnet test --configuration Release — must be 100% greenmain branchRun key benchmarks for performance evidence:
cd src/EggMapper.Benchmarks && dotnet run -c Release -f net10.0 -- --filter *FlatMappingBenchmark* --exporters markdown
Read the results to include in PR body.
Analyze commits on this branch vs main:
git log main..HEAD --oneline
git diff main...HEAD --stat
Create PR using gh pr create:
## Summary
- What was added/changed (1-3 bullets)
## Performance
| Scenario | EggMapper | AutoMapper | Mapster | Mapperly |
|----------|-----------|------------|---------|----------|
(include key benchmark results)
EggMapper remains the fastest runtime mapper on all scenarios.
## Test plan
- [ ] All existing tests pass
- [ ] New tests cover happy path, edge cases, null handling
- [ ] Benchmarks show no regression
- [ ] EggMapper beats all runtime mappers
Generated with [Claude Code](https://claude.com/claude-code)
Return the PR URL to the user.
main directly