Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

add-guard-protection添加守卫保护

Agent Skill

add-guard-protection 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

372

周安装

16

GitHub Stars

公开资料未说明

下载量

131
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:add-guard-protection(添加守卫保护)
来源仓库:https://github.com/arcjet/skills
仓库路径:skills/add-guard-protection
安装命令:
npx skills add https://github.com/arcjet/skills --skill add-guard-protection
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/arcjet/skills --skill add-guard-protection

简介

add-guard-protection 用于为 AI Agent 工具调用、MCP 处理器等无 HTTP 请求路径添加安全防护机制。

  • 适用于需要防止提示词注入、限制调用频率或屏蔽敏感信息的系统环境。
  • 通过 Arcjet Guard 实现速率限制、异常输入检测和自定义规则配置。
  • 需先通过 CLI 完成身份认证和站点设置,注意密钥管理与远程规则同步的安全性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Add Arcjet Guard Protection

Arcjet Guard provides rate limiting, prompt injection detection, sensitive information blocking, and custom rules for code paths that don't have an HTTP request — AI agent tool calls, MCP tool handlers, background job processors, queue workers, and similar.

Step 0: Set Up the Arcjet CLI

The Arcjet CLI is the primary tool for authenticating, managing sites, configuring remote rules, and monitoring traffic. Install it if not already available:

# Via npx (no install required)
npx @arcjet/cli --help

# Or install globally via npm
npm install -g @arcjet/cli

# Or via Homebrew
brew install arcjet

Authenticate

arcjet auth login

Opens the browser for authentication. Check status with arcjet auth status.

Site & Key Setup

# List your teams
arcjet teams list

# List sites for a team
arcjet sites list --team-id <team-id>

# Create a new site
arcjet sites create --team-id <team-id> --name "My Guard App" --confirm

# Get the SDK key for a site
arcjet sites get-key --site-id <site-id>

Add the key to your environment file (.env, .env.local, etc.) as ARCJET_KEY.

Step 1: Detect the Language and Install

Check the project for language indicators:

  • package.json → JavaScript/TypeScript → npm install @arcjet/guard (requires @arcjet/guard >= 1.4.0)
  • requirements.txt / pyproject.toml → Python → pip install arcjet (requires arcjet >= 0.7.0; Guard is included)
  • go.mod, Cargo.toml, pom.xml, or other languages → Guard is not available. Tell the user that Arcjet Guard currently only supports JavaScript/TypeScript and Python. Do not create a hand-rolled imitation or hallucinate a package that doesn't exist. Suggest they reach out to Arcjet with their use case.

Step 2: Read the Language Reference

You must read the reference file for the detected language before writing any code. The references contain the exact imports, constructor signatures, rule configuration syntax, and guard() call patterns for that language.

Do not guess at the API. The reference files are the source of truth for all code patterns.

Step 3: Create the Guard Client (Once, at Module Scope)

The client holds a persistent connection. Create it once at module scope and reuse it — never inside a function or per-call. Name the variable arcjet.

Check if ARCJET_KEY is set in the environment file (.env, .env.local, etc.). If not, obtain the key in this priority order:

  1. CLI (preferred): Run arcjet sites get-key --site-id <site-id> (requires arcjet auth login first — see Step 0)
  2. MCP: If the Arcjet MCP server is connected, use it to list sites and retrieve the key
  3. Manual (last resort): Add a placeholder and tell the user to get a key from https://app.arcjet.com

Step 4: Configure Rules at Module Scope

Rules are configured once as reusable factories, then called with per-invocation input. This two-phase pattern matters — the rule config carries a stable ID used for server-side aggregation, while the per-call input varies.

When configuring rate limit rules, set bucket to a descriptive name (e.g. "tool-calls", "session-api") for semantic clarity and fewer collisions.

Choosing Rules by Use Case

Use caseRecommended rules
AI agent tool callstokenBucket + detectPromptInjection
MCP tool handlersslidingWindow or tokenBucket + detectPromptInjection
Background AI task processortokenBucket + localDetectSensitiveInfo
Queue worker with user inputtokenBucket + detectPromptInjection + localDetectSensitiveInfo
Scanning tool results for injectiondetectPromptInjection (scan the returned content)

Step 5: Call guard() Inline Before Each Operation

Call guard() directly where each operation happens — inline in each tool handler, task processor, or function that needs protection. Do not wrap guard in a shared helper function.

Each guard() call takes:

  • label: descriptive string for the dashboard (e.g. "tools.search_web", "tasks.generate")
  • rules: array of bound rule invocations
  • metadata (optional): key-value pairs for analytics/auditing (e.g. {userId})

Rate limit rules take an explicit key string — use a user ID, session ID, API key, or any stable identifier.

You MUST modify the existing source files — adding the dependency to package.json/requirements.txt alone is not enough. The guard() calls must be integrated into the actual code.

Step 6: Handle Decisions

Always check decision.conclusion:

  • "DENY" → block the operation. Use per-rule result accessors (see reference) for specific error messages like retry-after times.
  • "ALLOW" → safe to proceed

See the language reference for the exact decision-checking pattern and per-rule result accessors.

Common Mistakes to Avoid

  • Wrapping guard in a shared helper function — calling guard() through a guardToolCall() or protectCall() wrapper hides which rules apply to each operation. Call guard() inline where each operation happens.
  • Creating the client per call — the client holds a persistent connection. Create it once at module scope.
  • Configuring rules inside a function — rule configs carry stable IDs. Creating them per call breaks dashboard tracking and rate limit state.
  • Forgetting the key parameter on rate limit rules — without a key, Guard can't track per-user limits.
  • Forgetting bucket on rate limit rules — without a named bucket, different rules may collide.
  • Using the HTTP SDK when there's no request — use @arcjet/guard / arcjet.guard for non-HTTP code, not @arcjet/node, @arcjet/next, or arcjet().
  • Not checking decision.conclusion — always check before proceeding.
  • Generic DENY messages — use per-rule result accessors to give users specific feedback like retry-after times.

Step 7: Verify Guard Decisions with the CLI (Coming Soon)

Note: The arcjet guards CLI subcommand is not yet released. Once available, use this feedback loop to verify guard decisions are firing correctly.

After adding guard code, use the CLI to verify decisions are firing correctly. This creates a feedback loop: run the app, trigger a guard, inspect the decision, adjust if needed.

1. Start Watching

In a separate terminal, start streaming guard decisions:

arcjet guards watch --site-id <site-id>

This polls for new guard decisions and prints them as they arrive. Use --conclusion DENY to filter to denials only, or --interval 2 for faster polling.

2. Trigger the Guard

Run the application and exercise the code paths that call guard(). Each call should produce a decision visible in the watch output.

3. Inspect Decisions

If a decision doesn't match expectations, inspect it:

# List recent guard decisions
arcjet guards list --site-id <site-id>

# Get per-rule breakdown for a specific decision
arcjet guards details --site-id <site-id> --decision-id <decision-id>

The details view shows each rule execution, its mode (live/dry-run), conclusion, reason, and whether it was skipped — use this to diagnose why a guard allowed or denied unexpectedly.

4. Adjust and Repeat

If rules aren't firing as expected:

  • Check the label matches what appears in the decision
  • Verify the key is correct for rate limit rules (wrong key = wrong bucket)
  • Confirm the bucket name is unique per rule
  • Check rule ordering — rules execute in array order and a DENY from an earlier rule short-circuits later ones

Then re-run and watch again until decisions match expectations.

CLI Quick Reference

TaskCommand
Install/run CLInpx @arcjet/cli or brew install arcjet
Authenticatearcjet auth login
Check auth statusarcjet auth status
List teamsarcjet teams list
List sitesarcjet sites list --team-id <id>
Create sitearcjet sites create --team-id <id> --name "Name" --confirm
Get SDK keyarcjet sites get-key --site-id <id>
Watch guard decisionsarcjet guards watch --site-id <id>
List guard decisionsarcjet guards list --site-id <id>
Guard decision detailsarcjet guards details --site-id <id> --decision-id <id>

Global Flags

All commands support:

  • --output text|json — output format (default: text on TTY, json otherwise)
  • --fields <list> — comma-separated fields to include in JSON output
  • --no-color — disable ANSI colors (also honors NO_COLOR env var)
  • --timeout <duration> — max execution time (e.g. 30s, 5m; 0 disables)

Exit Codes

CodeMeaning
0Success
1General error (unknown command, API failure, network error)
2Authentication error (not logged in, token expired)
3Input validation error (invalid ID, value out of range)
4Confirmation required (mutation needs --confirm)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.56%
按下载量换算47

Claude

31.83%
按下载量换算42

Cursor

19.06%
按下载量换算25

Gemini CLI

10.43%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills