소스 정보
- 저장소
- mikailustuner/OmniRule
- 최근 소스 활동
- 2026년 5월 8일 23:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/mikailustuner/OmniRule --skill compliance-gdpr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | compliance-gdpr |
| description | Compliance: GDPR, SOC2, HIPAA, data privacy, retention policies, audit trails. |
| triggers | {"extensions":[".md",".yaml",".json"],"directories":["compliance/","security/","audit/"],"keywords":["gdpr","compliance","soc2","hipaa","privacy","data protection","audit","sox","pci-dss","retention"]} |
| auto_load_when | Implementing compliance controls or designing for regulatory requirements |
| agent | security-expert |
| tools | ["Read","Write","Bash"] |
Focus: GDPR, SOC2, HIPAA, audit, data privacy
GDPR Core Principles:
├── Lawful basis for processing
│ ├── Consent (opt-in)
│ ├── Contract performance
│ └── Legitimate interest
│ └── Each has different requirements
│
├── Data minimization
│ ├── Only collect what's needed
│ └── Don't over-collect
│ └── Document why each field
│
├── Purpose limitation
│ ├── Use data only for stated purpose
│ └── Don't repurpose without consent
│ └── Anonymize for analytics
│
├── Storage limitation
│ ├── Delete when no longer needed
│ └── Define retention periods
│ └── Right to erasure
│
└── Integrity & confidentiality
└── Security measures (encryption, access)
└── Pseudonymization where possible
Rights Implementation:
├── Right to access (Article 15)
│ └── User can request their data
│ └── Export in machine-readable format
│ └── Free within 30 days
│
├── Right to rectification (Article 16)
│ └── User can correct their data
│ └── Easy update mechanism
│
├── Right to erasure (Article 17)
│ └── "Right to be forgotten"
│ └── Delete all copies, backups
│ └── Exception: legal hold
│
├── Right to portability (Article 20)
│ └── Export in JSON/CSV format
│ └── Transfer to another provider
│
└── Consent management
└── Granular consent options
└── Easy withdrawal
└── Audit trail of consent
SOC 2 Trust Service Criteria:
├── Security
│ ├── Access controls
│ ├── Encryption
│ └── Logging & monitoring
│
├── Availability
│ ├── Uptime SLA
│ └── DR plan
│ └── Incident response
│
├── Processing Integrity
│ ├── Data accuracy
│ └── Processing controls
│ └── Error handling
│
├── Confidentiality
│ ├── Data classification
│ └── Encryption at rest
│ └── Access restrictions
│
└── Privacy
├── PII protection
└── Notice & choice
└── Data retention
Retention Patterns:
├── Define retention periods
│ ├── Transaction data: 7 years (financial)
│ ├── Logs: 90 days (operational)
│ ├── Backups: 30 days
│ └── PII: until consent withdrawn + 30 days
│
├── Automated deletion
│ ├── Scheduled jobs
│ ├── TTL in storage
│ └── Soft delete + hard delete
│
├── Legal hold
│ ├── Preserve data for litigation
│ └── Override retention
│ └── Document hold reason
│
└── Disposal verification
└── Certificate of destruction
└── Cryptographic erasure
└── Physical destruction for hardware
Audit Trail Requirements:
├── What to log
│ ├── Who accessed what data
│ └── What changes made
│ └── When, from where
│
├── Log retention
│ ├── 1+ year for compliance
│ └── Tamper-proof storage
│ └── Immutable
│
├── Documentation
│ ├── Data processing agreement (DPA)
│ ├── Privacy policy
│ └── Security policies
│
└── Evidence collection
├── Screenshots, configs
└── SOC 2 audit reports
└── Penetration test results
❌ No data inventory — don't know what PII you have
✅ Map all data, classify by sensitivity
❌ Storing everything forever — unnecessary liability
✅ Define retention, auto-delete
❌ No consent tracking — can't prove compliance
✅ Store consent with timestamp, version
❌ Manual deletion process — fails, forgotten
✅ Automate with TTL, scheduled jobs
❌ One consent for everything — not GDPR-compliant
✅ Granular consent per purpose
| Framework | Focus | Key Controls |
|---|---|---|
| GDPR | EU privacy | Consent, erasure, portability |
| SOC 2 | Trust services | Security, availability, privacy |
| HIPAA | US health | PHI protection, access controls |
| PCI DSS | Payment cards | Card data protection |
| ISO 27001 | Info security | ISMS framework |