OmoiOS: Skill for Claude Code

.claude/skills/pci-compliance/SKILL.md

pci-compliance is a skill for Claude Code from kivo360/OmoiOS. It costs 37 tokens per session (2,968 once invoked), scanned A, original, Apache-2.0.

A set of instructions for meeting PCI DSS, the security standard for businesses that store, process, or transmit payment-card data. It covers areas such as encryption, access control, secure systems, monitoring, and vulnerability management.

In plain words
What is it for?
Use it when building payment flows, protecting cardholder data, reducing compliance scope, or preparing for a PCI DSS review.
Why use it?
It helps turn broad payment-security and audit requirements into concrete engineering tasks. This can reduce the risk of exposing card data and help prepare a system for a compliance assessment.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is kivo360/OmoiOS's own configuration. It tells Claude Code how to work on OmoiOS itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything OmoiOS configures →

Reuse

Borrowing it

Nothing to install: this file belongs to kivo360/OmoiOS. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kivo360/OmoiOS/main/.claude/skills/pci-compliance/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/kivo360/OmoiOS

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/kivo360/omoios/pci-compliance"><img src="https://agentmods.dev/badge/skills/kivo360/omoios/pci-compliance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,968 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.00037 $0.02968
Opus 5 $0.00018 $0.01484
Sonnet 5 $0.00007 $0.00594
Haiku 4.5 $0.00004 $0.00297

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

Security

Grade A, and why

pci-compliance 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 12d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/pci-compliance/SKILL.md · 467 lines

How it starts

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

PCI Compliance

Master PCI DSS (Payment Card Industry Data Security Standard) compliance for secure payment processing and handling of cardholder data.

When to Use This Skill

  • Building payment processing systems
  • Handling credit card information
  • Implementing secure payment flows
  • Conducting PCI compliance audits
  • Reducing PCI compliance scope
  • Implementing tokenization and encryption
  • Preparing for PCI DSS assessments

PCI DSS Requirements (12 Core Requirements)

Build and Maintain Secure Network

  1. Install and maintain firewall configuration
  2. Don't use vendor-supplied defaults for passwords

Protect Cardholder Data

  1. Protect stored cardholder data
  2. Encrypt transmission of cardholder data across public networks

Maintain Vulnerability Management

  1. Protect systems against malware
  2. Develop and maintain secure systems and applications

Implement Strong Access Control

  1. Restrict access to cardholder data by business need-to-know
  2. Identify and authenticate access to system components
  3. Restrict physical access to cardholder data

Monitor and Test Networks

  1. Track and monitor all access to network resources and cardholder data
  2. Regularly test security systems and processes

Maintain Information Security Policy

  1. Maintain a policy that addresses information security

Compliance Levels

Level 1: > 6 million transactions/year (annual ROC required) Level 2: 1-6 million transactions/year (annual SAQ) Level 3: 20,000-1 million e-commerce transactions/year Level 4: < 20,000 e-commerce or < 1 million total transactions

Data Minimization (Never Store)

# NEVER STORE THESE
PROHIBITED_DATA = {
    'full_track_data': 'Magnetic stripe data',
    'cvv': 'Card verification code/value',
    'pin': 'PIN or PIN block'
}

# CAN STORE (if encrypted)
ALLOWED_DATA = {
    'pan': 'Primary Account Number (card number)',
    'cardholder_name': 'Name on card',
    'expiration_date': 'Card expiration',
    'service_code': 'Service code'
}

class PaymentData:
    """Safe payment data handling."""

    def __init__(self):
        self.prohibited_fields = ['cvv', 'cvv2', 'cvc', 'pin']

    def sanitize_log(self, data):
        """Remove sensitive data from logs."""
        sanitized = data.copy()

        # Mask PAN
        if 'card_number' in sanitized:
            card = sanitized['card_number']
            sanitized['card_number'] = f"{card[:6]}{'*' * (len(card) - 10)}{card[-4:]}"

        # Remove prohibited data
        for field in self.prohibited_fields:
            sanitized.pop(field, None)

        return sanitized

    def validate_no_prohibited_storage(self, data):
        """Ensure no prohibited data is being stored."""
        for field in self.prohibited_fields:
            if field in data:
                raise SecurityError(f"Attempting to store prohibited field: {field}")

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

Subscribe to this mod's changes

pci-compliance is a skill published in the GitHub repository kivo360/OmoiOS (77 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 2,968 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

StartupLegalShield

Complete legal intelligence for startups — incorporation, cap table, IP protection, employment law, fundraising docs, SaaS agreements, regulatory compliance, and avoiding the 10 legal mistakes that kill startups.

vignesh2027/Claude-Agentic-Skills2.0-version · 41 tokens

CrisisIntelligence

Complete crisis management intelligence — crisis classification, war room setup, stakeholder communication, media response, legal coordination, social media crisis, data breach response, and post-crisis recovery.

vignesh2027/Claude-Agentic-Skills2.0-version · 39 tokens

contract-drafter

Activates ContractDrafter for drafting, reviewing, and improving commercial contracts. Use when you need to draft an NDA, SaaS subscription agreement, consulting contract, partnership agreement, or vendor agreement — with standard protective clauses. Also use for redlining incoming contracts or explaining legal…

vignesh2027/Claude-Agentic-Skills2.0-version · 74 tokens

data-governance-agent

Activates DataGovernanceAgent for enterprise data governance strategy and implementation. Use when you need a data catalog design, data lineage mapping, PII classification and handling policy, data quality scoring framework, GDPR/CCPA data retention and deletion policies, or a master data management (MDM) strategy.

vignesh2027/Claude-Agentic-Skills2.0-version · 66 tokens

security-chief

Activates SecurityChief for cybersecurity analysis and threat intelligence. Use when you need STRIDE threat modeling for any system architecture, OWASP top 10 analysis, security log analysis and SIEM triage, incident response playbook execution, SOC2/ISO 27001/NIST CSF control mapping, or vulnerability assessment and…

vignesh2027/Claude-Agentic-Skills2.0-version · 70 tokens

compliance-ai

Activates ComplianceAI for financial regulatory compliance, AML/KYC, and audit preparation. Use when you need customer due diligence process design, transaction monitoring for AML suspicious activity, regulatory filing calendar and deadline tracking, SOX/PCI/GDPR audit control documentation, or KYC program assessment.

vignesh2027/Claude-Agentic-Skills2.0-version · 62 tokens