Agent Skills
› warpdotdev/oz-for-oss
› review-pr-local
review-pr-local
GitHub为oz-for-oss仓库提供PR代码审查的特定指导,补充核心审查技能中可覆盖类别的细节。涵盖用户界面字符串规范、优雅降级处理及调试上下文保留要求,确保代码质量与用户体验。
Trigger Scenarios
需要针对oz-for-oss仓库进行代码审查时
执行PR Review任务且涉及该仓库特定规范时
Install
npx skills add warpdotdev/oz-for-oss --skill review-pr-local -g -y
SKILL.md
Frontmatter
{
"name": "review-pr-local",
"description": "Repo-specific review guidance for oz-for-oss. Only the categories declared overridable by the core review-pr skill may be specialized here.",
"specializes": "review-pr"
}
Repo-specific review guidance for oz-for-oss
This file is a companion to the core review-pr skill. It does not
redefine the review output schema, severity labels, safety rules, or
evidence rules. It only specializes the override categories the core
skill marks as overridable.
User-facing strings
- Flag interpolated text that would read unnaturally at runtime (e.g. wrong casing after a sentence fragment like "The triage concluded that {summary}").
- Link text should be descriptive (e.g. "triage session on Warp"), not bare URLs or generic "click here" labels.
- Verify that terminology is consistent across related messages in the same PR.
Graceful degradation
- When code renders optional dynamic data (URLs, session links, metadata), flag cases where a missing value would produce empty or broken output. The fix is usually to omit the element entirely and show a short fallback message.
- Prefer starting with generic, user-safe error messages over exposing internal details.
Debugging and observability
- Do not suggest removing session links, workflow URLs, or other debugging context from error paths. These are valuable for post-incident investigation even when the operation failed.
Version History
- 345a0f5 Current 2026-07-24 17:40


