Enhances the ClawSec suite's guarded skill installer with ClawHub reputation checks. Adds a second layer of security by checking VirusTotal Code Insight scores and other reputation signals before allowing skill installation.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionclawsec-clawhub-checkerExecute the skills CLI command in your project's root directory to begin installation:
Fetches clawsec-clawhub-checker from prompt-security/clawsec and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate clawsec-clawhub-checker. Access via /clawsec-clawhub-checker in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
883
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
883
stars
Enhances the ClawSec suite's guarded skill installer with ClawHub reputation checks. Adds a second layer of security by checking VirusTotal Code Insight scores and other reputation signals before allowing skill installation.
clawhub install - Intercepts skill installation requestsThis skill must be installed after clawsec-suite:
# First install the suite
npx clawhub@latest install clawsec-suite
# Then install the checker
npx clawhub@latest install clawsec-clawhub-checker
# Run the setup script to integrate with clawsec-suite
node ~/.openclaw/skills/clawsec-clawhub-checker/scripts/setup_reputation_hook.mjs
# Restart OpenClaw gateway for changes to take effect
openclaw gateway restart
After setup, the checker adds enhanced_guarded_install.mjs and
guarded_skill_install_wrapper.mjs under clawsec-suite/scripts and updates the advisory
guardian hook. The original guarded_skill_install.mjs is not replaced.
After setup, run the wrapper (drop-in path) or the enhanced script directly:
# Recommended drop-in wrapper
node scripts/guarded_skill_install_wrapper.mjs --skill some-skill --version 1.0.0
# Or call the enhanced script directly
node scripts/enhanced_guarded_install.mjs --skill some-skill --version 1.0.0
The enhanced flow:
--confirm-reputation0 - Safe to install (no advisories, good reputation)42 - Advisory match found (existing behavior)43 - Reputation warning (new - requires --confirm-reputation)1 - ErrorEnvironment variables:
CLAWHUB_REPUTATION_THRESHOLD - Minimum reputation score (0-100, default: 70)The checker enhances but doesn't replace existing security:
# Try to install a skill
node scripts/guarded_skill_install_wrapper.mjs --skill suspicious-skill --version 1.0.0
# Output might show:
# WARNING: Skill "suspicious-skill" has low reputation score (45/100)
# - Flagged by VirusTotal Code Insight: crypto keys, external APIs, eval usage
# - Author has no other published skills
# - Skill is less than 7 days old
#
# To install despite reputation warning, run:
# node scripts/guarded_skill_install_wrapper.mjs --skill suspicious-skill --version 1.0.0 --confirm-reputation
# Install with confirmation
node scripts/guarded_skill_install_wrapper.mjs --skill suspicious-skill --version 1.0.0 --confirm-reputation
--confirm-reputationClawHub shows two security badges on skill pages:
Example from clawsec-suite page:
Our checker cannot access OpenClaw internal check warnings as they're not exposed via clawhub CLI or API.
To enable complete reputation checking, ClawHub should expose internal check results via:
clawhub inspect --json endpointclawhub install warning outputOur heuristic checks (skill age, author reputation, downloads, updates) provide similar risk assessment but miss specific operational warnings about bypasses, missing signatures, etc. Always check the ClawHub website for complete security assessment.
To modify the reputation checking logic, edit:
scripts/enhanced_guarded_install.mjs - Main enhanced installerscripts/check_clawhub_reputation.mjs - Reputation checking logichooks/clawsec-advisory-guardian/lib/reputation.mjs - Hook integrationGNU AGPL v3.0 or later - Part of the ClawSec security suite
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
daymade/claude-code-skills
davila7/claude-code-templates
wshobson/agents
jeffallan/claude-skills
dpearson2699/swift-ios-skills
cinience/alicloud-skills
clawsec-clawhub-checker is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
clawsec-clawhub-checker has been reliable in day-to-day use. Documentation quality is above average for community skills.
clawsec-clawhub-checker reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for clawsec-clawhub-checker matched our evaluation — installs cleanly and behaves as described in the markdown.
clawsec-clawhub-checker is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
clawsec-clawhub-checker reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: clawsec-clawhub-checker is focused, and the summary matches what you get after install.
We added clawsec-clawhub-checker from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in clawsec-clawhub-checker — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend clawsec-clawhub-checker for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 53