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.
npx agentmods add agents/thomascasali/claude-kb-workflow/integrationsgit clone --depth 1 https://github.com/thomascasali/claude-kb-workflowWrote 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.
[](https://agentmods.dev/agents/thomascasali/claude-kb-workflow/integrations)<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>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.
| Model | Per session | Once 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 |
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', { 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);
});
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.
- 3d ago First seen · 636 lines · 41 tokens per session scan A 0f13b676bdd6
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.
Other agents, from other repositories
knowledge-gardener
Surveys the graph and notes what has gone leggy or stale — never prunes. Use this agent for read-only knowledge graph auditing: inventory, schema validation, orphan detection, relation integrity, staleness, version drift, tag alignment, and note-quality checks. Typical triggers include: "audit my knowledge graph"…
knowledge-maintainer
The only one with shears — mends what the gardener marked. Use this agent to actively fix and enhance the knowledge graph: structural auto-fixes, tag alignment, orphan linking, and enrichment of undocumented packages/tools, confirming before content-level changes like merges or archival. Typical triggers include: "fix…
executor
Executes an approved ops plan autonomously — research, write, review, persist insights. Returns artifacts and summary.
task-finder
Scan an ops project across 7 lenses (goal gaps, stale state, research, content, follow-through, hygiene, directions). Updates backlog.
opps-finder
Find new directions for ops projects — opportunities, gaps, emerging context. Runs /find-opps autonomously, returns backlog items.
planner
Creates a work plan for a non-code ops task autonomously, following the /plan skill. Returns plan file path and summary.