compliance-audit

compliance-audit is a command for Claude Code from sponticelli/gamedev-claude-plugins. It costs 12 tokens per session (920 once invoked), scanned A, original, MIT.

A command that creates a report checking a game against the requirements of a target platform, such as a console or app store.

In plain words
What is it for?
Use it to prepare a full or focused compliance audit, record the build and test scope, and decide whether it is ready to submit.
Why use it?
It organizes the checks needed before submission and highlights failures, waivers, and areas needing more testing.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the certification plugin — 3 commands, 3 agents shipped together

Good fit Use it to prepare a full or focused compliance audit, record the build and test scope, and decide whether it is ready to submit.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/sponticelli/gamedev-claude-plugins/compliance-audit
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.

Clone the repo
git clone --depth 1 https://github.com/sponticelli/gamedev-claude-plugins

Made for: Claude Code.

Or install certification, the plugin that ships this one along with the rest of its 3 commands, 3 agents.

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 compliance-audit

README.md
[![agentmods](https://agentmods.dev/badge/commands/sponticelli/gamedev-claude-plugins/compliance-audit/github.svg)](https://agentmods.dev/commands/sponticelli/gamedev-claude-plugins/compliance-audit)
Your own site
<a href="https://agentmods.dev/commands/sponticelli/gamedev-claude-plugins/compliance-audit"><img src="https://agentmods.dev/badge/commands/sponticelli/gamedev-claude-plugins/compliance-audit/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 compliance-audit

Your own site · 80×15
<a href="https://agentmods.dev/commands/sponticelli/gamedev-claude-plugins/compliance-audit"><img src="https://agentmods.dev/badge/commands/sponticelli/gamedev-claude-plugins/compliance-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 920 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.
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.00012 $0.00920
Opus 5 $0.00006 $0.00460
Sonnet 5 $0.00002 $0.00184
Haiku 4.5 $0.00001 $0.00092

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

Security

Grade A, and why

compliance-audit 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 9d 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.

plugins/certification/commands/compliance-audit.md · 181 lines

How it starts

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

Compliance Audit Generator

Create a compliance audit report against platform requirements.

Context Gathering

Before generating the audit, understand the context:

Identify Scope

  • Which platform requirements?
  • Full audit or specific areas?
  • Current build version?
  • Previous audit results?

Understand Current State

  • What's been tested?
  • Known issues?
  • Recent changes?
  • Fix verification needed?

Check Resources

  • Test hardware available?
  • Test accounts set up?
  • Documentation accessible?
  • Time allocation?

Identify Focus Areas

  • High-risk features?
  • Previously failed areas?
  • New features since last audit?
  • Regression testing needed?

Use this context to create focused audit.

Output Format

# Compliance Audit Report

## Audit Information
**Platform:** [Platform name]
**Requirements version:** [TRC/XR version]
**Build tested:** [Build number]
**Test date:** [Date]
**Auditor:** [Name]
**Scope:** [Full/Focused on X]

## Executive Summary

**Recommendation:** [Ready/Not ready for submission]

| Category | Pass | Fail | Waiverable | N/A |
|----------|------|------|------------|-----|
| System | [N] | [N] | [N] | [N] |
| Input | [N] | [N] | [N] | [N] |
| Network | [N] | [N] | [N] | [N] |
| Platform | [N] | [N] | [N] | [N] |
| Content | [N] | [N] | [N] | [N] |
| **Total** | **[N]** | **[N]** | **[N]** | **[N]** |

## Blocking Issues

### [Issue ID]: [Issue Title]
**Requirement:** [TRC/XR number]
**Severity:** [Critical/Major]
**Category:** [System/Input/Network/etc.]

**Description:**
[What the issue is]

**Steps to Reproduce:**
1. [Step 1]
2. [Step 2]
3. [Step 3]

**Expected Result:**
[What should happen]

**Actual Result:**
[What happens]

**Evidence:**
[Screenshot/video reference]

**Recommendation:**
[How to fix]

---

[Repeat for each blocking issue]

## Non-Blocking Issues

### [Issue ID]: [Issue Title]
**Requirement:** [TRC/XR number]
**Severity:** [Minor]
**Waiverable:** [Yes/No/Maybe]

**Description:**
[Brief description]

**Waiver justification (if applicable):**
[Why this could be waived]

---

[Repeat for each non-blocking issue]

## Passed Areas

### System Features
| Test | Result | Notes |
|------|--------|-------|
| [Test case] | Pass | [Any notes] |

### Input/Controller
| Test | Result | Notes |
|------|--------|-------|
| [Test case] | Pass | [Any notes] |

### Network
| Test | Result | Notes |
|------|--------|-------|
| [Test case] | Pass | [Any notes] |

### Platform Features
| Test | Result | Notes |
|------|--------|-------|
| [Test case] | Pass | [Any notes] |

### Content
| Test | Result | Notes |
|------|--------|-------|
| [Test case] | Pass | [Any notes] |

## Not Tested

| Area | Reason |
|------|--------|
| [Area] | [Why not tested] |

## Recommendations

### Before Submission
1. [Must fix issue 1]
2. [Must fix issue 2]

### Should Fix If Time Allows
1. [Issue 1]
2. [Issue 2]

### Future Considerations
1. [Suggestion 1]
2. [Suggestion 2]

## Test Environment

| Parameter | Value |
|-----------|-------|
| Hardware | [Model] |
| Firmware | [Version] |
| SDK | [Version] |
| Region | [Region] |
| Language | [Languages tested] |

## Appendix

### Test Cases Executed
[Full list of test cases run]

### Evidence Archive
[Location of screenshots/videos]

Read the full file on GitHub · 181 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. 9d ago First seen · 181 lines · 12 tokens per session scan A 202f53f21141

Subscribe to this mod's changes

compliance-audit is a command published in the GitHub repository sponticelli/gamedev-claude-plugins (15 stars, last pushed 8mo ago), licensed MIT. It adds 12 tokens to every session and 920 once invoked, about $0.0001 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.