integrations

integrations is an agent for coding agents from thomascasali/claude-kb-workflow. It costs 41 tokens per session (4,432 once invoked), scanned A, original, MIT.

An assistant for connecting an application to outside services such as payment providers, email systems, Google APIs, push notifications, Telegram, and Gemini AI.

In plain words
What is it for?
Use it when adding payments, sending email or push alerts, connecting Google Sheets or Drive, building Telegram bots, or using Gemini for content generation and PDF extraction.
Why use it?
It provides service-specific integration guidance so developers do not have to work out each connection pattern from scratch.

Agent

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/thomascasali/claude-kb-workflow/integrations
Clone the repo
git clone --depth 1 https://github.com/thomascasali/claude-kb-workflow

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 integrations

README.md
[![agentmods](https://agentmods.dev/badge/agents/thomascasali/claude-kb-workflow/integrations.svg)](https://agentmods.dev/agents/thomascasali/claude-kb-workflow/integrations)
Your own site
<a href="https://agentmods.dev/agents/thomascasali/claude-kb-workflow/integrations"><img src="https://agentmods.dev/badge/agents/thomascasali/claude-kb-workflow/integrations.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00041 $0.04432
Opus 5 $0.00020 $0.02216
Sonnet 5 $0.00008 $0.00886
Haiku 4.5 $0.00004 $0.00443

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

Security

Grade A, and why

integrations scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const response = await axios.post('/api/sumup/create-checkout', {
agents/integrations.md · 636 lines

How it starts

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

AGENTE: Integrations Engineer (Multi-Progetto)

Specializzazione: Stripe, SumUp, Email, Google APIs, Push Notifications, Telegram, Gemini AI, API esterne


RUOLO

Agente specializzato nelle integrazioni con servizi esterni:

  • Stripe - Pagamenti
  • SumUp - Pagamenti alternativi
  • Email - SMTP, AWS SES, Resend
  • Google APIs - Sheets, Drive (progetti API-first)
  • Push Notifications - FCM, Web Push (VAPID)
  • WebSocket - Pusher
  • Telegram Bot API - Notifiche/briefing schedulati (Assistente AI)
  • Gemini AI - Generazione contenuti, estrazione PDF (Assistente AI)

STRIPE INTEGRATION

Laravel (progetti web tradizionali con relazioni complesse)

// Payment Intent creation
use Stripe\StripeClient;

$stripe = new StripeClient(config('services.stripe.secret'));

$paymentIntent = $stripe->paymentIntents->create([
    'amount' => $amount * 100,  // Centesimi!
    'currency' => 'eur',
    'customer' => $user->stripe_customer_id,
    'metadata' => [
        'booking_id' => $booking->id,
        'user_id' => $user->id,
    ],
]);

return response()->json([
    'clientSecret' => $paymentIntent->client_secret,
]);

Flutter (App Mobile)

// Stripe payment sheet
import 'package:flutter_stripe/flutter_stripe.dart';

Future<void> makePayment(double amount, String clientSecret) async {
  // 1. Init payment sheet
  await Stripe.instance.initPaymentSheet(
    paymentSheetParameters: SetupPaymentSheetParameters(
      paymentIntentClientSecret: clientSecret,
      merchantDisplayName: 'App Name',
      style: ThemeMode.system,
    ),
  );

  // 2. Present payment sheet
  await Stripe.instance.presentPaymentSheet();
}

Webhook Stripe

// Gestione webhook (Laravel)
Route::post('/webhook/stripe', function (Request $request) {
    $payload = $request->getContent();
    $sig = $request->header('Stripe-Signature');

    try {
        $event = Webhook::constructEvent($payload, $sig, config('services.stripe.webhook_secret'));
    } catch (\Exception $e) {
        return response('Invalid signature', 400);
    }

    switch ($event->type) {
        case 'payment_intent.succeeded':
            $paymentIntent = $event->data->object;
            // Aggiorna booking/payment status
            break;
        case 'payment_intent.payment_failed':
            // Gestisci fallimento
            break;
    }

    return response('OK', 200);
});

Read the full file on GitHub · 636 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 · 636 lines · 41 tokens per session scan A 0f13b676bdd6

Subscribe to this mod's changes

integrations is an agent published in the GitHub repository thomascasali/claude-kb-workflow (2 stars, last pushed 8d ago), licensed MIT. It adds 41 tokens to every session and 4,432 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.