Security scanning skill for AI coding agents checks deployments automatically

A developer has built a security scanning skill for AI coding agents that automatically checks deployments for common vulnerabilities. The skill was created after the developer repeatedly found exposed .env files and open ports in applications after their agent deployed them.
How it works
The skill file allows AI coding agents to check their own deployments automatically. It runs a scan after every deploy, looking for several specific security issues:
- Exposed secrets (specifically mentioned: .env files)
- Open database ports
- Missing security headers
- Leaked source code
The scan takes approximately 30 seconds to complete. The developer notes this is a proactive measure to catch security issues immediately after deployment rather than discovering them later.
Availability and discussion
The skill has been published on ClawHub at https://clawhub.ai/doureios39/preflyt. The developer is asking the community if others have built similar security-related skills for their AI coding agents.
This type of automated security scanning is particularly relevant for AI coding agents, which can rapidly deploy applications but may not have built-in security validation. Automated post-deployment checks can help catch common misconfigurations before they become security incidents.
📖 Read the full source: r/clawdbot
👀 See Also

RunAnywhere RCLI: On-Device Voice AI Pipeline for Apple Silicon
RunAnywhere has released RCLI, an open-source voice AI pipeline for macOS that runs STT, LLM, and TTS entirely on Apple Silicon devices. The tool uses their proprietary MetalRT inference engine and claims significant performance improvements over existing solutions.

Claude Code's Tool API Details Revealed
A Reddit user extracted details about Claude Code's tool API, including file system operations, bash execution, web search, and how tool calls are structured using XML-like blocks.

AI Doomsday Toolbox v0.932 adds benchmarking, dataset creation, and agent workspace for Android local AI
AI Doomsday Toolbox v0.932 introduces benchmarking for local LLMs on Android devices, a dataset creator that converts text/PDF files to Alpaca JSON format, and an AI agent workspace with Termux integration. The update also includes subtitle burning with Whisper and built-in Ollama management tools.

Vektori's Memory Architecture: Principles from Claude's Leaked System
Vektori implements a three-layer hierarchical sentence graph for AI memory, inspired by leaked principles from Claude's architecture. The system uses strict quality filters, skeptical retrieval with a 0.3 minimum score, and maintains correction history across sessions.