compliance-awareness

compliance-awareness is a skill for Claude Code from Vimalk0703/shipworthy. It costs 57 tokens per session (4,154 once invoked), scanned A, original, MIT.

Engineering guidance for meeting requirements from frameworks and laws such as SOC 2, GDPR, and HIPAA, including rules for handling sensitive data.

In plain words
What is it for?
Classifying stored data, controlling access, recording changes, supporting deletion and data export, handling consent, and protecting health or personal information.
Why use it?
It helps teams build access controls, audit trails, deletion, consent, portability, encryption, and data classification into the system instead of adding them later.

Skill for Claude Code

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

Part of the shipworthy plugin — 66 skills, 7 commands, 3 hooks shipped together

Good fit Classifying stored data, controlling access, recording changes, supporting deletion and data export, handling consent, and protecting health or personal information.

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

Made for: Claude Code.

Or install shipworthy, the plugin that ships this one along with the rest of its 66 skills, 7 commands, 3 hooks.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vimalk0703/shipworthy/compliance-awareness"><img src="https://agentmods.dev/badge/skills/vimalk0703/shipworthy/compliance-awareness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,154 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.00057 $0.04154
Opus 5 $0.00028 $0.02077
Sonnet 5 $0.00011 $0.00831
Haiku 4.5 $0.00006 $0.00415

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

Security

Grade A, and why

compliance-awareness 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 7d 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/security/compliance-awareness/SKILL.md · 430 lines

How it starts

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

Compliance Awareness

Disclaimer: This skill provides practical engineering patterns for compliance. It is not legal advice. Consult legal counsel for your specific compliance obligations.

Core Principle

Compliance is a set of engineering constraints, not a checkbox exercise. Build compliance into the system architecture from day one. Retrofitting compliance is 10x harder and 10x more expensive than building it in.


1. Data Classification Levels

Every field your system stores must be classified. The classification determines how the data is stored, accessed, logged, and deleted.

Level Definition Examples Storage Access Logging
Public Data intended for public consumption Marketing copy, public API docs, product names No restrictions No restrictions Standard
Internal Data for internal use only, low risk if leaked Internal wiki, architecture diagrams, sprint boards Standard encryption Authentication required Standard
Confidential PII or business-sensitive data Names, emails, addresses, financial reports, revenue data Encrypted at rest (AES-256), encrypted in transit (TLS 1.2+) Role-based access, audit logged Audit logged, PII masked in application logs
Restricted Highest sensitivity, regulatory risk Passwords, API keys, SSNs, health records, payment card numbers Encrypted with KMS/HSM, separate data store Minimal access, MFA required, audit logged Never in logs, access alerts

Implementing Data Classification

// Tag every database field with its classification
// This drives encryption, access control, and logging behavior

interface FieldClassification {
  field: string;
  classification: 'public' | 'internal' | 'confidential' | 'restricted';
  regulations: string[];         // ['gdpr', 'hipaa', 'pci-dss']
  retentionDays: number;         // How long to keep before purging
  piiType?: string;              // 'name' | 'email' | 'ssn' | 'health_record'
}

const userTableClassification: FieldClassification[] = [
  { field: 'id', classification: 'internal', regulations: [], retentionDays: -1 },
  { field: 'email', classification: 'confidential', regulations: ['gdpr'], retentionDays: 365, piiType: 'email' },
  { field: 'name', classification: 'confidential', regulations: ['gdpr'], retentionDays: 365, piiType: 'name' },
  { field: 'password_hash', classification: 'restricted', regulations: [], retentionDays: -1 },
  { field: 'ssn', classification: 'restricted', regulations: ['gdpr'], retentionDays: 90, piiType: 'ssn' },
  { field: 'health_notes', classification: 'restricted', regulations: ['hipaa', 'gdpr'], retentionDays: 2555, piiType: 'health_record' },
];

Read the full file on GitHub · 430 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. 7d ago First seen · 430 lines · 57 tokens per session scan A 3fdf283d91c6

Subscribe to this mod's changes

compliance-awareness is a skill published in the GitHub repository Vimalk0703/shipworthy (7 stars, last pushed 5mo ago), licensed MIT. It adds 57 tokens to every session and 4,154 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

memstack-business-gdpr

Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…

cwinvestments/memstack · 121 tokens

memstack-business-licensing

Use this skill when the user says 'licensing', 'license audit', 'can I use this commercially', 'OSS license check', 'license compatibility', 'GPL', 'MIT', 'AGPL', 'copyleft'. Scans the repository for every dependency and asset license, then produces a per-package verdict table: ready for commercial use…

cwinvestments/memstack · 112 tokens

memstack-business-contract-template

Use this skill when the user says 'contract', 'agreement', 'service agreement', 'NDA', 'freelance contract', 'consulting agreement', or needs service agreements with IP ownership, payment terms, and termination clauses. Do NOT use for invoicing or client onboarding.

cwinvestments/memstack · 63 tokens

contract-redliner

Contract review, redlining, and negotiation support with clause analysis, risk identification, and markup templates. Use when reviewing contracts, identifying unfavorable terms, suggesting amendments, or preparing negotiation positions.

travisjneuman/.claude · 41 tokens

ai-policy-generator

AI governance policy creation for nonprofits and enterprises with frameworks, risk assessment, ethical guidelines, and compliance templates. Use when drafting AI usage policies, responsible AI frameworks, or organizational AI governance documents.

travisjneuman/.claude · 42 tokens

compliance-engineering

SOC2, HIPAA, GDPR, PCI-DSS, FedRAMP compliance implementation in code. Audit logging, data encryption, access controls, privacy by design, and regulatory requirement mapping. Use when implementing compliance controls, preparing for audits, or building privacy-compliant systems.

travisjneuman/.claude · 60 tokens