Ai Data Subject Rights logo

Ai Data Subject Rights

Community
mukul975
ai-data-subject-rights

Implements data subject rights mechanisms for AI systems including right to explanation of AI decisions, contestation procedures, human review, model output correction, and training data access. Covers GDPR Arts. 15-22 and AI Act Art. 86. Keywords: data subject rights, AI explanation, contestation, human review, training data access, model correction.

Overview

Publishermukul975
RepositoryPrivacy-Data-Protection-Skills
Skill nameai-data-subject-rights
Stars
279
Forks
59
Bundled files
4
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 4 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by mukul975 on GitHub. Read the source before you install it.

Installation

Install the Ai Data Subject Rights AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/mukul975/Privacy-Data-Protection-Skills.git /tmp/Privacy-Data-Protection-Skills
mkdir -p .claude/skills
cp -r /tmp/Privacy-Data-Protection-Skills/plugins/ai-privacy-governance-skills/skills/ai-data-subject-rights .claude/skills/ai-data-subject-rights
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ai Data Subject Rights in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ai Data Subject Rights on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ai Data Subject Rights is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Data Subject Rights for AI Systems

Overview

AI systems create unique challenges for data subject rights exercise. Traditional rights mechanisms designed for structured databases do not map directly to ML model architectures where personal data is encoded in model weights, reproduced in model outputs, or used in opaque decision processes. This skill provides the framework for implementing each GDPR right (Arts. 15-22) and the AI Act Art. 86 right to explanation in the context of AI processing, addressing both training-time and inference-time rights.

Rights Framework for AI

Right of Access (Art. 15)

AI ContextObligationImplementation
Training data contributionConfirm whether data subject's data was in training set; provide copy if feasibleTraining data catalogue indexed by data subject identifier; membership query
AI inference inputsProvide data used as input to AI decisionLog inference inputs with data subject linkage
AI inference outputsProvide AI decision/score/classification affecting data subjectDecision logging with data subject ID
Logic explanationArt. 15(1)(h): meaningful information about logic of automated decisionsSHAP/LIME explanation on request or system-level explanation
Training data sourceArt. 14(2)(f): source of data if not collected from data subjectTraining data provenance documentation

Technical Challenges:

  • Identifying specific records in massive training datasets
  • Determining if a data subject's data is in the training set without running membership inference
  • Providing meaningful logic explanation for complex models

Right to Rectification (Art. 16)

AI ContextObligationImplementation
Training data correctionCorrect inaccurate data in training datasetUpdate training data; assess if model retraining needed
Model output correctionCorrect inaccurate AI outputs about a data subjectOutput correction mechanism; flag in decision system
Inference input correctionCorrect data used as inference inputUpdate input data; re-run inference

Technical Challenge: Correcting training data may require model retraining to propagate the correction. For deployed models, correction may need model update or retraining pipeline.

Right to Erasure (Art. 17)

AI ContextObligationImplementation
Training data deletionDelete data subject's data from training datasetRemove from training data; assess model impact
Model unlearningRemove influence of deleted data from trained modelMachine unlearning technique or full retraining
Inference logsDelete inference inputs and outputs linked to data subjectPurge from decision logs
Model outputsDelete generated content about the data subjectContent removal mechanism

Technical Challenge: True erasure from a trained model requires either verified machine unlearning or complete model retraining. The EDPB acknowledges this challenge but expects controllers to demonstrate good faith effort and use best available techniques.

Right to Restriction (Art. 18)

AI ContextObligation
Contested accuracyRestrict processing while accuracy of training data or AI output is verified
Unlawful processingRestrict rather than delete if data subject requests
During objection assessmentRestrict while controller assesses whether legitimate grounds override

Implementation: Quarantine data subject's data from training pipeline and inference pipeline during restriction period.

Right to Data Portability (Art. 20)

AI ContextObligation
Training data contributionProvide data subject's training data contribution in structured, machine-readable format
AI-generated profileIf AI has created a profile, provide in portable format
Inference historyProvide history of AI decisions affecting data subject

Right to Object (Art. 21)

AI ContextObligation
AI training objectionIf training is based on legitimate interest (Art. 6(1)(f)), data subject can object
Profiling objectionObject to AI profiling including inference of characteristics
Direct marketingAbsolute right to object to AI-driven direct marketing profiling

Upon objection: Controller must cease processing unless compelling legitimate grounds override. For AI training: remove data from training pipeline and assess model impact.

Rights Relating to Automated Decisions (Art. 22)

RightImplementation
Right not to be subjectOpt-out from solely automated AI decisions with legal/significant effects
Right to human interventionQualified human reviewer with authority to override AI
Right to express viewsMechanism for data subject to provide additional context
Right to contestFormal contestation with independent review
Right to explanationAI Act Art. 86 + GDPR Recital 71: clear explanation of AI's role in the decision

AI Act Art. 86 — Right to Explanation

For high-risk AI systems, affected persons have the right to:

  • Clear and meaningful explanations of the role of the AI system in the decision-making procedure
  • The main elements of the decision taken
  • This right is without prejudice to GDPR data subject rights

Operational Implementation

Rights Request Triage for AI

Data subject rights request received
├─ Identify if AI processing is involved
│  ├─ Was AI used in any decision affecting the data subject?
│  ├─ Is the data subject's data in any training dataset?
│  └─ Has AI generated any content about the data subject?
├─ Determine applicable AI-specific rights
│  ├─ Access: training data, inference records, logic explanation
│  ├─ Rectification: training data or output correction
│  ├─ Erasure: training data deletion, model unlearning
│  ├─ Restriction: quarantine from AI pipeline
│  ├─ Objection: cease AI training on their data
│  └─ Automated decision: explanation, human review, contestation
├─ Route to appropriate team
│  ├─ Standard rights: data protection team
│  ├─ AI-specific: data protection + ML engineering team
│  └─ Contestation: independent review panel
└─ Process within Art. 12 timeframe (one month, extendable by two)

Response Timeframes

Request TypeStandardExtendedJustification for Extension
Access (standard)1 month3 monthsComplex, voluminous
Access (AI logic)1 month3 monthsRequires technical explanation generation
Rectification1 month3 monthsMay require model retraining
Erasure1 month3 monthsMachine unlearning complexity
Explanation (Art. 86)Without undue delayTime-critical for affected persons
Contestation30 days90 daysRequires independent review

Enforcement Precedents

  • Austrian DPA v. CRIF (2023): Violation of Art. 15(1)(h) — credit scoring system failed to provide meaningful information about automated decision logic upon access request.
  • Garante v. OpenAI (2023): Required mechanism for data subjects to request correction of inaccurate AI outputs and to object to AI training on their data.
  • Dutch DPA guidance (2024): Right to erasure includes obligation to address erasure from AI training data, even if technically challenging.
  • EDPB ChatGPT Taskforce (2024): Controllers must demonstrate capability to address rights requests affecting training data — technical difficulty does not exempt.

Integration Points

  • ai-automated-decisions: Contestation and human review mechanisms
  • ai-transparency-reqs: Logic explanation fulfils transparency obligations
  • ai-data-retention: Erasure rights intersect with retention and unlearning
  • ai-training-lawfulness: Objection right applies to legitimate interest-based training

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Ai Data Subject Rights AI skill do?

Implements data subject rights mechanisms for AI systems including right to explanation of AI decisions, contestation procedures, human review, model output correction, and training data access. Covers GDPR Arts. 15-22 and AI Act Art. 86. Keywords: data subject rights, AI explanation, contestation, human review, training data access, model correction.

Why use Ai Data Subject Rights on TypingMind?

Because you install it once and use it with any model. Ai Data Subject Rights is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ai Data Subject Rights in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/mukul975/Privacy-Data-Protection-Skills/tree/main/plugins/ai-privacy-governance-skills/skills/ai-data-subject-rights. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Ai Data Subject Rights?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ai Data Subject Rights?

As many as you like. As long as a model supports skills, you can use Ai Data Subject Rights with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ai Data Subject Rights AI skill free?

Yes. It is published on GitHub by mukul975 under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇