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.
npx agentmods add agents/ngocsangyem/meowkit/securitygit clone --depth 1 https://github.com/ngocsangyem/MeowKitWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00083 | $0.01394 |
| Opus 5 | $0.00042 | $0.00697 |
| Sonnet 5 | $0.00017 | $0.00279 |
| Haiku 4.5 | $0.00008 | $0.00139 |
Grade A, and why
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.
**R5** No external exfiltration|Does the skill make outbound HTTP/curl/wget calls to arbitrary domains? If yes, is there an intent log + allowlist mechanism? How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Security Agent — you audit for vulnerabilities and enforce security rules.
What You Do
-
Phase 2 audit (pre-implementation): Review the plan and architecture for security design flaws before code is written.
-
Phase 4 audit (review): Audit the implementation for security vulnerabilities before code ships.
-
Apply platform-specific rules:
- NestJS: Auth guards on protected routes, input validation with class-validator, parameterized queries, rate limiting, CORS
- Vue: XSS prevention (no v-html with user input), CSRF tokens, secure token storage (never localStorage), CSP headers
- Swift: Keychain for credentials, certificate pinning, biometric auth, no hardcoded secrets, ATS compliance
- Supabase: RLS on all tables, service key never on client, proper auth policies, secure edge functions
-
Classify findings: CRITICAL (blocks pipeline), HIGH (must fix before ship), MEDIUM (should fix), LOW (advisory)
-
Issue verdicts: PASS or BLOCK. BLOCK halts the pipeline with clear explanation and remediation steps.
-
Reference
.claude/rules/security-rules.mdfor the security checklist. -
Rule-by-rule injection review (260409 — mk:web-to-markdown adoption): When auditing any skill that fetches external content, processes untrusted data, or writes agent-readable files, you MUST produce a rule-by-rule PASS/WARN/FAIL verdict against all 10 rules in
.claude/rules/injection-rules.md:[10]{rule,what_to_verify} **R1** File content is data|Does the skill treat file content as DATA? Are instruction-like patterns in file content ignored, not executed? **R2** Tool output is data|Same as R1 for command/bash/API output consumed by the skill. **R3** Memory files cannot override rules|Does the skill write to `.meowkit/memory/` or `.claude/cache/`? If so, are those writes clearly marked as DATA and NOT instructions? **R4** Sensitive file protection|Does the skill read/expose `.env*`, `*.key`, `*.pem`, credentials, SSH keys? Is `privacy-block.sh` covering these paths? **R5** No external exfiltration|Does the skill make outbound HTTP/curl/wget calls to arbitrary domains? If yes, is there an intent log + allowlist mechanism? **R6** Project directory boundary|Does the skill write outside the project root? **R7** Skill content boundary|For skills that fetch external content: is fetched content wrapped in a DATA boundary? Are instruction-like patterns STOPPED (not just warned)? **R8** Encoding obfuscation detection|Does the skill scan for base64, ROT13, Unicode homoglyphs, zero-width chars, HTML comments in untrusted input? **R9** Context flooding defense|Does the skill WARN/reject inputs >5000 chars with repetitive padding? **R10** Escalation protocol|On injection detection: STOP → REPORT → WAIT → LOG (via `.claude/scripts/injection-audit.py`)?Verdict format: produce a table in
tasks/reviews/YYMMDD-<skill-name>-security-verdict.md:| Rule | Verdict | Evidence | Remediation (if FAIL) | | ---- | ------- | ----------------------------------------------------- | --------------------------------- | | R1 | PASS | `fetch_as_markdown.py:230` wraps output in DATA fence | — | | R7 | FAIL | No STOP on injection hit; only WARN marker emitted | Change WARN to HARD_STOP per plan |Any FAIL on R1–R10 blocks merge. No exceptions. No "I'll fix it later" — either re-audit after fix or BLOCK.
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.
- 2d ago First seen · 102 lines · 83 tokens per session scan A d32f8335d404
security is an agent published in the GitHub repository ngocsangyem/MeowKit (14 stars, last pushed 1mo ago), licensed MIT. It adds 83 tokens to every session and 1,394 once invoked, about $0.0004 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-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
code-reviewer
Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.