prowler-studio AGENTS.md

prowler-studio AGENTS.md is an instructions file for Codex, OpenCode from prowler-cloud/prowler-studio. It costs 6,255 tokens per session, scanned A, original, Apache-2.0.

A repository guide for developing security checks in Prowler Studio, a system that uses separate agents to automate security-check work.

In plain words
What is it for?
Use it when adding or changing Prowler Studio agents, shared tools, tests, compliance mappings, reviews, or pull-request workflows.
Why use it?
It gives coding agents the project structure, development rules, testing expectations, and workflow needed to make consistent changes safely.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/prowler-cloud/prowler-studio/agents-md
Clone the repo
git clone --depth 1 https://github.com/prowler-cloud/prowler-studio

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for prowler-studio AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/prowler-cloud/prowler-studio/agents-md.svg)](https://agentmods.dev/instructions/prowler-cloud/prowler-studio/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/prowler-cloud/prowler-studio/agents-md"><img src="https://agentmods.dev/badge/instructions/prowler-cloud/prowler-studio/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 6,255 This file is loaded in full into every session.
When invoked 6,255 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.06255 $0.06255
Opus 5 $0.03127 $0.03127
Sonnet 5 $0.01251 $0.01251
Haiku 4.5 $0.00626 $0.00626

Measured 5d ago against content hash 50d0f72c3905, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

prowler-studio AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 805 lines

How it starts

The opening of the file, as written. The whole thing — 805 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Development Guide

This document covers the architecture of Prowler Studio and the coding standards for developing its agents. Read System Architecture to understand how the pieces fit together; read the development best practices that follow before adding or modifying an agent.

Table of Contents

System Architecture

Development Best Practices


System Architecture

Overview

Prowler Studio uses the Claude Agent SDK to automate the creation of security checks for Prowler. The architecture separates each task (implementation, testing, compliance mapping, review, PR creation) into an independent agent. Agents run sequentially, with built-in verification and error-correction loops between them.

Project Structure

prowler_studio/
├── src/
│   ├── core/
│   │   ├── main.py              # CLI entry point
│   │   └── exceptions.py        # Custom exceptions
│   ├── agents/
│   │   ├── base.py              # Agent base class
│   │   ├── implementation/      # ChecKreatorAgent for check creation
│   │   │   ├── agent.py         # Main agent implementation
│   │   │   ├── models.py        # Data models
│   │   │   └── prompts/         # Jinja2 prompt templates
│   │   ├── testing/             # TestingAgent for test generation
│   │   ├── review/              # ReviewAgent for code review
│   │   ├── compliance_mapping/  # ComplianceMappingAgent
│   │   └── pr_creation/         # PRCreationAgent for PR workflow
│   ├── tools/                   # Shared tools
│   │   ├── git.py               # Git operations and worktree management
│   │   ├── prowler.py           # Prowler-specific tools
│   │   ├── skills.py            # AI skills setup
│   │   ├── jira.py              # Jira URL parsing
│   │   ├── jira_client.py       # Jira API client
│   │   ├── github_issue.py      # GitHub issue URL parsing
│   │   ├── github_client.py     # GitHub REST API client
│   │   └── models.py            # Tool data models
│   └── utils/                   # Utilities
│       ├── prompts.py           # Prompt loading utilities
│       └── logging.py           # Logging utilities (agent output + tool calls)
└── pyproject.toml               # Project configuration

Read the full file on GitHub · 805 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 805 lines · 6,255 tokens per session scan A 50d0f72c3905

Subscribe to this mod's changes

prowler-studio AGENTS.md is an instructions file published in the GitHub repository prowler-cloud/prowler-studio (55 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 6,255 tokens to every session, about $0.0313 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

privacy-kit-cl AGENTS.md

Instructions for Yugoxc/privacy-kit-cl, covering agents.md — guía de integración para una ia, objetivo, paso 0 — detectar el terreno, paso 1 — instalar y configurar and paso 2 — implementar el store.

Yugoxc/privacy-kit-cl · 869 tokens

mcp-eu-compliance AGENTS.md

AGENTS.md instructions for matematicsolutions/mcp-eu-compliance, covering agents.md - mcp-eu-compliance, project purpose, matematic context (hard constraints), mcp tools (tools contract) and build and test.

matematicsolutions/mcp-eu-compliance · 1,322 tokens

sign-cli AGENTS.md

AGENTS.md instructions for DrBaher/sign-cli, covering agents, output contract, exit codes, discovery and the signing asymmetry.

DrBaher/sign-cli · 1,179 tokens

uae-regulations-registry AGENTS.md

AGENTS.md instructions for nshield-security/uae-regulations-registry, covering agents.md — instructions for ai agents, what this repo contains, preferred entry points, json schema (data/regulations.json) and stable urls.

nshield-security/uae-regulations-registry · 835 tokens

legal-audit-de AGENTS.md

AGENTS.md instructions for FutureRootsDE/legal-audit-de, covering agents.md — legal-audit-de, haftungsausschluss — keine rechtsberatung, was macht das plugin?, plattform-layouts and commands / prompts.

FutureRootsDE/legal-audit-de · 2,475 tokens

prescryb CLAUDE.md

Claude Code instructions for konstruktoid/prescryb, covering prescryb, layout, required checks, agent skills and instructions and conventions.

konstruktoid/prescryb · 740 tokens