rfq-inbox-watcher

rfq-inbox-watcher is an agent for Claude Code from DCS-Premium-Freight-SRL/claude-for-freight. It costs 62 tokens per session (1,631 once invoked), scanned A, original, Apache-2.0.

A continuously running agent that watches an email inbox for RFQs—requests for shipping prices—and handles them according to predefined authority rules.

In plain words
What is it for?
Finding new RFQs, extracting shipment details, drafting replies, checking the Authority Matrix, and routing cases for automatic handling or approval.
Why use it?
It separates routine enquiries from messages that need human attention, reducing the need to monitor the inbox constantly. It can send, hold, or escalate a response based on the rules.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the freight-forwarding plugin — 4 skills, 5 commands, 1 agent, 6 MCP servers shipped together

Good fit Finding new RFQs, extracting shipment details, drafting replies, checking the Authority Matrix, and routing cases for automatic handling or approval.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher
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.

Clone the repo
git clone --depth 1 https://github.com/DCS-Premium-Freight-SRL/claude-for-freight

Made for: Claude Code.

Or install freight-forwarding, the plugin that ships this one along with the rest of its 4 skills, 5 commands, 1 agent, 6 MCP servers.

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 rfq-inbox-watcher

README.md
[![agentmods](https://agentmods.dev/badge/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher/github.svg)](https://agentmods.dev/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher)
Your own site
<a href="https://agentmods.dev/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher"><img src="https://agentmods.dev/badge/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher/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 rfq-inbox-watcher

Your own site · 80×15
<a href="https://agentmods.dev/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher"><img src="https://agentmods.dev/badge/agents/dcs-premium-freight-srl/claude-for-freight/rfq-inbox-watcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 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,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.00062 $0.01631
Opus 5 $0.00031 $0.00816
Sonnet 5 $0.00012 $0.00326
Haiku 4.5 $0.00006 $0.00163

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

Security

Grade A, and why

rfq-inbox-watcher 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 11d 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.

freight-forwarding/agents/rfq-inbox-watcher.md · 170 lines

How it starts

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

rfq-inbox-watcher

The pattern that handles the "we got an enquiry at 02:47 on a Sunday and our duty operator is asleep" case. Sees a new RFQ arrive, classifies it, drafts a response with the rfq-drafting skill, looks up the action in the Authority Matrix, and either sends it, holds it for human approval, or escalates it — depending on what bucket the matrix puts it in.

When to use this agent vs the skill

Use the rfq-drafting skill when the operator is at the desk and wants to draft a reply with their hand on the wheel.

Use this agent when the operator wants to be told only about the cases that need them — and trust the system to handle the routine ones.

Both call the same drafting skill. The agent adds: inbox subscription, classification, matrix lookup, holding queue, escalation routing.

Loop

1. Subscribe to the inbox (Gmail / Outlook MCP).
2. On new message:
   a. Classify — is this an RFQ? (vs invoice, customs query, claim, social)
   b. If not RFQ → ignore, log, move on.
   c. If RFQ → extract fields (origin, destination, cargo, special).
3. Look up the action in the Authority Matrix:
   a. Known shipper, standard lane, value ≤ matrix auto threshold → AUTO
   b. New shipper, or value in matrix at-boundary range → HOLD
   c. Charter / OBC / DG / AOG / lane outside profile → BLOCK
4. Branch:
   AUTO    → call rfq-drafting → send via Gmail/Outlook MCP → log
   HOLD    → call rfq-drafting → save as draft → notify duty operator
             with timeout per matrix; on timeout → default reject
   BLOCK   → do not draft an executable reply → escalate to operator
             via push (Telegram / Slack) with full context
5. Persist outcome to agent log (visible to operator next morning).

Classification

The agent should be conservative on what it calls an "RFQ." False positives (treating an invoice query as an RFQ and drafting a quote) are worse than false negatives (missing one RFQ that the operator finds in the inbox manually).

Read the full file on GitHub · 170 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. 11d ago First seen · 170 lines · 62 tokens per session scan A 29ea77b27d40

Subscribe to this mod's changes

rfq-inbox-watcher is an agent published in the GitHub repository DCS-Premium-Freight-SRL/claude-for-freight (8 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 62 tokens to every session and 1,631 once invoked, about $0.0003 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

paywall-planner

AI paywall strategy planner. Analyzes app category and features, recommends subscription model (hard/soft/freemium), pricing tiers, trial configuration, paywall placement, feature gating, and generates RevenueCat/Adapty-ready config.

vibeeval/vibecosystem · 54 tokens

cs-responder

You are a customer-support and CRM specialist for Korean online sellers and small teams. You turn a goal (clear the ticket queue, answer complaint X in the right tone, build an FAQ for product Y, summarize this week's VOC) into concrete deliverables: ticket triage tables, channel-appropriate response drafts in Korean…

modu-ai/moai-cowork · 98 tokens

listing-builder

You are an e-commerce listing and operations specialist for Korean online sellers. You turn a seller's goal (sell more of product X, launch on marketplace Y, improve conversion on page Z) into concrete, evidence-based deliverables: detail-page plans and copy, marketplace listing packages, ad/promotion plans, and CRM…

modu-ai/moai-cowork · 118 tokens

margin-auditor

You are a skeptical, evidence-first auditor of e-commerce deliverables: product listings, margin and pricing calculations, ad/promotion budget plans, and CRM campaign designs. You operate in a strictly read-only capacity — you inspect artifacts and report findings; you never fix them yourself.

modu-ai/moai-cowork · 81 tokens

creo-stripe-cli

Stripe CLI and MCP expert for payments, subscriptions, customers, products, webhooks, and billing.

oyusypenko/creo · 25 tokens

seo-ecommerce

E-commerce SEO analyst. Validates product schema, analyzes Google Shopping and Amazon marketplace visibility, identifies pricing gaps, and recommends product page optimizations. Spawned when e-commerce site detected during audits.

build-with-dhiraj/ai-workflow-framework-portability-kit · 43 tokens