Agent Skill Bridge Review

Agent Skill Bridge Review is a skill for Claude Code from s977043/river-review. It costs 26 tokens per session (631 once invoked), scanned A, original, MIT.

A review checklist for an Agent Skills import and export bridge. It checks safe file paths, preservation of data during export and re-import, default values, validation, and tests.

In plain words
What is it for?
Use it when changing code that converts, imports, exports, validates, or tests Agent Skills.
Why use it?
It helps catch path-traversal risks, lost fields, incorrect defaults, and invalid imports that could otherwise silently damage or reject skill data.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the river-review plugin — 138 skills, 18 commands, 5 agents, 3 hooks shipped together

Good fit Use it when changing code that converts, imports, exports, validates, or tests Agent Skills.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s977043/river-review/agent-skill-bridge
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add s977043/river-review --skill agent-skill-bridge
Clone the repo
git clone --depth 1 https://github.com/s977043/river-review

Made for: Claude Code.

Or install river-review, the plugin that ships this one along with the rest of its 138 skills, 18 commands, 5 agents, 3 hooks.

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 Agent Skill Bridge Review

README.md
[![agentmods](https://agentmods.dev/badge/skills/s977043/river-review/agent-skill-bridge/github.svg)](https://agentmods.dev/skills/s977043/river-review/agent-skill-bridge)
Your own site
<a href="https://agentmods.dev/skills/s977043/river-review/agent-skill-bridge"><img src="https://agentmods.dev/badge/skills/s977043/river-review/agent-skill-bridge/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Agent Skill Bridge Review

Your own site · 80×15
<a href="https://agentmods.dev/skills/s977043/river-review/agent-skill-bridge"><img src="https://agentmods.dev/badge/skills/s977043/river-review/agent-skill-bridge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 631 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.00026 $0.00631
Opus 5 $0.00013 $0.00316
Sonnet 5 $0.00005 $0.00126
Haiku 4.5 $0.00003 $0.00063

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

Security

Grade A, and why

Agent Skill Bridge Review 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 6d 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.

skills/midstream/agent-skill-bridge/SKILL.md · 58 lines

What it actually says

Pattern declaration

Primary pattern: Reviewer Secondary patterns: Inversion Why: ブリッジモジュールのパス安全性・往復忠実性・バリデーション正当性をチェックリスト型で評価するが、対象ファイル外の変更では実行不要

Guidance

  • Path traversal: assertSafePath must reject ids containing .., /, or NUL bytes. Any new file-write path must route through this function or sanitizeSkillId.
  • Round-trip fidelity: export followed by re-import must preserve name, description, and body content. Verify that new fields added to conversion logic do not break this property.
  • Auto-fill correctness: convertAgentSkillToRR must not overwrite explicitly provided values (id, category, phase, applyTo). Defaults apply only when the field is absent.
  • Validation gate: both strict and loose validation paths must be exercised. The errors array must capture invalid skills without aborting the entire import batch.
  • Test coverage: every newly exported function from the module must have at least one node:test case.

Non-goals

  • Do not critique the RR skill schema itself; focus on bridge logic only.
  • Do not flag auto-fill behaviour as missing validation when the converted metadata passes the strict RR schema.

Pre-execution Gate / 実行前ゲート

このスキルは以下の条件がすべて満たされない限りNO_REVIEWを返す。

  • 差分にAgent Skillブリッジ関連ファイル(agent-skill-bridge.mjs, validate-agent-skills.mjs, agent-skill-loose.schema.json等)の変更が含まれている
  • 差分がコメント・JSDoc・空白のみの変更ではない
  • inputContextにdiffが含まれている

ゲート不成立時の出力: NO_REVIEW: agent-skill-bridge — Agent Skillブリッジ関連の実質的なコード変更が検出されない

False-positive guards

  • If test fixtures are added without corresponding logic changes, that is expected (test-only commits).
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. 6d ago First seen · 58 lines · 26 tokens per session scan A 8c1fd78d4fde

Subscribe to this mod's changes

Agent Skill Bridge Review is a skill published in the GitHub repository s977043/river-review (3 stars, last pushed today), licensed MIT. It adds 26 tokens to every session and 631 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-09-03.

Related

Other skills, from other repositories

best-practices

Industry best practices conformance audit with mandatory adversarial debate. Produces audit artifact: verdict (OK/WARN/FAIL) + gap roadmap + debate proof. Use when: auditing current implementation against industry standards, checking compliance with best practices, benchmarking implementation quality, verifying a…

sd0xdev/sd0x-harness · 101 tokens

refactor

Multi-target refactoring orchestrator. Use when: cleaning up messy code/docs, simplifying code, restructuring documents, batch cleanup. Not for: new features (use feature-dev), bug fixes (use bug-fix), code understanding (use code-explore). Output: refactored code/docs + review gate.

sd0xdev/sd0x-harness · 65 tokens

pre-pr-audit

Pre-PR confidence audit with 5-dimension scoring. Use when: final check before commit/push/PR, evaluating PR readiness, assessing test quality + risk + coverage holistically. Triggers: pre-pr, readiness check, confidence audit, final verification, ready to PR, how confident. Not for: code review (use…

sd0xdev/sd0x-harness · 95 tokens

review-spec

Review technical spec documents from completeness, feasibility, risk, and code consistency perspectives.

sd0xdev/sd0x-harness · 19 tokens

codex-cli-review

Code review via Codex CLI with full disk access. Use when: deep review needing full codebase read, uncommitted change review. Not for: quick diff review (use codex-code-review), doc review (use doc-review). Output: severity-grouped findings + merge gate.

sd0xdev/sd0x-harness · 63 tokens

pr-review

PR self-review — review changes, produce checklist, update rules.

sd0xdev/sd0x-harness · 15 tokens