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

@apexguard/sdk

v0.1.7

Published

Runtime security middleware for LLM agents — prompt injection, tool misuse, and memory poisoning defense

Readme

agentshield

Runtime security middleware for LLM agents. Drop it into your existing agent framework — no refactor required.

Defends against:

  • Prompt injection (user input hijacking system instructions)
  • Tool misuse & privilege escalation (agents calling tools outside intended scope)
  • Memory poisoning (persistent agent memory corrupted across sessions)
  • RAG context injection (poisoned document chunks injecting instructions)

Install

pip install apexguard
# or
npm install @apexguard/sdk

Python — 30-second quickstart

from apexguard import Shield, Policy

shield = Shield(
    policy=Policy(
        tool_allowlist=["calculator", "web_search"],
        memory_ttl=3600,
        injection_sensitivity="medium",
        on_violation="block",
    )
)

# Wrap your existing LangChain agent
secured_agent = shield.wrap(your_langchain_agent)
result = secured_agent.invoke({"input": user_query})

LangChain tool integration

from apexguard.adapters.langchain import shield_tools

secured_tools = shield_tools(your_tools, shield)
agent = create_react_agent(llm, secured_tools, prompt)

Custom violation handler

shield.on_violation(lambda e: send_to_slack(e))

TypeScript — 30-second quickstart

import { Shield } from '@apexguard/sdk';

const s = new Shield({
  policy: {
    toolAllowlist: ['calculator', 'webSearch'],
    memoryTTL: 3600,
    injectionSensitivity: 'medium',
    onViolation: 'block',
  },
});

const securedAgent = s.wrap(yourAgent);

Vercel AI SDK tools

import { shieldTools } from '@apexguard/sdk/adapters/vercel-ai';

const result = await generateText({
  model: openai('gpt-4o'),
  tools: shieldTools({ calculator, webSearch }, s),
  prompt: userInput,
});

Modules

| Module | What it does | |--------|-------------| | PromptFirewall | Pattern-matching injection detector — 0 external calls, <1ms | | ToolSentinel | Allowlist/denylist + per-turn rate limiting for tool calls | | MemoryGuard | TTL enforcement + untrusted-write quarantine for agent memory |


Policy options

| Option | Default | Description | |--------|---------|-------------| | tool_allowlist | None | Whitelist of permitted tool names. None = all allowed | | tool_denylist | [] | Hard-blocked tool names | | memory_ttl | 3600 | Memory entry lifetime in seconds. 0 = no expiry | | injection_sensitivity | "medium" | Pattern set: low / medium / high | | on_violation | "warn" | "warn" (log only), "block" (raise), "quarantine" (suppress) | | max_tool_calls_per_turn | 20 | Rate limit per agent turn | | max_memory_entries | 1000 | Cap on memory store size |


License

Apache 2.0