EveryDev.ai
Subscribe
Home
Tools

4,020+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Cloudflare Security Audit Skill
    Cloudflare Security Audit Skill icon

    Cloudflare Security Audit Skill

    Application Security
    Featured

    A coding-agent skill that turns your AI agent into a multi-phase security auditor with independently verified, machine-readable vulnerability findings.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT License. Free to use, modify, and distribute.

    Engagement

    Available On

    CLI
    API
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Application SecurityAgent HarnessCode Security

    Alternatives

    SkillShieldSonarQubeHackerOne Code
    Developer
    CloudflareSan FranciscoEst. 2009$332.1M raised

    Listed Sep 2026

    About Cloudflare Security Audit Skill

    Cloudflare's security-audit-skill is an open-source, MIT-licensed coding-agent skill that orchestrates a structured, multi-phase security audit of any codebase. It was created by Cloudflare's security AI research team and seeded the internal vulnerability discovery harness described in the Cloudflare blog post "Build your own vulnerability harness." The skill is installed via the Skills CLI and activates automatically when a compatible coding agent receives a security audit or vulnerability-finding request.

    What It Is

    Security-audit-skill is a prompt-and-orchestration package that gives a coding agent a repeatable, adversarially validated security audit workflow. Rather than a single-pass scan, it runs six structured phases—reconnaissance, coverage-led hunting, candidate validation, structured output, independent record verification, and target-neutral reporting—each using isolated sub-agents to prevent confirmation bias. The output is a set of machine-readable JSON findings validated against a bundled schema, plus human-readable Markdown reports.

    Six-Phase Audit Workflow

    The skill structures every audit into six distinct phases:

    • Reconnaissance — maps architecture, trust boundaries, input surfaces, and prior evidence into architecture.md and coverage-ledger.json.
    • Coverage-led hunting — assigns isolated hunter agents from ledger units, records their checks, and uses coverage critics to surface gaps.
    • Candidate validation — each unique candidate is handed to a fresh verifier agent that attempts to disprove it (adversarial validation).
    • Structured output — writes confirmed, needs_validation, and rejected records to findings.json, validated against report-schema.json.
    • Independent record verification — fresh agents verify final source claims; material replacements receive another independent verifier.
    • Target-neutral reporting — derives REPORT.md, FINDINGS-DETAIL.md, and NEEDS-VALIDATION.md from verified records and the coverage ledger.

    Validators (validate-coverage-ledger.cjs and validate-findings.cjs) run automatically at key phase boundaries to enforce schema integrity throughout.

    Attack Class Coverage

    The skill ships with a comprehensive library of attack-class prompt files covering a wide range of target types:

    • Core, wildcard, and obvious-things classes (ATTACK-CLASSES.md)
    • Memory safety and binary/kernel targets (MEMORY-SAFETY-AND-BINARY.md)
    • AI and LLM targets including prompt injection and agent/tool abuse (AI-AND-LLM.md)
    • Web, HTTP protocol, cache, and authentication (WEB-PROTOCOL-AND-AUTH.md)
    • Client-side: DOM injection, messaging trust, UI redress, prototype pollution (CLIENT-SIDE.md)
    • Supply chain, CI, release, signing, and plugin/extension (SUPPLY-CHAIN-AND-RELEASE.md)
    • Cloud and deployment: IAM, IaC, container, serverless, ingress (CLOUD-AND-DEPLOYMENT.md)
    • RPC, serialization, queue, broker, webhook, and streaming protocols (PROTOCOLS-RPC-AND-MESSAGING.md)
    • Resource exhaustion, quota, and operator-spend (RESOURCE-EXHAUSTION-AND-AVAILABILITY.md)
    • Data isolation, tenant separation, cache, export, backup, and deletion (DATA-ISOLATION-AND-LIFECYCLE.md)
    • Native app, deep-link, webview, exported components, and local IPC (DESKTOP-MOBILE-AND-LOCAL-IPC.md)

    Design Principles

    The skill enforces several opinionated rules to keep findings trustworthy:

    • Only confirm established boundary failures. Blocked leads stay as needs_validation with an exact unresolved fact rather than being promoted to confirmed.
    • Adversarial validation. The agent that checks a finding is never the agent that found it.
    • Severity requires impact. Likelihood × impact, not deviation from a checklist.
    • Defense-in-depth gaps are not vulnerabilities. If Layer A prevents the attack, the absence of Layer B is a hardening note.
    • Multiple runs are additive. The skill uses prior ledgers and findings to target gaps and revalidate changed source across runs. The README notes that in Cloudflare's test runs, a single run found roughly half the vulnerabilities that repeated runs found in total.

    Setup Path and Requirements

    Installation uses the Skills CLI (npx skills add), with an optional --global flag for user-level installation. The skill requires a coding agent whose underlying model supports tool use and parallel sub-agents, Node.js for the zero-dependency validators, and an OS-enforced sandbox for any target-controlled code execution. Without sandbox controls, the workflow keeps leads as needs_validation rather than executing target code. The GitHub repository had over 13,900 stars and 744 forks as of its last recorded update.

    Cloudflare Security Audit Skill - 1

    Community Discussions

    Be the first to start a conversation about Cloudflare Security Audit Skill

    Share your experience with Cloudflare Security Audit Skill, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT License. Free to use, modify, and distribute.

    • Six-phase structured security audit workflow
    • Full attack-class prompt library
    • Zero-dependency findings and coverage-ledger validators
    • Machine-readable JSON findings with schema validation
    • Human-readable Markdown report generation

    Capabilities

    Key Features

    • Six-phase structured security audit workflow
    • Adversarial candidate validation with independent verifier agents
    • Coverage-led hunting with coverage-ledger tracking
    • Machine-readable findings output validated against JSON schema
    • Human-readable Markdown reports (REPORT.md, FINDINGS-DETAIL.md, NEEDS-VALIDATION.md)
    • Comprehensive attack-class prompt library (AI/LLM, web, cloud, supply chain, memory safety, etc.)
    • Zero-dependency findings and coverage-ledger validators (Node.js)
    • Additive multi-run support targeting gaps from prior runs
    • Automatic skill activation on security audit trigger phrases
    • Guidance mode for focused vulnerability questions without full report artifacts
    • Sandbox-aware workflow (keeps leads as needs_validation without OS-enforced sandbox)
    • Skills CLI installation with global flag support

    Integrations

    Skills CLI (skills.sh)
    Node.js
    Coding agents with tool use and parallel sub-agent support
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Cloudflare Security Audit Skill and help others make informed decisions.

    Developer

    Cloudflare

    Cloudflare builds cloud platform services that help developers build and deploy applications at the edge. The company operates one of the world's largest networks spanning over 300 cities globally. Cloudflare provides security, performance, and serverless computing products including Workers, Pages, R2, and D1.

    Founded 2009
    101 Townsend Street
    $332.1M raised
    5,156 employees

    Used by

    Shopify
    Discord
    Figma
    Canva
    +8 more
    Read more about Cloudflare
    WebsiteGitHubLinkedInX / Twitter
    8 tools in directory

    Similar Tools

    SkillShield icon

    SkillShield

    Security-scored AI skills directory that scans, scores, and verifies public GitHub and GitLab repositories containing SKILL.md files.

    SonarQube icon

    SonarQube

    SonarQube is a static code analysis platform that detects bugs, security vulnerabilities, code smells, and secrets across 40+ programming languages to ensure code quality and security.

    HackerOne Code icon

    HackerOne Code

    Expert code review and security guidance platform that catches vulnerabilities earlier in development with AI and human expert review.

    Browse all tools

    Related Topics

    Application Security

    AI tools for securing software applications and identifying vulnerabilities.

    125 tools

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    179 tools

    Code Security

    Tools that analyze code for security vulnerabilities and issues.

    56 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions