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 skills/tyox-all/weave_protocol/langchainnpx skills add Tyox-all/Weave_Protocol --skill langchaingit clone --depth 1 https://github.com/Tyox-all/Weave_ProtocolWrote 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/skills/tyox-all/weave_protocol/langchain)<a href="https://agentmods.dev/skills/tyox-all/weave_protocol/langchain"><img src="https://agentmods.dev/badge/skills/tyox-all/weave_protocol/langchain.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.00044 | $0.00676 |
| Opus 5 | $0.00022 | $0.00338 |
| Sonnet 5 | $0.00009 | $0.00135 |
| Haiku 4.5 | $0.00004 | $0.00068 |
Grade A, and why
langchain-security 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.
How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LangChain Security Integration
Add security scanning to LangChain.js applications using Weave Protocol.
When to Use
- Building LangChain chains or agents that handle untrusted input
- Implementing RAG pipelines that need document scanning
- Protecting against prompt injection in production LLM apps
- Adding approval gates for dangerous tool operations
- Redacting PII from retrieved documents
Installation
npm install @weave_protocol/langchain @langchain/core
Core Patterns
1. Callback Handler (Recommended)
import { WeaveSecurityCallback } from '@weave_protocol/langchain';
const callback = new WeaveSecurityCallback({
action: 'block', // block | warn | log
minSeverity: 'medium', // low | medium | high | critical
});
// Works with any LangChain component
const chain = new LLMChain({
llm,
prompt,
callbacks: [callback],
});
2. Secure Tools
import { createSecureTool, createHighRiskTool } from '@weave_protocol/langchain';
// Basic security scanning
const secureTool = createSecureTool(myTool, {
name: 'my-tool',
security: { action: 'block' },
});
// Require user approval
const approvedTool = createHighRiskTool(dangerousTool, async (input) => {
return await askUser(`Execute: ${input}?`);
});
3. Secure Retrievers
import { createSecureRetriever } from '@weave_protocol/langchain';
const secureRetriever = createSecureRetriever(vectorStore.asRetriever(), {
name: 'docs',
scanDocuments: true,
redactSensitive: true, // Auto-redact PII
});
Presets
import {
createStrictSecurityCallback, // Blocks medium+
createWarningSecurityCallback, // Logs only
createProductionSecurityCallback // Blocks high+
} from '@weave_protocol/langchain';
Event Handling
new WeaveSecurityCallback({
onSecurityEvent: (event) => {
if (event.threats.length > 0) {
logger.warn('Threat detected', {
category: event.threats[0].category,
mitreId: event.threats[0].mitreId,
});
}
},
});
What ships with it
10 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 115 lines · 44 tokens per session scan A e0113eff0877
langchain-security is a skill published in the GitHub repository Tyox-all/Weave_Protocol (0 stars, last pushed 10d ago), licensed Apache-2.0. It adds 44 tokens to every session and 676 once invoked, about $0.0002 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.
Other skills, from other repositories
rtc-balance
Check RustChain wallet balance, epoch info, and network status via the public RPC.
panguard
AI agent security platform — audit skills, scan for threats, and run 24/7 protection with 9,700+ detection rules.
lictor-security-check
Pre-release security audit for ANY project — AI-built or hand-written, web or mobile. Scans the codebase for the full range of real-world risks that get apps breached: leaked API & AI-provider keys, exposed configs/secrets, broken auth & access control (IDOR), injection (SQL/XSS/command), SSRF, open databases & cloud…
lictor-rotate
Walks the user through rotating a leaked API key — step by step, provider-specific. Knows the exact URL to visit, the exact button to click, and how to verify the rotation worked. Supports Stripe, OpenAI, Anthropic, Google Cloud / AI Studio, GitHub, AWS, Slack, Supabase, Firebase, Postmark, and generic OAuth providers.
alchemy-agentic-gateway
Use when accessing Alchemy APIs for RPC calls, token balances, NFT metadata, asset transfers, transaction simulation, or Alchemy-specific features. Also use when the user mentions "SIWE", "SIWS", "x402", "MPP", "mppx", or "agentic gateway" — this skill covers wallet-based auth flows for Alchemy's x402 and MPP…
alchemy-api
Integrates Alchemy blockchain APIs using an API key. Requires $ALCHEMYAPIKEY to be set; if unavailable, use the alchemy-agentic-gateway skill instead. Use when user asks about EVM JSON-RPC calls, token balances, NFT ownership or metadata, transfer history, token prices, portfolio data, transaction simulation…