liaison

liaison is an agent for Claude Code from vibeeval/vibecosystem. It costs 7 tokens per session (1,405 once invoked), scanned A, a copy of liaison, MIT.

An integration and API review agent that checks how software communicates with external services. It examines authentication, error handling, retries, timeouts, resilience, and security.

In plain words
What is it for?
Use it to review API clients and third-party integrations for reliable communication and safe failure handling.
Why use it?
It helps catch fragile or unsafe connections to outside systems before they cause failures or expose credentials.

Agent for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: model in frontmatter.

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 agents/vibeeval/vibecosystem/liaison
Clone the repo
git clone --depth 1 https://github.com/vibeeval/vibecosystem

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 liaison

README.md
[![agentmods](https://agentmods.dev/badge/agents/vibeeval/vibecosystem/liaison.svg)](https://agentmods.dev/agents/vibeeval/vibecosystem/liaison)
Your own site
<a href="https://agentmods.dev/agents/vibeeval/vibecosystem/liaison"><img src="https://agentmods.dev/badge/agents/vibeeval/vibecosystem/liaison.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 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,405 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 95% copy Near-identical to another mod 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.00007 $0.01405
Opus 5 $0.00003 $0.00702
Sonnet 5 $0.00001 $0.00281
Haiku 4.5 $0.00001 $0.00140

Measured 3d ago against content hash 19e3a9b15f0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

liaison 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 3d 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.

Origin

This is a copy

95% identical to liaison — 490 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/liaison.md · 246 lines

How it starts

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

Liaison

You are a specialized reviewer for integrations and API implementations. Your job is to verify that integrations are robust, secure, and follow best practices for external communication. You ensure smooth connections.

Erotetic Check

Before reviewing, frame the question space E(X,Q):

  • X = integration to review
  • Q = integration questions (auth, errors, resilience, security)
  • Verify each Q systematically

Step 1: Understand Your Context

Your task prompt will include:

## Integration Scope
[What was integrated - API, service, third-party]

## External System
[Name and purpose of external system]

## Implementation
[Files implementing the integration]

## Codebase
$CLAUDE_PROJECT_DIR = /path/to/project

Step 2: Analyze Integration

# Read the integration code
cat src/clients/external-client.ts

# Check error handling
tldr search "catch|try|error|throw" path/to/integration/'

# Check auth patterns
tldr search "Authorization|Bearer|API_KEY|token"'

# Find retry/resilience patterns
tldr search "retry|backoff|circuit|timeout"'

Step 3: Review Checklist

Authentication

  • Credentials not hardcoded
  • Credentials in environment
  • Token refresh handled (if applicable)
  • Auth errors handled gracefully

Error Handling

  • All HTTP error codes handled
  • Network errors caught
  • Timeouts configured
  • Meaningful error messages

Resilience

  • Retry logic implemented
  • Exponential backoff used
  • Circuit breaker (for critical paths)
  • Fallback behavior defined

Security

  • TLS enforced
  • Sensitive data not logged
  • Input validation
  • Output sanitization

Data Handling

  • Request/response types defined
  • Data transformation tested
  • Edge cases in data handled

Step 4: Write Output

ALWAYS write review to:

$CLAUDE_PROJECT_DIR/.claude/cache/agents/liaison/output-{timestamp}.md

Read the full file on GitHub · 246 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. 3d ago First seen · 246 lines · 7 tokens per session scan A 19e3a9b15f0b

Subscribe to this mod's changes

liaison is an agent published in the GitHub repository vibeeval/vibecosystem (530 stars, last pushed 28d ago), licensed MIT. It adds 7 tokens to every session and 1,405 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to liaison, differing in 490 lines, and is treated as a copy.

Related

Other agents, from other repositories

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

rust-expert

Rust ownership/borrowing, async Rust, Axum/Actix web frameworks, and WASM specialist. Use when writing Rust code, debugging borrow checker issues, or building Rust web services. Trigger phrases: Rust, borrow checker, ownership, lifetime, Axum, Actix, tokio, async Rust, WASM, wasm-bindgen, cargo, crate.

travisjneuman/.claude · 78 tokens

auth-specialist

OAuth 2.0/OIDC, JWT, session management, MFA, NextAuth/Clerk/Supabase Auth specialist. Use when implementing authentication, authorization, SSO, or security token management. Trigger phrases: login, auth, JWT, OAuth, session, password, MFA, 2FA, SSO, RBAC, permissions, roles.

travisjneuman/.claude · 76 tokens

api-designer

Designs REST and GraphQL APIs following best practices. Use when creating new APIs, reviewing API design, or writing OpenAPI specifications.

travisjneuman/.claude · 31 tokens

Backend

FastAPI/Flask/Node.js API development with Result pattern and async patterns.

intellegix/intellegix-code-agent-toolkit · 18 tokens

api-integration-specialist

Third-party API integration, webhook handling, OAuth flows, rate limiting, and SDK wrapping specialist. Use when integrating external APIs, building webhook handlers, or creating API client libraries. Trigger phrases: API integration, webhook, third-party API, SDK wrapper, OAuth flow, rate limiting, retry strategy…

travisjneuman/.claude · 74 tokens