/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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gh-securitysuite - After installation, invoke the skill by name or use
/gh-securitysuite - Provide required inputs per the skill's parameter spec and get structured output
What is Securitysuite?
Comprehensive agent security platform with 7 endpoints. Scan text for injection, audit SKILL.md files for malware and scope issues, generate detailed securit... It is an AI Agent Skill for Claude Code / OpenClaw, with 80 downloads so far.
How do I install Securitysuite?
Run "/install gh-securitysuite" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Securitysuite free?
Yes, Securitysuite is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Securitysuite support?
Securitysuite is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Securitysuite?
It is built and maintained by mirni (@mirni); the current version is v1.0.0.