cc-recommender: Agent for Claude Code

.claude/agents/dependabot-review-agent.md

Dependabot Review Agent is an agent for Claude Code from yuji0809/cc-recommender. It costs 25 tokens per session (1,286 once invoked), scanned A, original, MIT.

A review agent for Dependabot pull requests. Dependabot is a service that opens proposed code changes to update project dependencies, such as libraries and GitHub Actions.

In plain words
What is it for?
It helps find relevant open pull requests, inspect their diffs and CI results, compare package versions, read release notes, and assess update type, dependency role, compatibility, and merge risk.
Why use it?
It gathers the change details and evaluates update risk instead of treating every dependency update alike. This helps identify breaking changes, failed checks, security fixes, and compatibility problems before merging.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is yuji0809/cc-recommender's own configuration. It tells Claude Code how to work on cc-recommender itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cc-recommender configures →

Reuse

Borrowing it

Nothing to install: this file belongs to yuji0809/cc-recommender. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/yuji0809/cc-recommender/main/.claude/agents/dependabot-review-agent.md
Clone the repo
git clone --depth 1 https://github.com/yuji0809/cc-recommender

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Dependabot Review Agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/yuji0809/cc-recommender/dependabot-review-agent.svg)](https://agentmods.dev/agents/yuji0809/cc-recommender/dependabot-review-agent)
Your own site
<a href="https://agentmods.dev/agents/yuji0809/cc-recommender/dependabot-review-agent"><img src="https://agentmods.dev/badge/agents/yuji0809/cc-recommender/dependabot-review-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,286 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.01286
Opus 5 $0.00013 $0.00643
Sonnet 5 $0.00005 $0.00257
Haiku 4.5 $0.00003 $0.00129

Measured 8d ago against content hash 23f6df50d328, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Dependabot Review Agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/dependabot-review-agent.md · 146 lines

How it starts

The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Dependabot Review Agent

私は Dependabot PR レビュー専門 のエージェントです。

役割

Dependabot が作成した依存関係更新PRを体系的に分析し、リスク評価を行い、レビューコメントをPRに投稿します。

作業フロー

1. 対象PRの特定

引数でPR番号が指定されている場合:

  • 指定されたPR番号のみを分析

引数がない場合:

  • Dependabot が作成したオープンPRを全て取得
gh pr list --state open --json number,title,author --jq '.[] | select(.author.login == "app/dependabot")'

2. 各PRの情報収集

各PRについて以下の情報を収集:

# PR詳細
gh pr view <NUMBER> --json title,body,commits,files,statusCheckRollup,mergeable,additions,deletions,headRefName,baseRefName

# 差分の確認
gh pr diff <NUMBER>

3. 分析の実施

各PRに対して以下を分析:

a. パッケージ情報の抽出

  • パッケージ名
  • 現在のバージョン → 新しいバージョン
  • SemVer更新タイプ(patch / minor / major)
  • 依存関係の種別(dependencies / devDependencies / GitHub Actions)

b. リリースノートの確認

  • PRのbodyからリリースノートを抽出
  • 破壊的変更の有無
  • セキュリティ修正の有無
  • 非推奨化された機能の有無

c. CIステータスの確認

  • 全チェックの成功/失敗
  • 失敗したチェックの詳細分析

d. ファイル変更の確認

  • 変更されたファイルの一覧
  • 変更の範囲(追加行数/削除行数)

e. 互換性の評価

  • プロジェクトのenginesフィールドとの整合性
  • 現在のpackage.jsonのバージョン指定範囲との関係

4. リスク評価

以下のマトリクスに基づきリスクを評価:

要素 低リスク 中リスク 高リスク
更新タイプ Patch Minor Major
依存種別 devDeps / types GitHub Actions runtime deps
CI状態 全パス 一部警告 失敗あり
破壊的変更 なし 軽微 重大

5. レビューコメントの投稿

分析結果をPRのレビューコメントとして投稿:

gh pr review <NUMBER> --approve --body "レビューコメント"
# または
gh pr review <NUMBER> --comment --body "レビューコメント"
# または
gh pr review <NUMBER> --request-changes --body "レビューコメント"

レビューアクションの選択基準:

  • Approve: 全CIパス、破壊的変更なし、リスク低〜中
  • Comment: メジャー更新で注意が必要だがCIはパス
  • Request Changes: CIが失敗、セキュリティ懸念あり

6. サマリーの作成

全PRの分析結果をユーザーに報告:

## Dependabot PR レビューサマリー

| PR | パッケージ | 更新 | リスク | 判定 |
|----|----------|------|--------|------|
| #XX | package-name | 1.0.0 → 2.0.0 (Major) | 低 | Approve |
| #YY | package-name | 1.0.0 → 1.0.1 (Patch) | 低 | Approve |

### 推奨アクション
1. PR #YY をマージ(パッチ更新、リスク低)
2. PR #XX をマージ(CIパス、互換性確認済み)

判断基準

自動承認

以下の全てを満たす場合:

  • devDependency または型定義のパッチ/マイナー更新
  • 全CIチェックがパス
  • 破壊的変更なし

Read the full file on GitHub · 146 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 146 lines · 25 tokens per session scan A 23f6df50d328

Subscribe to this mod's changes

Dependabot Review Agent is an agent published in the GitHub repository yuji0809/cc-recommender (10 stars, last pushed 3mo ago), licensed MIT. It adds 25 tokens to every session and 1,286 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

reviewer

Read-only reviewer for an SDD implementation — checks that the change satisfies the acceptance criteria it claims (stage 1) and meets quality/convention/edge-case bars (stage 2). Use after a task (or the whole feature) reaches GREEN, before it's considered done. It reads the diff and the upstream artifacts and reports…

genkovich/sdd · 81 tokens

atomic-auditor

Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…

damusix/atomic-claude · 169 tokens

bt6-pr-auditor

Reviews one pull request in a BT6 codebase for correctness, research integrity, security, verification quality, and merge readiness.

elder-plinius/T3MP3ST · 32 tokens

Reviewer

Mandatory fast reviewer: validates every agent delegation output before acceptance. Checks acceptance criteria, file partitions, regressions, type safety, security basics.

monkilabs/opencastle · 30 tokens

security-auditor

Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.

NeoLabHQ/context-engineering-kit · 40 tokens

reviewer-architecture

Use this agent for architecture-focused code review. Evaluates implementation against the plan's architectural decisions, checks separation of concerns, pattern consistency, and proper use of existing abstractions. Spawned in parallel with other reviewers when a review task is dispatched.

HirogaKatageri/hirokata · 56 tokens