Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ Install or disable them dynamically with the `/plugin` command — enabling you
### Security, Compliance, & Legal
- [ai-ethics-governance-specialist](./plugins/ai-ethics-governance-specialist)
- [audit](./plugins/audit)
- [clawsec](./plugins/clawsec)
- [clawsearch](./plugins/clawsearch)
- [compliance-automation-specialist](./plugins/compliance-automation-specialist)
- [data-privacy-engineer](./plugins/data-privacy-engineer)
- [enterprise-security-reviewer](./plugins/enterprise-security-reviewer)
Expand Down
9 changes: 9 additions & 0 deletions plugins/clawsearch/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "clawsearch",
"description": "Security-first skill discovery engine. Search and evaluate AI agent skills with Trust Score ratings, knowledge graph analysis, and security assessments before installation.",
"version": "1.0.0",
"author": {
"name": "ClawSearch"
},
"homepage": "https://clawsearch.cc"
}
23 changes: 23 additions & 0 deletions plugins/clawsearch/commands/clawsearch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
allowed-tools: Bash(curl:*), Bash(jq:*), Bash(npm:*)
description: Search for AI agent skills with security-first discovery via ClawSearch
---

## Context

- ClawSearch API: https://api.clawsearch.cc
- Trust Score ratings across four dimensions
- Pre-install guard available: `npm install -g clawsearch-guard`

## Your task

Search for AI agent skills using ClawSearch and evaluate their security posture.

1. **Search skills**: `curl -s "https://api.clawsearch.cc/api/search?q=$ARGUMENTS" | jq .`
2. **Evaluate Trust Scores**: Review the four-dimension trust score for each result
3. **Check related skills**: Look at knowledge graph connections for similar/alternative skills
4. **Recommend**: Suggest the safest options based on audit status and trust scores

Target: $ARGUMENTS

Provide ranked results with Trust Scores and security recommendations.
9 changes: 9 additions & 0 deletions plugins/clawsec/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "clawsec",
"description": "Security audit tool for AI agent skills. Queries the ClawSec API to check skill security assessments, vulnerability reports, and audit scores before installing or using skills in your projects.",
"version": "1.0.0",
"author": {
"name": "ClawSec"
},
"homepage": "https://clawsec.cc"
}
21 changes: 21 additions & 0 deletions plugins/clawsec/commands/clawsec.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
allowed-tools: Bash(curl:*), Bash(jq:*)
description: Check security audit status of an AI agent skill via ClawSec
---

## Context

- ClawSec API: https://api.clawsec.cc
- Audits 33,000+ skills with a 5-tier assessment engine

## Your task

Query the ClawSec API to check the security audit status of the specified skill.

1. **Lookup skill**: `curl -s "https://api.clawsec.cc/api/skills/search?q=$ARGUMENTS" | jq .`
2. **Review findings**: Check the audit score, risk level, and any flagged vulnerabilities
3. **Summarize**: Present the security assessment with actionable recommendations

Target: $ARGUMENTS

Provide a clear security summary with pass/fail status and any remediation steps.