Security scanning skill for AI coding agents automatically checks deployments

A developer has published a security scanning skill file for AI coding agents that automatically checks deployments for common security issues. The tool was created after repeatedly finding exposed .env files and open ports in applications after deployment by AI agents.
What the skill does
The skill file enables AI coding agents to run an automated security scan after every deployment. According to the source, it specifically looks for:
- Exposed secrets (like .env files)
- Open database ports
- Missing security headers
- Leaked source code
The scan completes in approximately 30 seconds. The developer mentions this addresses a practical problem: "I kept finding exposed .env files and open ports in apps after my agent deployed them."
Technical implementation
The skill is available on ClawHub at https://clawhub.ai/doureios39/preflyt. The developer identifies as /u/doureios39 on Reddit and is actively seeking feedback on the implementation.
For context, skills in AI coding agent ecosystems like OpenClaw typically consist of configuration files or scripts that extend an agent's capabilities. This particular skill appears to integrate security scanning directly into the deployment workflow, allowing agents to self-audit their work automatically.
Security scanning tools for deployments typically work by checking exposed endpoints, analyzing response headers, and scanning for sensitive files that shouldn't be publicly accessible. Integrating this as a post-deployment step helps catch configuration errors before they become security incidents.
📖 Read the full source: r/openclaw
👀 See Also

FFF - Fast File Finder claims 100x speed advantage over ripgrep
FFF (Fast File Finder) is a web-based file search tool that claims to be 100x faster than ripgrep, positioning itself as a next-generation alternative to regex-based search methods. The tool requires JavaScript to run and was recently discussed on Hacker News with 36 points and 17 comments.

Arena AI Model ELO History Tracks LLM Performance Decay Over Time
A live dashboard visualizes ELO ratings of flagship models from major AI labs, revealing gradual performance degradation and sudden jumps at new releases. The tool dynamically plots one curve per lab, tracking the highest-rated model.

Agentlint: GitHub App that catches CLAUDE.md contradictions and broken pointers on every PR
Agentlint is a GitHub App that audits your full agent-rules surface (CLAUDE.md, AGENTS.md, skills, hooks) on every PR, posting inline comments for contradictions, broken paths, and unsupported harness features. Free for public repos.

Elodin Open-Sources AI Racing Harness with Real-Time Betaflight Simulation for AI Grand Prix Contestants
Elodin released an open-source simulation harness for the AI Grand Prix virtual qualifier, matching competition constraints and running against real Betaflight. The Rust/Bevy-based tool generates camera sensor samples directly in the loop, avoiding heavy game engine overhead.