prowler-tour

prowler-tour is a skill for Claude Code from prowler-cloud/prowler. It costs 41 tokens per session (973 once invoked), scanned A, original, Apache-2.0.

A report-only check for Prowler product tours, the guided steps that point users to features in the interface. It compares tour definitions with the UI elements and files they are meant to cover.

In plain words
What is it for?
Checking whether UI edits, renamed tour identifiers, or changed tour definitions have caused mismatches between product tours and the interface.
Why use it?
It finds missing or outdated tour targets after UI changes without modifying the tour or interface files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Checking whether UI edits, renamed tour identifiers, or changed tour definitions have caused mismatches between product tours and the interface.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/prowler-cloud/prowler/prowler-tour
About the project

Prowler is an open-source cloud security platform that checks cloud environments for security issues and compliance with standards such as CIS, NIST, and GDPR. Security teams use it to assess configurations, prioritize findings, produce reports, and guide remediation.

prowler-cloud/prowler · 14,773 stars · on GitHub · prowler.com

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.

Any agent
npx skills add prowler-cloud/prowler --skill prowler-tour
Clone the repo
git clone --depth 1 https://github.com/prowler-cloud/prowler

Made for: Claude Code.

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-tour

README.md
[![agentmods](https://agentmods.dev/badge/skills/prowler-cloud/prowler/prowler-tour/github.svg)](https://agentmods.dev/skills/prowler-cloud/prowler/prowler-tour)
Your own site
<a href="https://agentmods.dev/skills/prowler-cloud/prowler/prowler-tour"><img src="https://agentmods.dev/badge/skills/prowler-cloud/prowler/prowler-tour/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for prowler-tour

Your own site · 80×15
<a href="https://agentmods.dev/skills/prowler-cloud/prowler/prowler-tour"><img src="https://agentmods.dev/badge/skills/prowler-cloud/prowler/prowler-tour.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 973 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00041 $0.00973
Opus 5 $0.00020 $0.00487
Sonnet 5 $0.00008 $0.00195
Haiku 4.5 $0.00004 $0.00097

Measured 10d ago against content hash 6dbcd5d01661, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

prowler-tour 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (assets/tour-template.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/prowler-tour/SKILL.md · 100 lines

How it starts

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

prowler-tour

Report-only. This skill never edits tour files or UI files; it inspects the change, reports drift it finds between tours and the covered UI, and recommends actions for the developer to apply.

Early-exit rule

Run this check first. Most UI edits are not tour-related — exit cheaply.

  1. Glob ui/lib/tours/*.tour.ts.

  2. For each tour, check whether any coversFiles glob pattern matches any file in the current change.

  3. If no tour matches, respond exactly:

    No tour affected — skipping alignment check

    and exit. Do not proceed to the checklist.

  4. If at least one tour matches, continue to "Drift checklist" for that tour.

Drift checklist

For each affected tour, evaluate every item. Skip items that obviously do not apply, but list explicitly which items were checked.

  1. Orphan selectors — every step's target (which composes to data-tour-id="<tour-id>-<step.target>") must resolve to a real element in the codebase. Grep ui/ for the expected attribute value; report any step whose target is missing.
  2. Renamed selectors — a data-tour-id attribute was edited in this change. Match it back to any tour step referencing the old value.
  3. Outdated copy — a popover title/description references a button label, heading, or term that no longer exists on the covered page.
  4. Obsolete steps — a step describes a section, panel, or workflow that was removed.
  5. Missing steps — a new feature was added on the covered surface without a corresponding step (e.g. a new panel, a new primary action, a new wizard stage).
  6. Reordered flow — the user's path through the feature changed (e.g. query builder moved before scan selection) and the step order no longer reflects it.

Version-bump decision tree

Apply per tour after listing drift:

  • NO bump when the change is cosmetic. Examples: fix a typo, soften copy, rename a data-tour-id selector while keeping the same step, swap one screenshot for another, tighten wording.
  • BUMP version when the user-visible flow changes materially. Examples: a new step was added or removed; the order changed; an anchored target was retargeted to a different panel; the tour now covers a new feature on the surface.

Read the full file on GitHub · 100 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 100 lines · 41 tokens per session scan A 6dbcd5d01661

Subscribe to this mod's changes

prowler-tour is a skill published in the GitHub repository prowler-cloud/prowler (14,773 stars, last pushed today), licensed Apache-2.0. It adds 41 tokens to every session and 973 once invoked, about $0.0002 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 skills, from other repositories

performing-aws-account-enumeration-with-scout-suite

Perform comprehensive security posture assessment of AWS accounts using ScoutSuite to enumerate resources, identify misconfigurations, and generate actionable security reports.

xalgorix/xalgorix · 39 tokens

remotion-animation

Generates animation configurations for Remotion including spring configs, interpolations, easing functions, and timing logic. Focuses ONLY on animation parameters, NOT component implementation. Use when defining animation behavior or when asked to "configure animations", "setup spring configs", "define easing curves".

Marve10s/Better-Fullstack · 59 tokens

amazon-location-service

Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text…

awslabs/agent-plugins · 107 tokens

onchainkit

Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.

alsk1992/CloddsBot · 24 tokens

system-text-json-net11

Imperative guidance for the System.Text.Json APIs added in .NET 11: the built-in JsonNamingPolicy.PascalCase naming policy, and the strongly-typed JsonSerializerOptions.GetTypeInfo () and JsonSerializerOptions.TryGetTypeInfo (out JsonTypeInfo ? info) metadata accessors. USE ONLY when the user is targeting net11.0 or…

managedcode/dotnet-skills · 178 tokens

signature-verification-audit

Trigger HASSIGNATURES flag in templaterecommendations.md (recon detects signature verification patterns - see chain-specific grep patterns in TASK 6) - Agent Type general-purp...

PlamenTSV/plamen · 42 tokens