Ai Transparency Reqs logo

Ai Transparency Reqs

Community
mukul975
ai-transparency-reqs

Implements AI transparency requirements under EU AI Act Arts. 13-14 and GDPR Arts. 13-14. Covers user notification of AI interaction, system capability disclosure, limitation documentation, and meaningful information about automated logic. Keywords: AI transparency, EU AI Act, GDPR notification, explainability, automated decision.

Overview

Publishermukul975
RepositoryPrivacy-Data-Protection-Skills
Skill nameai-transparency-reqs
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 Transparency Reqs 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-transparency-reqs .claude/skills/ai-transparency-reqs
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ai Transparency Reqs 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 Transparency Reqs 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 Transparency Reqs 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.

AI Transparency Requirements

Overview

AI transparency operates at the intersection of two regulatory frameworks: the GDPR's data subject information rights (Arts. 13-14) and the EU AI Act's transparency obligations (Arts. 13-14, 50). Together they require controllers and deployers to provide meaningful, accessible information about AI system capabilities, limitations, decision logic, and personal data processing. This skill implements the combined transparency framework, addressing both the technical explainability challenge of complex ML models and the legal obligation to communicate AI processing in plain language to affected individuals.

GDPR Transparency for AI Systems

Art. 13-14 Information Requirements Applied to AI

When personal data is processed by AI systems, data subjects must receive:

Information ElementGDPR ArticleAI-Specific Application
Purposes of processingArt. 13(1)(c) / 14(1)(c)Specific AI use case, not generic "service improvement"
Lawful basisArt. 13(1)(c) / 14(1)(c)The basis for AI training and for AI inference separately
Legitimate interestArt. 13(1)(d) / 14(2)(b)The specific interest served by AI processing
RecipientsArt. 13(1)(e) / 14(1)(e)AI infrastructure providers, model hosting services
International transfersArt. 13(1)(f) / 14(1)(f)Where AI processing occurs (training and inference locations)
Retention periodArt. 13(2)(a) / 14(2)(a)Training data retention, inference log retention, model lifecycle
Data subject rightsArt. 13(2)(b) / 14(2)(c)Including AI-specific rights: explanation, contestation, human review
Automated decision-makingArt. 13(2)(f) / 14(2)(g)Meaningful information about logic, significance, and envisaged consequences
Source of dataArt. 14(2)(f)Training data sources (categories, not necessarily individual sources)

Art. 13(2)(f) / 14(2)(g) — Meaningful Information About Automated Logic

This is the most challenging transparency requirement for AI systems. The EDPB and Article 29 Working Party have clarified:

What "meaningful information about the logic involved" requires:

  1. System-level explanation: General description of how the AI system works — what factors are considered, what methodology is used, how the model was trained
  2. Purpose and context: Why the AI system is used and what role its output plays in decisions
  3. Key variables: The main data points or features that influence the AI output, without requiring disclosure of proprietary algorithms
  4. Decision criteria: How the model output translates into a decision (e.g., score thresholds, classification categories)
  5. Significance: What the decision means for the data subject in practical terms
  6. Consequences: The potential effects (both intended and foreseeable) of the AI-driven decision

What it does not require:

  • Full disclosure of source code or model weights
  • Mathematical description of the algorithm
  • Proprietary trade secrets (but this does not exempt from meaningful explanation)
  • Explanation of individual model predictions in real-time (though this may be required under Art. 22)

Layered Approach to AI Transparency

The EDPB recommends a layered transparency approach:

LayerContentDelivery
Layer 1: Initial noticeAI is used in processing; general purpose; link to full informationAt point of interaction (banner, tooltip, notification)
Layer 2: SummaryAI system description, key data used, decision logic summary, rights availablePrivacy notice section, AI information page
Layer 3: Detailed informationFull technical description, training data categories, fairness measures, accuracy metrics, limitationsSupplementary documentation, upon request
Layer 4: Individual explanationSpecific factors influencing a particular decision, appeal mechanismUpon request or automatically for significant decisions

EU AI Act Transparency Obligations

Art. 13 — Transparency and Provision of Information to Deployers (High-Risk)

High-risk AI systems (Annex III) must be designed and developed to ensure:

RequirementDescription
InterpretabilitySystem design enables deployers to interpret outputs and use them appropriately
Instructions for useDetailed documentation of capabilities, limitations, intended purpose, foreseeable misuse
Performance metricsAccuracy levels, robustness metrics, known limitations for specific groups
Human oversight infoDescription of human oversight measures and how to implement them
Input data specsDescription of input data the system was designed to process
Training data descriptionRelevant information about training data including provenance and preprocessing

Art. 14 — Human Oversight (High-Risk)

High-risk AI systems must be designed to enable effective human oversight:

  • Clear indication of AI system outputs and confidence levels
  • Ability to correctly interpret AI outputs in context
  • Ability to override or reverse AI decisions
  • Ability to intervene or stop the system ("stop button")
  • Awareness of automation bias risk

Art. 50 — Transparency for Specific AI Systems

AI System TypeTransparency Obligation
AI interacting with personsInform that they are interacting with an AI system (unless obvious from context)
Emotion recognition / biometric categorisationInform about the system's operation and process personal data in compliance with GDPR
AI-generated or manipulated content (deepfakes)Label content as AI-generated in a machine-readable format
AI-generated text on matters of public interestDisclose that the text has been artificially generated or manipulated

Art. 50(1) — AI Interaction Notification

Controllers must inform natural persons that they are interacting with an AI system. This applies to:

  • Chatbots and virtual assistants
  • AI-powered customer service systems
  • Automated email or message generation
  • AI-driven recommendation systems with direct user interface
  • Voice-based AI assistants

Exceptions: where it is obvious from the circumstances and context that the person is interacting with AI (e.g., a robot in a factory setting).

AI Transparency Documentation Framework

Model Card Requirements

For each deployed AI model, maintain a model card containing:

SectionContent
Model overviewName, version, type, developer, deployment date
Intended useSpecific purpose, target users, deployment context
Out-of-scope useUses the model is not designed for; foreseeable misuse
Training data summaryData sources (categories), volume, temporal range, geographic scope, known biases
Performance metricsAccuracy, precision, recall, F1 by relevant subgroup; fairness metrics
LimitationsKnown failure modes, demographic performance disparities, edge cases
Privacy propertiesDifferential privacy applied (epsilon), membership inference test results, training data extraction risk
Human oversightLevel of oversight required, reviewer qualifications, override procedures
Update historyRetraining dates, data updates, performance changes

AI System Transparency Register

Organisations operating multiple AI systems should maintain a central register:

FieldDescription
System IDUnique identifier
System nameHuman-readable name
AI Act classificationUnacceptable / High / Limited / Minimal
PurposeSpecific processing purpose
Data subjects affectedCategories and estimated numbers
Personal data processedAt training and inference
Decision authorityAI decision-support vs. automated decision
Transparency measuresNotification, explanation, documentation
DeployerInternal / External deployment
Registration dateEU AI Act database registration (if high-risk)

Explainability Techniques for Compliance

Global Explainability (System-Level)

Techniques for providing Art. 13(2)(f) "meaningful information about the logic":

TechniqueBest ForLimitation
Feature importance (SHAP, LIME)Identifying key variablesMay oversimplify complex interactions
Decision rules extractionConverting model logic to human-readable rulesLoss of accuracy for complex models
Partial dependence plotsShowing how features affect predictionsAssumes feature independence
Counterfactual explanationsShowing what change would lead to different outcomeComputationally expensive for many features
Attention visualisationTransformer models — showing what the model focuses onAttention does not always equal importance

Local Explainability (Individual Decision)

For Art. 22 right to explanation of individual decisions:

TechniqueDescriptionUse Case
LIMELocal Interpretable Model-agnostic ExplanationsAny model — approximate local behaviour with interpretable model
SHAP valuesShapley Additive Explanations for individual predictionsFeature contribution to specific prediction
Counterfactual"You were denied because X; if X were Y, outcome would be different"Credit, hiring, insurance decisions
AnchorsSufficient conditions for a predictionRule-based explanation of individual case
Concept-basedHigh-level concepts that influenced the decisionWhen features are not directly interpretable

Enforcement Precedents

  • Garante v. OpenAI (2023): Required transparency about AI training data processing, model capabilities, and limitations — privacy notice deemed insufficient for AI system transparency.
  • CNIL v. Clearview AI (SAN-2022-019, 2022): EUR 20M fine — complete absence of transparency about facial recognition AI processing; data subjects had no notice their images were scraped and processed.
  • Austrian DPA v. CRIF (DSB-D213.636, 2023): Credit scoring AI — insufficient explanation of automated decision-making logic per Art. 13(2)(f); data subject received only a score without meaningful information about factors.
  • Dutch DPA v. Tax Authority (SyRI, 2020): Court found algorithmic fraud detection lacked transparency — citizens could not understand how the system assessed them, violating right to private life.
  • AEPD v. CaixaBank (PS/00421/2020, 2021): EUR 6M fine — automated credit decision-making without adequate transparency about the logic involved and significance for data subjects.

Integration Points

  • ai-automated-decisions: Art. 22 explanation requirements integrate with transparency obligations
  • ai-dpia: Transparency assessment is part of DPIA necessity and proportionality analysis
  • ai-act-high-risk-docs: Art. 13 AI Act documentation requirements overlap with transparency framework
  • ai-deployment-checklist: Pre-deployment transparency validation is a checklist item

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 Transparency Reqs AI skill do?

Implements AI transparency requirements under EU AI Act Arts. 13-14 and GDPR Arts. 13-14. Covers user notification of AI interaction, system capability disclosure, limitation documentation, and meaningful information about automated logic. Keywords: AI transparency, EU AI Act, GDPR notification, explainability, automated decision.

Why use Ai Transparency Reqs on TypingMind?

Because you install it once and use it with any model. Ai Transparency Reqs 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 Transparency Reqs 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-transparency-reqs. 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 Transparency Reqs?

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 Transparency Reqs?

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

Is the Ai Transparency Reqs 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 👇