agentsclimarketplace

Security

Skill LazyIsEfficient/agentic-os/.claude/skills/security

Scan and redact PII and sensitive data (emails, phone numbers, SSNs, API keys, IP addresses, credentials, amounts, company/person names) from repository files. Includes a pre-commit hook to block commits containing PII. Use when asked to audit code for sensitive data, sanitize files before publishing, or install PII detection hooks. For application security hardening see security-engineering.From its SKILL.md

Install
npx -y skills add LazyIsEfficient/agentic-os --skill security

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.6 KB, 363 tokens by cl100k_base, as published. Nobody here has run it

Security Sanitizer

Scans and redacts PII / sensitive data from files in this repo. Uses only Python standard library — no external dependencies.

Tools

Resolve scripts project-first, then global install (findings-ledger references/install-paths.md — same pattern, swap skill name):

PROJ="${CLAUDE_PROJECT_DIR:-.}"
SAN="$PROJ/.claude/skills/security/scripts/sanitizer.py"
[ -f "$SAN" ] || SAN="$PROJ/.agents/skills/security/scripts/sanitizer.py"
[ -f "$SAN" ] || SAN="$HOME/.claude/skills/security/scripts/sanitizer.py"
[ -f "$SAN" ] || SAN="$HOME/.agents/skills/security/scripts/sanitizer.py"
ScriptPurposeKey Command
scripts/sanitizer.pyScan or redact PII in filespython3 "$SAN" --scan --dir . --recursive
scripts/pre-commit-hook.shGit hook to block commits with PIICopy it from the resolved skill directory to .git/hooks/pre-commit, then chmod +x it

Configuration

Edit scripts/sanitizer-config.json beside this skill (same directory as $SAN) to customize blocklists, custom regex patterns, skip paths, and placeholder format.

Exit Codes

0 = clean, 1 = PII found (useful for CI).

Related skills

  • security-engineering — application security, OWASP, auth hardening, input validation, auth/session patterns for web applications

What ships with it: 4 files

19.8 KB alongside SKILL.md, 2 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.