qa-e2e-security

A live-cluster security testing guide for checking authentication, permissions, gateway rules, audit logs, security headers, HTTPS redirects, and secret exposure. It tests real requests against the running system.

In plain words
What is it for?
Use it to test anonymous and authenticated access, user and administrator permissions, agent grant scopes, consent checks, internal access to secrets, security headers, redirects, logs, and allow-or-deny behavior.
Why use it?
It catches runtime security failures that code review, static scans, or unit tests may not reveal, including wrongly allowed requests or missing audit evidence.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/agent-hellboy/mcp-runtime/qa-e2e-security
Any agent
npx skills add Agent-Hellboy/mcp-runtime --skill qa-e2e-security
Clone the repo
git clone --depth 1 https://github.com/Agent-Hellboy/mcp-runtime

Made for: Claude Code, Codex.

Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,120 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00116 $0.04120
Opus 5 $0.00058 $0.02060
Sonnet 5 $0.00023 $0.00824
Haiku 4.5 $0.00012 $0.00412

Measured 2d ago against content hash a9e03fa8815e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

qa-e2e-security scanned grade A with 1 finding 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 2d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sS -o /dev/null -w "anon=%{http_code}\n" \
.codex/skills/qa-e2e-security/SKILL.md · 329 lines

How it starts

The opening of the file, as written. The whole thing — 329 lines — stays where its author put it; the contents beside it link to each section on GitHub.

QA — E2E Security (live cluster)

Overview

security-audit and security-audit-platform are static reviews — diff, code paths, scanner output. This skill is the dynamic counterpart: it fires real requests at the live cluster and confirms the security invariants actually hold at runtime. It catches policy-materialization regressions, header middleware regressions, and audit-event regressions that static review and unit tests miss.

Threat profiles in scope:

  • anonymous → user (no key, bad key, expired session)
  • user → admin (UI key vs admin key vs ingest-only key)
  • agent A → agent B (grant scoping by humanID/agentID/serverRef)
  • low trust → high trust tool (consent gating)
  • internal pod → secret (reach API/proxy/operator secrets unprivileged) → for cluster RBAC/PSS coverage, defer to k8s-hardening-audit.

Regression evidence contract: for each touched security surface, capture at least one live allow path and one live deny path, plus audit/log/header evidence where that invariant applies. Static code review can explain a finding, but it cannot close this skill as passed.

Step 1 — Confirm precondition

kubectl config current-context | grep -qx kind-mcp-runtime \
  || { echo "Run qa-cluster-bringup first"; exit 1; }
./bin/mcp-runtime cluster doctor

Pull the three key types up front; never echo them into the report.

UI_KEY="$(kubectl get secret mcp-sentinel-secrets -n mcp-sentinel \
  -o jsonpath='{.data.UI_API_KEY}' | base64 -d)"
test -n "$UI_KEY" || { echo "Failed to retrieve UI_KEY"; exit 1; }
INGEST_KEY="$(kubectl get secret mcp-sentinel-secrets -n mcp-sentinel \
  -o jsonpath='{.data.INGEST_API_KEYS}' | base64 -d | cut -d, -f1)"
test -n "$INGEST_KEY" || { echo "Failed to retrieve INGEST_KEY"; exit 1; }

Step 2 — Choose mode

  • head-only. Run the full backend + UI security matrix.
  • git-range (BASE=<merge-base>, default origin/main). Trim by diff.

Sub-suites by changed paths:

Read the full file on GitHub · 329 lines

Files

What ships with it

3 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.

Changes

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.

  1. 2d ago First seen · 329 lines · 116 tokens per session scan A a9e03fa8815e

Subscribe to this mod's changes

qa-e2e-security is a skill published in the GitHub repository Agent-Hellboy/mcp-runtime (5 stars, last pushed 8d ago), licensed Apache-2.0. It adds 116 tokens to every session and 4,120 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

local-frontend-check

Smoke-test or verify UI behaviour on the local Jarvis Registry frontend running at http://localhost/gateway. Use for manual regression checks, bug-fix verification, and end-to-end confirmation of specific flows without running the automated test suite.

ascending-llc/jarvis-registry · 52 tokens

playwright-e2e-testing

Playwright modern end-to-end testing framework with cross-browser automation, auto-wait, and built-in test runner.

activepieces/activepieces · 29 tokens

webmcp-e2e

WebMCP reverse connection gateway(pairing + static/remote モード)の E2E 結合確認を実行する。Manifold 起動 → デモページ → 拡張入り Chromium → ペアリング → tools/call 検証 → タブクローズ時エラー確認までを通し、スクリーンショット証跡を残す。remote モードでは自前 JWKS + JWT で identityKey ルーティングの分離も検証する。「webmcp の E2E」「reverse gateway の動作確認」「拡張の結合テスト」で使用。.

nonchan7720/manifold · 140 tokens

qa-use

E2E testing and browser automation with qa-use CLI. Use when the user needs to run tests, verify features, automate browser interactions, or debug test failures.

desplega-ai/qa-use · 36 tokens

use-agent-browser-for-airi

Test AIRI display-model imports with agent-browser across stage-tamagotchi Electron, stage-web, and stage-pocket mobile web layouts. Use when uploading and verifying contributor-supplied Live2D ZIP, VRM, or MMD ZIP/PMX/PMD files through AIRI's model selector, including onboarding bypass, format-specific import…

moeru-ai/airi · 87 tokens

test-conversion

Workflow for converting unit tests to browser tests for Project Bedrock. Invoke this when the user wants to remove complex Browser dependencies from tests.

chromium/chromium · 31 tokens