Install
$ agentstack add skill-profbernardoj-morpheus-skill-pii-guard ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
PII Guard — Personal Data Leak Prevention
Purpose
Prevents personal identifiable information (PII) from being sent to external services. This skill MUST be checked before any outbound action that transmits data externally.
When This Fires
Mandatory check before:
git push(any repo)- Sending emails
- Posting to social media (X/Twitter, Moltbook, etc.)
- Publishing to ClawHub
- Creating/updating GitHub issues, PRs, discussions, or comments
- Any
messageaction to external channels with file attachments - Any
web_fetchPOST or form submission - Any
execcommand that sends data externally (curl POST, scp, rsync, etc.)
How It Works
1. Pattern File
All protected patterns live in the workspace:
~/.openclaw/workspace/.pii-patterns.json
This file is NEVER committed — it contains the very data it protects.
2. Scanning
The scanner checks content against all patterns in these categories:
names— Protected personal namesemails— Protected email addressesphones— Protected phone numbers (all formats)wallets— Protected blockchain addressesorganizations— Protected org/church/school namespeople— Protected associate/contact nameswebsites— Protected personal domainskeywords— Any other protected strings
3. Behavior: HARD BLOCK
When PII is detected:
- STOP — Do not proceed with the external action
- REPORT — Tell the user exactly what was found and where
- WAIT — Only proceed if the user explicitly confirms after reviewing
Error format:
🚫 PII GUARD: Blocked — personal data detected
Found in:
Match: ""
Category:
Action blocked:
To proceed: Remove the PII or explicitly confirm override.
4. Git Pre-Push Hook
A global git hook is installed at:
~/.openclaw/workspace/scripts/git-hooks/pre-push
Configured via: git config --global core.hooksPath ~/.openclaw/workspace/scripts/git-hooks
This runs automatically on every git push across ALL repos on this machine.
- Scans the diff being pushed (not just HEAD)
- Blocks push if PII detected
- Can be bypassed with
git push --no-verify(use with extreme caution)
5. Agent Integration
The agent should call pii_scan before external actions:
# Scan a file
~/.openclaw/workspace/scripts/pii-scan.sh
# Scan stdin
echo "some content" | ~/.openclaw/workspace/scripts/pii-scan.sh -
# Scan a string
~/.openclaw/workspace/scripts/pii-scan.sh --text "check this string"
Exit codes:
0— Clean, no PII found1— PII detected (blocked)2— Error (patterns file missing, etc.)
Adding New Patterns
Edit ~/.openclaw/workspace/.pii-patterns.json and add entries to the appropriate category array. Changes take effect immediately — no restart needed.
Security Notes
.pii-patterns.jsonmust NEVER be committed to any repo- The patterns file itself contains PII — treat it as sensitive
- The hook and scan scripts are safe to publish (they contain no PII)
- When in doubt, scan first
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: profbernardoj
- Source: profbernardoj/morpheus-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.