一键导入
pos-review
Code review composite — PR review, architecture review, and diff analysis with persistent review patterns. Replaces 7 fragmented review skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Code review composite — PR review, architecture review, and diff analysis with persistent review patterns. Replaces 7 fragmented review skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
ProductionOS — dual-target AI engineering operating system for repo-wide audits, upgrade plans, code reviews, strategic product reviews, security sweeps, UX audits, and recursive quality improvement.
ProductionOS — dual-target AI engineering operating system for repo-wide audits, upgrade plans, code reviews, strategic product reviews, security sweeps, UX audits, and recursive quality improvement.
Ads composite — audit campaigns, create ad copy, optimize bids, and report performance with persistent campaign memory. Replaces 20 fragmented ads skills.
Build composite — brainstorm, plan, implement, and test with project memory. Replaces 6 fragmented build skills.
Content composite — strategy, writing, audit, and refresh with brand voice memory. Replaces 10 fragmented content skills.
Debug composite — reproduce, hypothesize, test, fix with bug pattern memory. Replaces 4 debug skills.
| name | pos-review |
| description | Code review composite — PR review, architecture review, and diff analysis with persistent review patterns. Replaces 7 fragmented review skills. |
| argument-hint | [pr|code|architecture] [PR number, file path, or branch] |
Domain-aware code review pipeline with persistent review patterns. Reviews PRs for bugs and security issues, audits architecture for design flaws, and analyzes diffs for regression risk. Learns from past reviews — common issues in this codebase get flagged faster.
Replaces: review, code-review, review-pr, review-delta, unified-review, github-code-review, requesting-code-review
| Action | What | When to Use |
|---|---|---|
pr [number] | Full PR review with 2-pass (critical + informational) | Before merging any PR |
code [path] | Review specific files or directories | During development |
architecture [target] | Architecture-level review for design patterns and coupling | Before major refactors |
pr if a PR number is detected, code otherwise.~/.productionos/domains/review/Stored at ~/.productionos/domains/review/:
| File | What | Updated |
|---|---|---|
profile.yml | Codebase patterns, common pitfalls, style conventions | First run + auto-updated |
review-history.jsonl | Past reviews with findings, false positives, accepted changes | After every review |
patterns.jsonl | Recurring issues in this codebase (N+1 queries, missing auth, etc.) | Extracted from review history |
suppressions.jsonl | Known acceptable patterns that shouldn't be flagged | Manual + auto-learned |
| Parameter | Values | Default | Description |
|---|---|---|---|
action | pr, code, architecture | auto-detect | Review type |
target | PR number, file path, or branch | required | What to review |
mode | strict, standard, quick | standard | Review depth |
Two-pass PR review (adapted from code-reviewer agent):
Pass 1 — CRITICAL (must fix before merge):
Pass 2 — INFORMATIONAL (improve but don't block):
Output: findings table with severity, file:line, evidence, and fix suggestion.
Focused file/directory review:
System-level review:
| Scenario | Action |
|---|---|
| PR not found | Check number, suggest recent PRs |
| File not found | Search for similar paths |
| No git history | Review files statically without diff context |
| Codebase too large | Focus on changed files + their direct dependencies |
| Finding is a known pattern | Check suppressions — if suppressed, skip silently |