ソース情報
- リポジトリ
- deathrashed/agents
- ソースの最終更新活動
- 2026年7月28日 18:05
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/deathrashed/agents --skill reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Control the in-app Browser for opening, navigating, inspecting visible or interactive page state, clicking, typing, screenshots, and local web testing. It can have existing signed-in sessions. For semantic operations on linked resources, prefer a purpose-built connector, API, or CLI when available.
Control the user's Chrome browser for tasks that depend on existing Chrome state: tabs, logged-in sessions, or extensions. Prefer purpose-built connectors, APIs, or CLIs when available.
Control local Mac apps through Computer Use for tasks that require reading or operating app UI. Prefer purpose-built connectors, APIs, or CLIs when available.
SOC 職業分類に基づく
SKILL.md を表示中
| name | review |
| description | Review code quality with severity categories (Code Reviewer Agent) |
Review request:
Scope: {{args}}
| Scope | Trigger | Mode |
|---|---|---|
| Codebase | "codebase", "full", "all" | Full codebase review |
| Directory | path ends with / | Review all files in dir |
| Feature | feature name | Review related files |
| Security | "security", "audit" | OWASP compliance |
| Types | "types", "any" | TypeScript audit |
| Performance | "performance", "slow" | N+1, indexes |
When triggered with "codebase"/"full"/"all":
Create improvement plan:
plans/YYYYMMDD-review/
├── plan.md # Overview
└── phase-XX-name.md # Detailed fixes
| Category | Count |
|---|---|
| 🔴 Critical | X |
| 🟠 High | X |
| 🟡 Medium | X |
| 🟢 Low | X |
Verdict: ❌ Block merge / ⚠️ Fix recommended / ✅ Ready
Issues that can cause security breaches or data loss.
path/to/file.ts:42// Before
[problematic code]
// After
[fixed code]
Performance, type safety, reliability issues.
path/to/file.ts:15Maintainability, code smells, patterns.
Style, minor improvements.
| Check | Status | Details |
|---|---|---|
| Injection (SQL/NoSQL) | ✅/❌ | [Details] |
| Broken Auth | ✅/❌ | [Details] |
| Sensitive Data Exposure | ✅/❌ | [Details] |
| XSS | ✅/❌ | [Details] |
| Insecure Deserialization | ✅/❌ | [Details] |
| Using Vulnerable Components | ✅/❌ | [Details] |
| Logging & Monitoring | ✅/❌ | [Details] |
any Type Locations| File | Line | Variable | Suggested Type |
|---|---|---|---|
file.ts | 42 | data | UserResponse |
noImplicitAnystrictNullChecksstrictFunctionTypes// Problem: N+1 in loop
for (const user of users) {
const posts = await getPosts(user.id); // ❌ Query in loop
}
// Fix: Batch query
const posts = await getPostsByUserIds(users.map(u => u.id));
users: Add index on emailorders: Add composite index on (user_id, created_at)| Gate | Status | Target |
|---|---|---|
| Test Coverage | X% | 80% |
Zero any Types | X found | 0 |
| Security Scan | ✅/❌ | Pass |
| No Critical Issues | X found | 0 |
# Fix critical issues
/fix [critical security issues]
# Run tests
/test
# Re-review
/review [same scope]
Key Takeaway: Code reviewer prevents production incidents by catching security vulnerabilities, type safety violations, and performance issues before merge.