orca-compliance-gap

orca-compliance-gap is a skill for Claude Code from orcasecurity/orca-skills. It costs 73 tokens per session (4,665 once invoked), scanned A, original, MIT.

A compliance review tool for checking whether an organisation meets security standards such as PCI DSS, CIS AWS, or SOC 2. It identifies failed controls and organises the work needed to address them.

In plain words
What is it for?
Finding the most serious compliance gaps, comparing frameworks, reviewing a specific account, and deciding who should fix each problem first.
Why use it?
It turns a broad question about compliance into a ranked list of failures, quick fixes, affected accounts or business units, and a remediation plan.

Skill for Claude Code

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

Part of the orca-skills plugin — 19 skills shipped together

Good fit Finding the most serious compliance gaps, comparing frameworks, reviewing a specific account, and deciding who should fix each problem first.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orcasecurity/orca-skills/orca-compliance-gap
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 orcasecurity/orca-skills --skill orca-compliance-gap
Clone the repo
git clone --depth 1 https://github.com/orcasecurity/orca-skills

Made for: Claude Code.

Or install orca-skills, the plugin that ships this one along with the rest of its 19 skills.

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 orca-compliance-gap

README.md
[![agentmods](https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-compliance-gap/github.svg)](https://agentmods.dev/skills/orcasecurity/orca-skills/orca-compliance-gap)
Your own site
<a href="https://agentmods.dev/skills/orcasecurity/orca-skills/orca-compliance-gap"><img src="https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-compliance-gap/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 orca-compliance-gap

Your own site · 80×15
<a href="https://agentmods.dev/skills/orcasecurity/orca-skills/orca-compliance-gap"><img src="https://agentmods.dev/badge/skills/orcasecurity/orca-skills/orca-compliance-gap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,665 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.00073 $0.04665
Opus 5 $0.00036 $0.02332
Sonnet 5 $0.00015 $0.00933
Haiku 4.5 $0.00007 $0.00466

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

Security

Grade A, and why

orca-compliance-gap 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 11d 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.

skills/orca-compliance-gap/SKILL.md · 491 lines

How it starts

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

Orca Compliance Gap Skill

Answers the question: "Where are we failing, what's the fastest path to improve, and who owns the worst gaps?"

Given a compliance framework (or all frameworks), analyzes failing controls ranked by blast radius, identifies quick wins (single-fix controls), breaks down gaps by account/business unit, and generates a prioritized remediation plan.

Usage

/orca-compliance-gap
/orca-compliance-gap PCI DSS
/orca-compliance-gap CIS AWS
/orca-compliance-gap SOC 2

Or natural language:

  • "how's our PCI compliance?"
  • "what's failing in CIS AWS?"
  • "compliance gap analysis"
  • "show me our worst compliance gaps"
  • "which framework needs the most work?"
  • "quick wins for SOC 2"

Processing Logic

Step 1: Determine Scope

Parse user input to determine:

  • Specific framework: "PCI DSS" → filter to that framework
  • All frameworks: no argument → show overview of all, then drill into worst
  • Account-specific: "compliance in account 123456789012" → filter by account

Step 2: Gather Data (run ALL in parallel)

Query 1: All enabled frameworks with current scores

get_enabled_compliance_frameworks:
  (no filters)

Query 2: Compliance trend over time

get_compliance_trend_over_time:
  filters:
    datetime_filter: 30

Query 3: Compliance by account

get_compliance_analysis_by_account_or_business_unit:
  group_by: "accounts"

Query 4: Compliance by business unit

get_compliance_analysis_by_account_or_business_unit:
  group_by: "business_units"

Step 3: Deep-Dive into Target Framework(s)

For the target framework (or the worst-scoring one if user said "all"), run Queries 5-8 in parallel. Query 6 depends on Query 5 (it needs the rule_ids), so run it after Query 5 returns.

Query 5: Failing control tests

get_compliance_framework_control_tests:
  framework_id: <id>
  filters:
    status: "fail"

Query 6: Compliant + non-compliant assets per failing control (runs after Query 5) Scope to the top N failing controls (default N=5) to keep response sizes manageable. The rule_id comes from Query 5's tests[].rule_id.

get_control_test_assets:
  framework_id: <id>
  rule_id: <tests[].rule_id from Query 5>   # one call per top-N failing control

Returns { non_compliant_assets: [...], compliant_assets: [...] } — both arrays, so true pass/fail ratios are computable per control, not just a failure count.

Read the full file on GitHub · 491 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. 11d ago First seen · 491 lines · 73 tokens per session scan A 09cadc8f4a5f

Subscribe to this mod's changes

orca-compliance-gap is a skill published in the GitHub repository orcasecurity/orca-skills (49 stars, last pushed 4d ago), licensed MIT. It adds 73 tokens to every session and 4,665 once invoked, about $0.0004 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

2026-legal-research-agent

Expert legal research agent for finding and scraping expungement data state by state. Knows authoritative sources, URL patterns, Firecrawl configuration, and 2026 legal landscape. Activate on "find expungement data", "scrape state laws", "legal research", "court URLs", "statute sources", "Clean Slate laws", "automatic…

majiayu000/claude-skill-registry · 103 tokens

aws-wechat-article-review

A local checker for Chinese WeChat public-account articles. It scans a draft for sensitive terms, typing mistakes, political compliance issues, and platform-rule problems, then gives a list of suggested changes.

aiworkskills/wechat-article-skills · 155 tokens

cre-due-diligence

CRE Due Diligence analysis suite — 7 specialist skills for multifamily property analysis including rent roll validation, expense benchmarking, market study, physical inspection, environmental review, title review, and tenant credit assessment.

ahacker-1/cre-agent-skills · 49 tokens

cre-legal

CRE Legal review suite — 6 specialist skills for PSA review, title & survey analysis, estoppel tracking, loan document review, insurance coordination, and transfer document preparation for multifamily acquisitions.

ahacker-1/cre-agent-skills · 42 tokens

hr-payroll

Help HR operations specialists, payroll administrators, and compensation teams understand, design, and run payroll processing, compliance, and payroll-related HR operations. Use when asked to set up a payroll process, run a payroll compliance audit, design a payroll calendar, handle a payroll discrepancy, build a…

tuanductran/hr-skills · 88 tokens

hr-vietnam-context

Vietnam-specific HR guidance covering Labor Code 2019 compliance, Social Insurance (SI/HI/UI) enrollment, PIT registration, work permit and visa management for foreign employees, 2% trade union contributions, and Vietnamese workplace culture. Use when setting up employment contracts, handling labor discipline or…

tuanductran/hr-skills · 77 tokens