بنقرة واحدة
slate-review
Terse PR/code review comments. Use for pull requests, diffs, file reviews, and review-comment drafting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Terse PR/code review comments. Use for pull requests, diffs, file reviews, and review-comment drafting.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Compact Conventional Commit generator. Use for commit messages, changelog snippets, and staged-change summaries.
Safe compression for natural-language memory files like AGENTS.md, CLAUDE.md, notes, todos, and preferences. Creates .slate.md output by default.
Compact debugging workflow. Use for failed tests, broken builds, runtime errors, crashes, dependency issues, and unexpected behavior.
Compact patch summary. Use after Codex or Claude Code edits files and the user needs a fast handoff.
Sentence-level language minifier. Removes linguistic slack from agent output while preserving code, commands, errors, and safety context.
Fast token-efficient execution loop for active repo work. Useful for Project X / AG Trade style workflows where agents must stay scoped, safe, and brief.
| name | slate-review |
| description | Terse PR/code review comments. Use for pull requests, diffs, file reviews, and review-comment drafting. |
Review code with location, severity, issue, fix.
<file>:L<line> | <severity> | <issue> | <fix>
Severity values:
bug — broken behaviorrisk — works but fragilesecurity — security/privacy issueperf — performance issuenit — optional style/readabilityquestion — genuine question, not disguised suggestionquestion.consider refactoring comments.Use a normal paragraph for serious security findings, architecture disagreements, or onboarding contexts where the author needs rationale. Then resume terse review lines.
src/auth.ts:L42 | bug | `user` can be null after `.find()` | add guard before `.email`
src/api.ts:L88 | risk | no retry on 429 | wrap request in `withBackoff(3)`
src/cache.ts:L17 | nit | name hides unit | rename `ttl` to `ttlMs`