بنقرة واحدة
code-review
Cross-model code review before every PR. Use this after code is written and before pushing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Cross-model code review before every PR. Use this after code is written and before pushing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
E2E test skill that confirms plugin loading works.
Templates and process for creating devcontainer configurations. Use this when setting up a new project, adding devcontainer support, or creating devcontainers for worktrees.
Procedure for creating a git worktree and devcontainer for a new task. Use this when starting a new development task.
Mandatory checklist before starting implementation. Use this before writing code for any non-trivial task.
Production Dockerfile and container runtime security checklist. Use this when building Docker/Podman images or configuring container deployments.
Step-by-step OWASP Top 10 security review checklist. Use this when reviewing code for security issues, submitting a PR, or when code touches authentication, authorization, data storage, or external communication.
| name | code-review |
| description | Cross-model code review before every PR. Use this after code is written and before pushing. |
Every PR gets a code review before push. No exceptions.
model: "gpt-5.4"model: "claude-opus-4.6"model parameter explicitly when invoking the code-review agent. Never rely on defaults.| Severity | Action |
|---|---|
| Critical/High | Fix before merge. No exceptions. |
| Medium | Fix if within scope. Otherwise create a follow-up issue. |
| Low/Info | Note in PR description. Fix if trivial. |
Real examples from production sessions:
DOCKER_HOST forwarded to all sandbox methods, enabling container escape from bwrapBefore reviewing logic, verify the author ran both linter and formatter:
The implementing agent MUST complete all items before git push. Track these as SQL todos with dependencies when working on stacked PRs.
uv run ruff check && uv run ruff format --check passes (or project equivalent)uv run pytest passes with coverage threshold met (or project equivalent)git branch --show-current confirms correct branch