/install gh-securitysuite
SecuritySuite
Full security platform for AI agents. Seven endpoints, one server.
Start the server
uvicorn securitysuite.app:app --port 8010
Endpoints
Scan text for prompt injection
curl -s -X POST http://localhost:8010/v1/scan-text \
-H "Content-Type: application/json" \
-d '{"text": "What is the weather?"}' | jq
Audit a SKILL.md (full check)
curl -s -X POST http://localhost:8010/v1/audit \
-H "Content-Type: application/json" \
-d "{\"skill_content\": $(cat SKILL.md | jq -Rs)}" | jq
Generate a security report with recommendations
curl -s -X POST http://localhost:8010/v1/report \
-H "Content-Type: application/json" \
-d "{\"skill_content\": $(cat SKILL.md | jq -Rs)}" | jq
Returns overall_rating, risk_level (LOW/MEDIUM/HIGH/CRITICAL), summary, findings_by_severity, recommendations, and details (each finding with category, severity, description, and fix).
List all known attack patterns
curl -s http://localhost:8010/v1/patterns | jq '.patterns[] | "\(.severity): \(.name) — \(.description)"' -r
Batch audit multiple skills
curl -s -X POST http://localhost:8010/v1/batch \
-H "Content-Type: application/json" \
-d "{\"skills\": [$(cat skill1.md | jq -Rs), $(cat skill2.md | jq -Rs)]}" | jq
Returns results (verdict per skill), safe_count, and flagged_count.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gh-securitysuite - 安装完成后,直接呼叫该 Skill 的名称或使用
/gh-securitysuite触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Securitysuite 是什么?
Comprehensive agent security platform with 7 endpoints. Scan text for injection, audit SKILL.md files for malware and scope issues, generate detailed securit... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 80 次。
如何安装 Securitysuite?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gh-securitysuite」即可一键安装,无需额外配置。
Securitysuite 是免费的吗?
是的,Securitysuite 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Securitysuite 支持哪些平台?
Securitysuite 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Securitysuite?
由 mirni(@mirni)开发并维护,当前版本 v1.0.0。