by AgentSecOps
Security operations toolkit for AI coding agents. Give Claude Code 25+ skills to catch vulnerabilities, scan containers, detect secrets, and enforce policies automatically.
# Add to your Claude Code skills
git clone https://github.com/AgentSecOps/SecOpsAgentKitGuides for using ai agents skills like SecOpsAgentKit.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:22:36.769Z",
"npmAuditRan": true,
"pipAuditRan": false
}SecOpsAgentKit is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by AgentSecOps. Security operations toolkit for AI coding agents. Give Claude Code 25+ skills to catch vulnerabilities, scan containers, detect secrets, and enforce policies automatically. It has 127 GitHub stars.
Yes. SecOpsAgentKit passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/AgentSecOps/SecOpsAgentKit" and add it to your Claude Code skills directory (see the Installation section above).
SecOpsAgentKit is primarily written in Python. It is open-source under AgentSecOps on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh SecOpsAgentKit against similar tools.
No comments yet. Be the first to share your thoughts!
An assortment of security operations skills for AI coding agents. A collaborative approach to shift-left security using Claude Code skills.
SecOpsAgentKit provides specialized Claude Code skills for security operations, covering:
/plugin marketplace add https://github.com/AgentSecOps/SecOpsAgentKit.git
Skills in this repository reference industry-standard security frameworks:
We welcome contributions! Please read CONTRIBUTE.md for:
To kickstart a new skill for this repo:
Initialize: Create a new skill from the template
./scripts/init_skill.sh my-skill-name appsec
Develop: Fill in SKILL.md and add bundled resources
scripts/ - Executable security toolsreferences/ - Security framework documentationassets/ - Templates and configurationsValidate: Run the validation script
./scripts/validate_skill.py skills/appsec/my-skill-name
Update Documentation:
.claude-plugin/marketplace.json with your skill pathSubmit: Open a PR with the [skill] tag
See CONTRIBUTE.md for detailed guidelines including the exact format for README.md entries.
All skills follow these requirements:
---
name: skill-name # kebab-case identifier
description: > # Comprehensive description with use cases
What the skill does and when to use it...
version: 0.1.0 # Semantic versioning
maintainer: github-username # Your GitHub username
category: appsec # Primary security domain
tags: [sast, owasp, security] # Searchable tags
frameworks: [OWASP, CWE] # Security frameworks referenced
---
scripts/init_skill.sh - Initialize a new skill from templatescripts/validate_skill.py - Validate skill structure and frontmatterskills/_template/ - Base template for all new skills