security

security is a skill for Claude Code, Codex from rajitsaha/100xprism. It costs 55 tokens per session (1,140 once invoked), scanned A, original, MIT.

A security review process for a code project that checks its installed packages and tracked files for known vulnerabilities and exposed secrets. It also looks for project-specific exceptions before deciding what needs attention.

In plain words
What is it for?
Use it to scan projects with common package managers, inspect dependency trees and repository files, identify leaked secrets or vulnerable packages, apply possible fixes, and report unresolved findings.
Why use it?
It helps find risky dependencies and accidentally committed credentials, while distinguishing documented exceptions from real problems. It can fix issues that are safe to correct and report the rest.

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/rajitsaha/100xprism/security
Any agent
npx skills add rajitsaha/100xprism --skill security
Clone the repo
git clone --depth 1 https://github.com/rajitsaha/100xprism

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for security

README.md
[![agentmods](https://agentmods.dev/badge/skills/rajitsaha/100xprism/security.svg)](https://agentmods.dev/skills/rajitsaha/100xprism/security)
Your own site
<a href="https://agentmods.dev/skills/rajitsaha/100xprism/security"><img src="https://agentmods.dev/badge/skills/rajitsaha/100xprism/security.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,140 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.00055 $0.01140
Opus 5 $0.00028 $0.00570
Sonnet 5 $0.00011 $0.00228
Haiku 4.5 $0.00006 $0.00114

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

Security

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 5d 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.

Reads agent configuration directorieslowAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

. | grep -v node_modules | grep -v venv | grep -v dist | grep -v ".claude/" \

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.agents/skills/security/SKILL.md · 139 lines

How it starts

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

Security — Vulnerability Scanner & Secret Audit

You are a security engineer. Auto-detect package managers, scan for vulnerabilities and leaked secrets, fix what's fixable, report the rest.

Do NOT ask for permission — scan everything, fix what you can, report the rest.


Step 1 — Detect package managers

PROJECT_ROOT=$(git rev-parse --show-toplevel)
cd "$PROJECT_ROOT"
ls package.json api/package.json requirements.txt pyproject.toml 2>/dev/null

Step 2 — Load project-specific known exceptions

Read the project instruction file for any documented known exceptions before determining what is blocking:

# Detect project instruction file
INSTRUCTION_FILE=$(for f in CLAUDE.md AGENTS.md .cursorrules; do [ -f "$PROJECT_ROOT/$f" ] && echo "$PROJECT_ROOT/$f" && break; done)
[ -n "$INSTRUCTION_FILE" ] && grep -A3 -i "known exception\|security exception\|audit exception" "$INSTRUCTION_FILE" 2>/dev/null | head -30

In addition, the following patterns are universally non-blocking across all projects (install-time only, not runtime risks):

  • tar, node-gyp, @mapbox/node-pre-gyp, cacache, make-fetch-happen — native addon compilation during npm install
  • undici via Firebase SDK when fix requires --force (breaks Vite/other deps)
  • sqlite3 install-time compilation deps

Any high/critical vulnerability NOT matching the above patterns → BLOCKING.


Step 3 — Dependency vulnerability scan

npm projects:

# Root (frontend)
npm audit --json 2>/dev/null

# Backend (if api/ exists)
cd api && npm audit --json 2>/dev/null

Build severity summary per project:

Project Critical High Moderate Low Total

Detail each critical/high: package, severity, advisory title, fix available, dependency chain, exception status.

Python projects:

./venv/bin/pip-audit 2>/dev/null || (./venv/bin/pip install pip-audit && ./venv/bin/pip-audit)

Read the full file on GitHub · 139 lines

Files

What ships with it

1 file 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. 5d ago First seen · 139 lines · 55 tokens per session scan A 4fc80f893c07

Subscribe to this mod's changes

security is a skill published in the GitHub repository rajitsaha/100xprism (10 stars, last pushed 4d ago), licensed MIT. It adds 55 tokens to every session and 1,140 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (reads agent configuration directories). 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

analyzing-windows-lnk-files-for-artifacts

Parse Windows LNK shortcut files to extract target paths, timestamps, volume information, and machine identifiers for forensic timeline reconstruction.

marysatasselshaped667/skills-collection-1 · 36 tokens

amazon-alexa

Integracao completa com Amazon Alexa para criar skills de voz inteligentes, transformar Alexa em assistente com Claude como cerebro (projeto Auri) e integrar com AWS ecosystem (Lambda, DynamoDB, Polly, Transcribe, Lex, Smart Home).

marysatasselshaped667/skills-collection-1 · 53 tokens

laravel-api

Build production-ready RESTful APIs with Laravel. Covers authentication (Sanctum/Passport), versioning, resources, rate limiting, and API testing.

AtulPurohit/Antigravity-Awesome-Skills · 34 tokens

laravel-architect

Design and build robust Laravel applications using best practices, proper architecture patterns, Eloquent ORM, service containers, and Laravel ecosystem tools.

AtulPurohit/Antigravity-Awesome-Skills · 31 tokens

wordpress-developer

Develop professional WordPress sites, custom themes, and plugins. Covers WordPress best practices, hooks system, custom post types, WP REST API, and security.

AtulPurohit/Antigravity-Awesome-Skills · 36 tokens

analyzing-command-and-control-communication

Analyzes malware command-and-control (C2) communication protocols to understand beacon patterns, command structures, data encoding, and infrastructure. Covers HTTP, HTTPS, DNS, and custom protocol C2 analysis for detection development and threat intelligence. Activates for requests involving C2 analysis, beacon…

marysatasselshaped667/skills-collection-1 · 80 tokens