npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentia-network/shield

v1.2.0

Published

An open-source, BYOK semantic firewall for autonomous AI agents.

Downloads

288

Readme

🛡️ Intentia Shield

The Semantic Firewall for Autonomous AI Agents. (专为 Web3 智能体打造的语义防火墙)

Intentia is an open-source, BYOK (Bring Your Own Key) security middleware designed to protect Web3 agents (Eliza, OpenClaw, LangChain) from Logic Hijacking and Semantic Injections.

Intentia 是一个开源的、自带密钥 (BYOK) 的安全中间件。它旨在保护 Web3 智能体免受逻辑劫持和语义注入的攻击。

🚀 Key Features (核心特性)

Web3 Intelligence Module: Optimized for on-chain attack vectors. (专为链上攻击场景优化)。

Zero Infrastructure Dependency: Runs entirely in your local environment. (零基础设施依赖,本地运行)。

Bring Your Own Key (BYOK): You control your privacy and costs. (自带密钥,掌控隐私)。

Dynamic Failover Matrix: Multi-model redundancy. (多模型冗余,永不下线)。

🛡️ Web3 Specific Protections (专项防御场景)

Intentia Shield v1.2 includes pre-configured intelligence for: (Intentia Shield v1.2 版本已针对以下高频攻击深度优化:)

Address Poisoning (地址投毒): Detects attempts to spoof destination addresses or replace verified wallets with malicious ones via "checksum error" or "update" excuses. (识别以“校验错误”或“地址更新”为借口诱导修改转账目标的攻击)。

Fake Bridge/Emergency Drains (虚假跨链/紧急提款): Identifies coercive language like "Contract hacked" or "Bridge exploit" used to panic agents into "safeguarding" funds to attacker-controlled vaults. (识别利用“合约被黑”、“跨链桥漏洞”等恐慌话术诱导智能体执行“紧急提款”的逻辑)。

Airdrop & Signature Phishing (空投/签名钓鱼): Flags suspicious requests asking agents to sign unverified messages or "approve" spending for rewards. (拦截诱导智能体签署恶意授权或空投领取的签名请求)。

📦 Installation (安装)

npm install @intentia-network/shield

💻 Quick Start (快速开始)

TypeScript Example

import { IntentiaShield } from "@intentia-network/shield";

const shield = new IntentiaShield({ openRouterApiKey: "sk-or-v1-..." });

async function safeTransfer(userPrompt) { // Audit the intent specifically for Web3 risks const verdict = await shield.audit(userPrompt);

if (verdict.status === "BLOCKED") {
    console.error(`🚨 Attack Blocked: ${verdict.reason}`);
    return;
} 

// Execute transfer...

}

📜 License

MIT License. Open source.