# Missing Data Retention Policy Implementation

> Detects data storage without associated TTL, expiry, or cleanup mechanisms, indicating missing data retention policy.

- Skill: `zakirkun/missing-data-retention-policy-implementation` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zakirkun/missing-data-retention-policy-implementation`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zakirkun/missing-data-retention-policy-implementation/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: zakirkun (https://skillmd.com/u/zakirkun)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zakirkun/missing-data-retention-policy-implementation

---


# Missing Data Retention Policy Implementation

## Overview
GDPR Article 5(1)(e) requires data to be kept no longer than necessary. Storing user data indefinitely without purging mechanisms violates the storage limitation principle.

Common issues:
- Log files without rotation or TTL
- Database records never deleted
- Caches that accumulate PII indefinitely
- Backups stored without expiration

## Remediation
- Implement automated data purging for records beyond retention period
- Set TTL on Redis/Memcached keys containing personal data
- Configure log rotation with appropriate retention
- Document and enforce data retention policy

