Penetration Testing AI Assistant based on open source LLMs.
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
# Add to your Claude Code skills
git clone https://github.com/antoninoLorenzo/AI-OPSGuides for using ai agents skills like AI-OPS.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:16:17.867Z",
"npmAuditRan": true,
"pipAuditRan": false
}💡 Note: AI-OPS is an active research prototype.
AI-OPS is an open agent for penetration-testing and cybersecurity tasks. You run the agent behind an HTTP API, in a container with the offensive tooling preinstalled, and drive it from a terminal client.
It is built to be model-agnostic: it uses litellm under the hood, so you can point it at a hosted provider, an OpenAI-compatible endpoint, or a self-hosted model. The design targets medium-sized LLMs, so it stays usable without frontier-scale hardware.
This is mostly an experiment tool, don't expect it to replace any actual competence in pentesting/cybersecurity.
litellm supports, including OpenAI-compatible and self-hosted endpoints.AI-OPS has two parts:
The LLM is external and yours to choose.
Pull and run the image, passing your model configuration as environment variables:
docker run --rm -p 8000:8000 -e AI_OPS_MODEL=openai/your-model -e LLM_API_BASE=http://your-endpoint/v1 -e LLM_API_KEY=your-key -v ai_ops_data:/home/aiops/.local/share/ai_ops ghcr.io/antoninolorenzo/ai-ops:latest
AI_OPS_MODEL is the only required setting (a fully-qualified litellm model id). LLM_API_BASE and LLM_API_KEY are optional and depend on your provider.127.0.0.1 the API runs without auth for local use. If you expose it on a network, set AI_OPS_AUTH_TOKEN. See Run the API Server for more details.Download the latest ai-ops-cli from Releases, then:
chmod +x ai-ops-cli
./ai-ops-cli --base-url http://127.0.0.1:8000
Flags, the config file, slash commands, and resume are covered in Use the CLI.
Full documentation lives at antoninolorenzo.github.io/AI-OPS:
The agent can be driven directly from Python for automation or benchmarking, without the API. See Run the Agent Programmatically.
Contributions are welcome. See CONTRIBUTE.md for setup, testing, and documentation guidelines.
AI-OPS is designed as an ethical hacking tool intended for academic and educational purposes only.
The creators and contributors of AI-OPS are not responsible for any misuse of this tool. By using AI-OPS, you agree to take full responsibility for your actions and to use the tool in a manner that is ethical, legal, and in accordance with the intended purpose. The creators are not liable for any damages or legal repercussions resulting from the use of this tool.
Released under the MIT License.
AI-OPS is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by antoninoLorenzo. Penetration Testing AI Assistant based on open source LLMs. It has 160 GitHub stars.
Yes. AI-OPS 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/antoninoLorenzo/AI-OPS" and add it to your Claude Code skills directory (see the Installation section above).
AI-OPS is primarily written in Python. It is open-source under antoninoLorenzo 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 AI-OPS against similar tools.
No comments yet. Be the first to share your thoughts!