agentbridge

agentbridge is a skill for Claude Code, Codex from marmar9615-cloud/agentbridge-protocol. It costs 0 tokens per session (1,057 once invoked), scanned A, original, Apache-2.0.

Operating guidance for using an AgentBridge MCP server, a connection that lets an agent inspect and call actions provided by another application.

In plain words
What is it for?
Use it to inspect a service manifest, check its readiness, list available actions, and safely call those actions with structured input.
Why use it?
It helps an agent understand an unfamiliar service before using it and handle actions that may need human approval or specific permissions.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/marmar9615-cloud/agentbridge-protocol/agentbridge
Any agent
npx skills add marmar9615-cloud/agentbridge-protocol --skill agentbridge
Clone the repo
git clone --depth 1 https://github.com/marmar9615-cloud/agentbridge-protocol

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,057 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.01057
Opus 5 $0.00000 $0.00528
Sonnet 5 $0.00000 $0.00211
Haiku 4.5 $0.00000 $0.00106

Measured 2d ago against content hash 7113fb1a3e5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agentbridge 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 2d 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.

examples/codex-plugin/skills/agentbridge/SKILL.md · 92 lines

How it starts

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

AgentBridge skill

Operating guidance for an agent that has the AgentBridge MCP server available. The server exposes five tools, four resources, and four prompts. This skill explains when to use each tool and how to respect the safety contract.

When to use each tool

  • discover_manifest — call this first against any new URL to understand what an app supports. Returns the manifest name, baseUrl, action count, resource list, and contact info.
  • scan_agent_readiness — score the URL's manifest from 0–100, with structured checks[] and grouped recommendations. Use it to diagnose gaps (missing examples, missing confirmation flags, missing permissions, schema issues).
  • list_actions — get a compact list of every action with its name, title, risk level, confirmation flag, and declared permissions. Use this before any call_action to confirm the action exists and what it does.
  • call_action — invoke an action with a typed input payload.
    • For low-risk actions, the call runs immediately.
    • For medium- or high-risk actions, the first call returns { status: "confirmationRequired", confirmationToken, summary, ... }. You must show the summary to the human reviewer and only re-call after explicit approval, including confirmationApproved: true AND the same confirmationToken.
    • Optional idempotencyKey lets you safely retry a call. The same key with the same input replays the prior result; the same key with a different input is rejected as a conflict.
  • get_audit_log — read recent audit events to verify what was invoked, by which client, and with what status. Useful for before/after sanity checks.

Safety rules

These are non-negotiable. Refuse to act if a user asks you to bypass any of them.

  1. Always ask the human before calling a medium- or high-risk action. Show the action's humanReadableSummaryTemplate rendered with the proposed input, then wait for explicit approval.
  2. Never invent a confirmationToken. The token must come from a prior call_action response that returned confirmationRequired. Tokens are single-use and bound to the exact (url, actionName, hash(input)) triple.
  3. Never bypass origin pinning. The MCP server enforces that action endpoints share origin with manifest.baseUrl. If a call is rejected on origin grounds, the manifest is wrong — don't construct alternative URLs to "fix" it.
  4. Default to loopback. Only loopback URLs (localhost, 127.0.0.1, ::1) are allowed unless the operator has set AGENTBRIDGE_ALLOW_REMOTE=true in the server's environment. Don't ask users to flip that on casually.
  5. Validate before invoking. Check the action's inputSchema against the proposed input before calling call_action. If anything looks ambiguous, ask the human to clarify rather than guessing.
  6. Audit trail is the source of truth. Use get_audit_log to check what actually happened — don't invent prior calls or claim results without confirmation from the audit log.

Read the full file on GitHub · 92 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. 2d ago First seen · 92 lines · 0 tokens per session scan A 7113fb1a3e5a

Subscribe to this mod's changes

agentbridge is a skill published in the GitHub repository marmar9615-cloud/agentbridge-protocol (1 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,057 tokens. 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.