CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mund — MCP Security Scanner

tyox-all/weave_protocol
STDIOregistry active
Summary

Mund is the security scanning component of the Weave Protocol suite, designed to vet MCP servers before you install them and detect threats in running agents. It scans for prompt injection attempts, leaked secrets, and PII exposure across tool calls and prompts. The broader Weave ecosystem includes WARD.md, a portable policy file that works across Claude Code, Google Antigravity, Microsoft Agent Framework, and MCP servers, so you write security rules once and enforce them everywhere. Mund itself focuses on the detection layer, flagging risks before they hit your agent runtime. If you're running multi-agent systems or installing third-party MCP servers, this gives you a scanning layer that catches credential leaks and injection patterns before they become incidents.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

🕸️ Weave_Protocol

Enterprise Security Suite for AI Agents

npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm npm License

Make agent orchestration verifiable and auditable. Cryptographically verify multi-agent behavior, detect threats in real-time, and maintain compliance across any platform. Built as a TypeScript monorepo with MCP integration and blockchain anchoring.


🌐 Operator Dashboard

npx @weave_protocol/api
# → http://localhost:3000/dashboard

Live monitoring across all five enforcement surfaces in one view. The dashboard renders WARD.md at the top of a hierarchy diagram, fanning out to your configured enforcers (Hundredmen + the three vendor adapters + browser). Surfaces you're not using appear dimmed, so it's instantly clear what's protecting your agent versus what's available.

Includes a live activity feed (allows / denies / IPI detections / approvals across all surfaces), a WARD policy panel (current rule counts and behavioral limits), and 24-hour aggregate stats. Auto-refreshes every 5 seconds. Monochrome design — built for ops rooms, not marketing decks.

🚀 Get started in one command

npx @weave_protocol/cli init

The CLI detects your framework (LangChain, LlamaIndex, MCP, OpenAI, Anthropic), asks which Weave Protocol packages you want, and scaffolds the right security middleware for your stack. Or install everything at once:

npm install @weave_protocol/full

🆕 What's New

🛡️ Four runtimes. Three vendors. One policy file.

The thesis was that WARD.md could be a portable agent security standard — write it once, enforce it everywhere. As of today, that's shipped and live across the entire agent harness landscape:

RuntimeVendorEnforcerStatus
MCP serversOpen standardHundredmen v1.1.0✅ Live on npm
Claude CodeAnthropicadapter-claudecode v0.1.0✅ Live on npm
Google Antigravity (desktop + agy CLI + SDK)Googleadapter-antigravity v0.1.0✅ Live on npm
Microsoft Agent FrameworkMicrosoftadapter-msaf v0.1.0✅ Live on npm

The same WARD.md file in your project root is now read and enforced by Anthropic's, Google's, Microsoft's, and MCP's runtimes — without any platform-specific edits. That's the standard working in production.

my-agent-project/
├── AGENTS.md          # what the agent does
├── SKILL.md           # how the agent does it
└── WARD.md            # what the agent can't do  ← all four runtimes respect this

🛡️ Microsoft Agent Framework adapter v0.1.0 — third cross-platform adapter

@weave_protocol/adapter-msaf enforces WARD.md inside Microsoft Agent Framework via the framework's middleware pipeline.

Unlike the Claude Code and Antigravity adapters which use config-file hooks, MSAF middleware is registered programmatically in user code. So this adapter is primarily a library with a supporting CLI:

import { WardMiddleware } from '@weave_protocol/adapter-msaf';

const ward = new WardMiddleware();   // auto-loads ./WARD.md
agent.useFunctionMiddleware(ward.functionMiddleware());

One line. Every tool call your MSAF agent makes is now gated by your WARD.md.

20 built-in tool mappings cover MSAF's local runtime tools, Copilot SDK patterns, and Claude Code SDK integration names. Bash command heuristic catches Azure credential paths on top of SSH/AWS/GCP. Typed WardDeniedError exception lets you catch WARD denials cleanly. onAllow / onDeny callbacks support logging, attestation, and emergency override.

See adapter-msaf README →


🛡️ Google Antigravity adapter v0.1.0 — second cross-platform adapter

@weave_protocol/adapter-antigravity enforces WARD.md inside Google Antigravity via the PreToolUse hook system shared across Antigravity 2.0 desktop, the agy CLI, and the Antigravity SDK. One hook install protects all three Antigravity surfaces because they share the same agent harness with synced settings.

npm install -g @weave_protocol/adapter-antigravity
weave-antigravity init

Bash command heuristic catches GCP credential paths on top of the SSH/AWS standards.

See adapter-antigravity README →


🛡️ Claude Code adapter v0.1.0 — first cross-platform harness adapter

@weave_protocol/adapter-claudecode enforces WARD.md policies inside Claude Code via its native PreToolUse hook system.

npm install -g @weave_protocol/adapter-claudecode
weave-claude-code init
npx @weave_protocol/ward init
# Every Claude Code tool call is now gated by your WARD.md

See adapter-claudecode README →


🔍 Hundredmen v1.1.0 — WARD.md enforcement at the MCP layer

Hundredmen reads WARD.md and enforces it at the MCP interception layer. WARD becomes the first gate in Hundredmen's decision flow — ahead of reputation, drift, and approval checks.

🔍 Weave Hundredmen MCP Server running
🛡️  WARD.md loaded from ./WARD.md (My Agent Security Policy)
{
  "decision": "auto_blocked",
  "decisionReason": "WARD: Tool 'shell_exec' is in the deny list."
}

See Hundredmen README →


🛡️ WARD.md v0.1.0 — Agent Security Policy Standard

AGENTS.md tells your agent what to do. SKILL.md tells your agent how to do it. WARD.md tells your agent what it can't.

Agents are now infrastructure-as-code. They're defined in markdown files (AGENTS.md, SKILL.md), version-controlled, and shared across registries. WARD.md is the third file in that stack — a portable, declarative format for declaring the security policy of an AI agent.

npx @weave_protocol/ward init             # create a starter WARD.md
npx @weave_protocol/ward validate WARD.md # validate it (use in CI)
npx @weave_protocol/ward explain WARD.md  # human-readable policy summary

A WARD.md file declares ten policy domains: filesystem rules, network allowlists, capability gating, data egress boundaries, behavioral limits (iterations / runtime / cost / tokens), multi-agent trust chains, compliance frameworks, attestation requirements, threat model, and incident response. The format is portable across harness platforms — and now proven so across four runtimes.

See Ward README → · See the WARD.md spec →


🕸️ Weave CLI v0.1.0 + Full Bundle v0.1.0

The weave command-line tool is live. One command sets up framework-specific security middleware.

See CLI README → · See Full README →


🛂 Tollere v0.2.2 — Multi-Channel Supply Chain Security

Old English tollere — the customs inspector who stood at the gate and examined every good crossing the boundary.

Catches typosquats, CVEs, compromised maintainers, Docker tag overwriting, IDE extension impersonation, and sandwich-pattern attacks before the install completes. Validated against the real-world Checkmarx KICS supply chain compromise (April 2026).

Coverage: npm, PyPI, Cargo, Go, Maven, Docker Hub, VS Code Marketplace (covers Cursor + Windsurf), Open VSX (VSCodium/Gitpod), JetBrains Marketplace.

See Tollere README →


📊 Web Dashboard, Python/LlamaIndex, and LangChain.js integrations

Also shipped:

  • Web Dashboard (API v1.0.12) — live activity feed, threat intel, compliance, MCP reputation. npx @weave_protocol/api → http://localhost:3000/dashboard
  • Python/LlamaIndex (weave-protocol-llamaindex) — drop-in security callbacks for LlamaIndex
  • LangChain.js (@weave_protocol/langchain) — WeaveSecurityCallback for any chain or agent

📦 Packages

PackageVersionDescription
🕸️ @weave_protocol/cli0.1.0The weave CLI — init, audit, dashboard, doctor
📦 @weave_protocol/full0.1.0Bundle — installs all packages in one command
🛡️ @weave_protocol/ward0.1.0WARD.md — agent security policy standard (parser, validator, runtime checks)
🛡️ @weave_protocol/adapter-claudecode0.1.0Claude Code adapter — enforces WARD.md via PreToolUse hooks
🛡️ @weave_protocol/adapter-antigravity0.1.0Google Antigravity adapter — enforces WARD.md across desktop, agy CLI, and SDK
🛡️ @weave_protocol/adapter-msaf0.1.0🆕 Microsoft Agent Framework adapter — middleware-based WARD enforcement
🛡️ @weave_protocol/mund0.2.2Security scanner — secrets, PII, injection, MCP vetting, threat intel
🏛️ @weave_protocol/hord0.1.6Encrypted vault with Yoxallismus cipher
⚖️ @weave_protocol/domere1.3.4Compliance (PCI-DSS, ISO27001, SOC2, HIPAA, GDPR, CCPA) & verification
👥 @weave_protocol/witan1.0.2Multi-agent consensus & governance
🔍 @weave_protocol/hundredmen1.1.0Real-time MCP proxy — intercept, scan, gate tool calls, enforces WARD.md
🛂 @weave_protocol/tollere0.2.2Supply chain security — npm, Docker images, IDE extensions, sandwich pattern detection
🔗 @weave_protocol/langchain1.0.1LangChain.js security callbacks & tool wrappers
🐍 weave-protocol-llamaindex0.1.0Python/LlamaIndex security callbacks & tools
🔌 @weave_protocol/api1.0.12REST API for all packages + dashboard

🤖 AI Agent Skills

Each package includes a SKILL.md file following the Claude Agent Skills specification. These teach AI agents how to use Weave Protocol tools effectively.

PackageSkill NameTriggers
🕸️ CLIweave-cliset up Weave, init project, scaffold security, audit, dashboard, doctor
🛡️ WardwardWARD.md, agent security policy, guardrails, lock down agent, define boundaries
🛡️ adapter-claudecodeadapter-claudecodesecure Claude Code, install WARD hooks, block Claude Code actions
🛡️ adapter-antigravityadapter-antigravitysecure Antigravity, agy hooks, block GCP credential reads, lock down managed agents
🛡️ adapter-msafadapter-msafsecure MSAF agent, WardMiddleware, lock down Copilot SDK, Azure agent enforcement
🛡️ Mundsecurity-scanningscan, detect secrets, check injection, vet MCP server, threat intel
🏛️ Hordencrypting-dataencrypt, decrypt, vault, Yoxallismus, protect
⚖️ Domerecompliance-auditingaudit, checkpoint, SOC2, HIPAA, PCI-DSS, GDPR, CCPA, blockchain
👥 Witanconsensus-governanceconsensus, vote, approve, policy, escalate
🔍 Hundredmensecurity-inspectionintercept, drift, reputation, approve, block, live feed, enforce WARD policy
🛂 Tolleresupply-chain-securitynpm install, docker pull, install extension, dependency check, typosquat, CVE, sandwich pattern
🔗 Langchainlangchain-securityLangChain, callback, secure tool, RAG security, PII redaction
🔌 APIweave-api-callingREST API, HTTP endpoint, curl, fetch

Installation:

The SKILL.md format is shared across Claude Code and Antigravity (both inherited from the original Anthropic spec), so the same files work for both platforms — only the install path differs.

git clone https://github.com/Tyox-all/Weave_Protocol.git
cd Weave_Protocol

# For Claude Code:
mkdir -p ~/.claude/skills/weave-protocol
cp */SKILL.md ~/.claude/skills/weave-protocol/

# For Google Antigravity (global, all sessions):
mkdir -p ~/.gemini/antigravity-cli/skills/weave-protocol
cp */SKILL.md ~/.gemini/antigravity-cli/skills/weave-protocol/

# Or per-project under .agents/:
mkdir -p .agents/skills/weave-protocol
cp /path/to/Weave_Protocol/*/SKILL.md .agents/skills/weave-protocol/

For Microsoft Agent Framework, skills aren't used — MSAF is code-level. Use the WardMiddleware class from @weave_protocol/adapter-msaf instead (see adapter-msaf README).

Once installed, the agent automatically invokes the appropriate skill for each task.


🚀 Quick Start

Option 1: Guided setup (recommended)

npx @weave_protocol/cli init

Option 2: Install everything

npm install @weave_protocol/full

Option 3: Install individual packages

npm install @weave_protocol/mund @weave_protocol/tollere @weave_protocol/ward

Claude Desktop Integration (MCP)

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mund":       { "command": "npx", "args": ["-y", "@weave_protocol/mund"] },
    "hord":       { "command": "npx", "args": ["-y", "@weave_protocol/hord"] },
    "domere":     { "command": "npx", "args": ["-y", "@weave_protocol/domere"] },
    "hundredmen": { "command": "npx", "args": ["-y", "@weave_protocol/hundredmen"] },
    "tollere":    { "command": "npx", "args": ["-y", "@weave_protocol/tollere"] }
  }
}

If you have a WARD.md in your home directory or set $WEAVE_WARD_PATH, Hundredmen will auto-enforce it.

Claude Code Integration

npm install -g @weave_protocol/adapter-claudecode
weave-claude-code init

Google Antigravity Integration

npm install -g @weave_protocol/adapter-antigravity
weave-antigravity init

Microsoft Agent Framework Integration

npm install @weave_protocol/adapter-msaf
import { WardMiddleware } from '@weave_protocol/adapter-msaf';
const ward = new WardMiddleware();
agent.useFunctionMiddleware(ward.functionMiddleware());

Drop a WARD.md in your project root. Any (or all!) of the adapters will gate every tool call.


✨ Package Details

🕸️ CLI — One Command for Everything

npx @weave_protocol/cli init        # detect framework, scaffold middleware
npx @weave_protocol/cli audit       # supply chain scan (Tollere)
npx @weave_protocol/cli dashboard   # launch monitoring UI
npx @weave_protocol/cli doctor      # environment health check

📄 Skill: weave-cli


🛡️ Ward — The Policy Standard

WARD.md files declare what an agent is allowed to do, version-controlled alongside AGENTS.md and SKILL.md.

SectionControls
FilesystemRead/write/execute/delete/list rules with glob patterns
NetworkOutbound HTTP allowlist with optional method restrictions
CapabilitiesTools the agent may invoke (with optional approval gating)
Data BoundariesEgress classifications (PII, PHI, credentials...) and redaction
Behavioral LimitsIterations, runtime, cost, tokens, tool calls
Multi-AgentTrust chain, isolation level, semantic drift threshold
ComplianceSOC2 / HIPAA / GDPR / CCPA / ISO27001 / PCI-DSS
VerificationAttestation backend (Dōmere), blockchain, frequency
Threat ModelIn-scope / out-of-scope threats
Incident ResponseActions on violation (log / alert / terminate / attest)

Enforced at runtime by four independent enforcers:

  • Hundredmen (MCP layer)
  • adapter-claudecode (Claude Code PreToolUse hooks)
  • adapter-antigravity (Antigravity PreToolUse hooks — desktop + agy + SDK)
  • adapter-msaf (MSAF middleware pipeline — function and agent layers)

📄 Skill: ward · 📋 Spec: WARD.md SPEC →


🛡️ adapter-claudecode — Claude Code enforcement

weave-claude-code init               # install the hook
weave-claude-code status             # show config + active policy
weave-claude-code test Bash --input='{"command":"rm -rf ~/.ssh"}'
weave-claude-code disable            # remove

WARD resolution: $WEAVE_WARD_PATH → <cwd>/WARD.md → <cwd>/.weave/WARD.md → ~/.claude/WARD.md (user-global).

📄 Skill: adapter-claudecode


🛡️ adapter-antigravity — Google Antigravity enforcement

weave-antigravity init               # install the hook
weave-antigravity status             # show config + active policy
weave-antigravity test Bash --input='{"command":"cat ~/.config/gcloud/credentials.db"}'
weave-antigravity disable            # remove

One install protects Antigravity 2.0 desktop, the agy CLI, and the Antigravity SDK (they share the same agent harness with synced settings). Bash command heuristic catches GCP credential paths.

📄 Skill: adapter-antigravity


🛡️ adapter-msaf — Microsoft Agent Framework enforcement

import { WardMiddleware } from '@weave_protocol/adapter-msaf';
const ward = new WardMiddleware();
agent.useFunctionMiddleware(ward.functionMiddleware());

Library-first design (MSAF middleware is programmatic, not config-driven). Catches Azure credential paths in Bash commands. Provides typed WardDeniedError, plus onAllow / onDeny callbacks for logging, attestation, and emergency override.

weave-msaf init --language=ts        # print integration snippet
weave-msaf status                    # show active WARD policy
weave-msaf test ShellExec --input='{"command":"cat ~/.azure/credentials"}'

📄 Skill: adapter-msaf


🛡️ Mund — The Guardian

Real-time security scanning for AI agents. Catches secrets (30+ patterns), PII, prompt injection, dangerous code, malicious MCP server descriptions. Threat intel auto-updates from community feeds.

📄 Skill: security-scanning


🏛️ Hord — The Vault

Encrypted storage with the Yoxallismus dual-tumbler cipher. AES-256-GCM, ChaCha20-Poly1305, Argon2id key derivation, secure memory handling.

📄 Skill: encrypting-data


⚖️ Domere — The Judge

Enterprise-grade verification, orchestration, compliance, and audit infrastructure. SOC2, HIPAA, PCI-DSS, ISO27001, GDPR, CCPA. Solana and Ethereum blockchain anchoring for immutable audit trails.

Blockchain Anchoring:

  • Solana Mainnet: 6g7raTAHU2h331VKtfVtkS5pmuvR8vMYwjGsZF1CUj2o
  • Solana Devnet: BeCYVJYfbUu3k2TPGmh9VoGWeJwzm2hg2NdtnvbdBNCj
  • Ethereum: 0xAA8b52adD3CEce6269d14C6335a79df451543820

📄 Skill: compliance-auditing


👥 Witan — The Council

Multi-agent consensus and governance. Unanimous, majority, weighted, and quorum protocols. Rule enforcement, escalation, agent bus.

📄 Skill: consensus-governance


🔍 Hundredmen — The Watchers

Real-time MCP security proxy. v1.1.0 enforces WARD.md as the first gate in the decision flow, ahead of reputation, drift, and approval checks.

📄 Skill: security-inspection


🛂 Tollere — The Customs Inspector

Supply chain security for AI-generated code. Catches malicious packages, Docker images, and IDE extensions before they reach node_modules/, your container, or your editor.

📄 Skill: supply-chain-security


🔗 Langchain — The Bridge

Security integration for LangChain.js applications. Drop-in callbacks, secured tool wrappers, RAG retriever scanning with PII redaction.

📄 Skill: langchain-security


🏗️ Architecture

flowchart TD
    CLI["🕸️ <b>weave init / audit</b><br/><i>front door — @weave_protocol/cli</i>"]
    WARD["🛡️ <b>WARD.md</b><br/><i>policy standard — declares what the agent can't do</i>"]
    CLI --> WARD

    WARD -.->|enforced at runtime by| HM
    WARD -.->|enforced at runtime by| CC
    WARD -.->|enforced at runtime by| AG
    WARD -.->|enforced at runtime by| MSAF

    HM["🔍 <b>Hundredmen</b><br/>MCP layer<br/><i>open standard</i>"]
    CC["🛡️ <b>adapter-claudecode</b><br/>Anthropic<br/>✅ Live"]
    AG["🛡️ <b>adapter-antigravity</b><br/>Google · desktop + agy + SDK<br/>✅ Live"]
    MSAF["🛡️ <b>adapter-msaf</b><br/>Microsoft · middleware library<br/>✅ Live"]

    HM --> AGENT
    CC --> AGENT
    AG --> AGENT
    MSAF --> AGENT

    subgraph AGENT["AI Agent System"]
        direction TB
        subgraph CORE["Core security layer"]
            direction LR
            MUND["🛡️ Mund<br/>Guardian<br/><i>scanning</i>"]
            HORD["🏛️ Hord<br/>Vault<br/><i>encryption</i>"]
            DOMERE["⚖️ Domere<br/>Judge<br/><i>compliance</i>"]
            WITAN["👥 Witan<br/>Council<br/><i>consensus</i>"]
        end
        subgraph OPS["Supply chain & ops layer"]
            direction LR
            TOLLERE["🛂 Tollere<br/>Customs<br/><i>deps + images + extensions</i>"]
            API["🔌 API + Dashboard<br/><i>REST + UI</i>"]
            LC["🔗 LangChain bridge<br/><i>chains + agents</i>"]
        end
        CORE --> OPS
    end

    classDef policy fill:#1f2937,stroke:#60a5fa,stroke-width:2px,color:#fff
    classDef enforcer fill:#064e3b,stroke:#10b981,stroke-width:2px,color:#fff
    classDef core fill:#312e81,stroke:#818cf8,stroke-width:1px,color:#fff
    classDef ops fill:#1e3a8a,stroke:#60a5fa,stroke-width:1px,color:#fff

    class CLI,WARD policy
    class HM,CC,AG,MSAF enforcer
    class MUND,HORD,DOMERE,WITAN core
    class TOLLERE,API,LC ops

🔐 Security Model

Defense-in-depth across the entire AI agent lifecycle:

  1. 🛡️ Ward declares what the agent can and can't do (policy-as-code)
  2. 🛡️ Harness adapters enforce WARD inside the IDE / CLI / framework:
  • adapter-claudecode for Claude Code (PreToolUse hooks)
  • adapter-antigravity for Google Antigravity (PreToolUse hooks across desktop/CLI/SDK)
  • adapter-msaf for Microsoft Agent Framework (middleware pipeline)
  1. 🛂 Tollere inspects every dependency, image, and extension before it enters your project
  2. 🛡️ Mund scans all inputs for threats before processing
  3. 🏛️ Hord encrypts sensitive data at rest and in transit
  4. ⚖️ Domere logs all actions with tamper-evident checksums
  5. 👥 Witan requires consensus for high-risk operations
  6. 🔍 Hundredmen intercepts and gates tool calls in real-time — enforcing WARD policy at the MCP layer
  7. 🔗 Langchain secures LangChain.js chains and agents

CORS Model Integration

CORS LayerWeave PackageFunction
Policy🛡️ WardDeclares allowed/denied actions, behavioral limits, attestation requirements
Policy Enforcement (Claude Code)🛡️ adapter-claudecodeReads WARD, gates Claude Code tool calls via hooks
Policy Enforcement (Antigravity)🛡️ adapter-antigravityReads WARD, gates Antigravity calls across desktop/CLI/SDK
Policy Enforcement (MSAF)🛡️ adapter-msafReads WARD, gates Microsoft Agent Framework calls via middleware
Policy Enforcement (MCP)🔍 HundredmenReads WARD, gates tool calls at the MCP layer
Supply Chain🛂 TollereVets dependencies, images, extensions before install
Origin Validation🛡️ MundValidates input sources, detects injection
Context Integrity🏛️ HordProtects data integrity through encryption
Deterministic Enforcement⚖️ DomereEnsures consistent policy application

🛠️ Development

git clone https://github.com/Tyox-all/Weave_Protocol.git
cd Weave_Protocol

# Build each package
for pkg in mund hord domere witan hundredmen tollere langchain api cli ward \
           adapter-claudecode adapter-antigravity adapter-msaf; do
  (cd $pkg && npm install && npm run build)
done

🗺️ Roadmap

Shipped

  • GDPR compliance framework
  • CCPA compliance framework
  • MCP server reputation scoring
  • Automated threat intelligence updates
  • LangChain.js integration package
  • Python/LlamaIndex integration
  • Web dashboard for monitoring
  • Supply chain security (Tollere) — npm, PyPI, Cargo, Go, Maven
  • Multi-channel supply chain — Docker images + IDE extensions + sandwich pattern detection
  • Bundle package + CLI (weave init) — adoption funnel
  • WARD.md agent security policy standard
  • Hundredmen ↔ WARD enforcement integration (v1.1.0)
  • Claude Code harness adapter (Anthropic)
  • Google Antigravity harness adapter (Google)
  • Microsoft Agent Framework harness adapter (Microsoft)
  • Cross-platform thesis complete — same WARD.md works across all three major vendor harnesses + MCP

H2 2026 Q3 — Adoption Quarter

  • Browser agent security (@weave_protocol/browser)
  • Dashboard v2 with orchestration visualization
  • State of AI Agent Security: Q3 Report — Industry analysis of agent security trends, platform maturity, supply chain risks, and market gaps

H2 2026 Q4 — Moat Quarter

  • Adversarial agents (@weave_protocol/adversary)
  • Yoxallismus v2 (multi-agent, memory-aware cipher)
  • Witan killer use case: autonomous spending caps
  • AgentSecBench (open benchmark + leaderboard)

🤝 Contributing

Bug reports and feature requests welcome via GitHub Issues.

For security issues, please see SECURITY.md.

For all other inquiries: TYox-all@tutamail.com

See CONTRIBUTING.md for guidelines.


📄 License

Apache 2.0 — See LICENSE


🔗 Links

  • GitHub: https://github.com/Tyox-all/Weave_Protocol
  • npm packages: https://www.npmjs.com/~tyox-all
  • PyPI: https://pypi.org/project/weave-protocol-llamaindex/
  • MCP Registry: https://registry.modelcontextprotocol.io (search "mund")

Built with ❤️ for the AI agent ecosystem.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM Tools
Registryactive
Package@weave_protocol/mund
TransportSTDIO
UpdatedMar 12, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f