Supplementary Measures logo

Supplementary Measures

Community
mukul975
supplementary-measures

Guides implementation of technical, contractual, and organisational supplementary measures for international data transfers per EDPB Recommendations 01/2020. Covers encryption, pseudonymisation, split processing, audit rights, transparency obligations, and internal policies. Keywords: supplementary measures, encryption, pseudonymisation, EDPB recommendations, transfer safeguards.

Overview

Publishermukul975
RepositoryPrivacy-Data-Protection-Skills
Skill namesupplementary-measures
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 Supplementary Measures 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/cross-border-transfers-skills/skills/supplementary-measures .claude/skills/supplementary-measures
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Supplementary Measures 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 Supplementary Measures 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 Supplementary Measures 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.

Implementing Supplementary Measures

Overview

EDPB Recommendations 01/2020 (Version 2.0, adopted 18 June 2021) establish that where a Transfer Impact Assessment reveals protection gaps in the destination country's legal framework, supplementary measures must be adopted to bring the level of protection up to the EU standard of essential equivalence. These measures fall into three categories: technical, contractual, and organisational. The measures must be effective in practice — not merely theoretical — and their effectiveness must be reassessed at appropriate intervals.

Technical Supplementary Measures

Measure T1: End-to-End Encryption with EU-Held Keys

Description: Personal data is encrypted before leaving the EU/EEA using strong encryption algorithms, with decryption keys held exclusively by the data exporter or a trusted entity within the EU/EEA. The data importer in the third country receives and stores only ciphertext.

Technical specification at Athena Global Logistics:

  • Algorithm: AES-256-GCM for data at rest; ChaCha20-Poly1305 as alternative for streaming data
  • Key management: AWS KMS with Customer Managed Keys (CMK) hosted in the eu-central-1 (Frankfurt) region; keys never exported outside EEA
  • Key rotation: Automatic rotation every 365 days; immediate rotation upon suspected compromise
  • Certificate management: X.509 certificates issued by the internal PKI hosted in Berlin; certificate pinning for API endpoints
  • Implementation: Application-layer encryption performed by the exporter's middleware before data is transmitted to the importer

Effectiveness: High — the third-country government cannot compel the importer to produce plaintext data because the importer does not possess the decryption keys. This measure is effective against compelled disclosure at rest and in transit.

Limitation: Only applicable where the importer does not need to process the data in plaintext. If the importer must read, analyse, or transform the data, this measure alone is insufficient.

Applicable scenario: Backup storage, archival, and transit-only scenarios where the importer serves as a conduit or storage provider.

Measure T2: Pseudonymisation with EU-Held Mapping Table

Description: Directly identifying personal data elements are replaced with pseudonymous identifiers before transfer. The mapping table linking pseudonyms to real identities is held exclusively by the data exporter within the EU/EEA.

Technical specification at Athena Global Logistics:

  • Pseudonymisation method: HMAC-SHA256 with a secret key held in the Berlin key vault; applied to: customer names, email addresses, phone numbers, and customs identification numbers
  • Mapping table: Stored in a dedicated PostgreSQL instance in the Frankfurt data centre; access restricted to the data protection team (4 authorised users)
  • Transfer payload: Pseudonymised dataset retains consignment references, shipping addresses (generalised to city level), and delivery dates — sufficient for the importer to perform logistics operations
  • Re-identification: Only possible by the exporter using the secret HMAC key and mapping table

Effectiveness: High — the transferred dataset cannot be attributed to identified natural persons by the importer or any third party (including government authorities) without access to the mapping table.

Limitation: Requires that the importer can fulfil its processing purpose without accessing the original identifying data. Not suitable where the importer must contact data subjects directly or produce documentation bearing real names.

Measure T3: Split Processing

Description: The processing operation is divided such that no single entity in the third country holds the complete dataset. Each fragment, viewed in isolation, does not constitute personal data or cannot be attributed to an identified individual.

Technical specification at Athena Global Logistics:

  • Architecture: Two-party split where customer identity data (names, contact details) remains in the Frankfurt data centre and only operational data (consignment IDs, routing codes, timestamps) is transferred to the Hong Kong processing centre
  • Linkage prevention: The transferred dataset uses internal reference codes that are meaningful only when joined with the identity dataset held in Frankfurt
  • Recombination: Performed only within the EU/EEA environment by the exporter's analytics platform

Effectiveness: High — neither the importer nor the destination country government can reconstruct the full personal dataset from the transferred fragment alone.

Limitation: Requires significant architectural investment and may reduce the importer's processing efficiency. Applicable only where the processing can be meaningfully divided.

Measure T4: Transport-Layer Encryption

Description: All data transfers are protected by transport-layer security (TLS 1.3 or equivalent) to prevent interception in transit.

Technical specification at Athena Global Logistics:

  • Protocol: TLS 1.3 mandatory for all API endpoints; SFTP with AES-256 for batch file transfers
  • Cipher suites: TLS_AES_256_GCM_SHA384, TLS_CHACHA20_POLY1305_SHA256 (weak cipher suites disabled)
  • Certificate validation: Mutual TLS (mTLS) authentication between exporter and importer systems
  • HSTS: HTTP Strict Transport Security with max-age=31536000, includeSubDomains

Effectiveness: Medium — protects data against interception in transit by third parties but does not protect against compelled disclosure of data at rest by the importer or government authorities accessing the importer's systems.

Applicable as: Baseline measure for all transfers, combined with other measures for comprehensive protection.

Measure T5: Anonymisation Before Transfer

Description: Personal data is irreversibly anonymised before transfer, rendering the transferred dataset outside the scope of the GDPR (Recital 26).

Technical specification at Athena Global Logistics:

  • Technique: k-anonymity (k=5) combined with l-diversity applied to aggregated shipment analytics data
  • Generalisation: Geographic data generalised to country level; dates generalised to month; volumes aggregated to weekly totals
  • Singling-out test: Conducted per WP29 Opinion 05/2014 on Anonymisation Techniques to verify no individual can be singled out, linked, or inferred from the anonymised dataset

Effectiveness: Complete — anonymised data is not personal data and Chapter V transfer rules do not apply. However, the utility of the data for the importer may be significantly reduced.

Contractual Supplementary Measures

Measure C1: Obligation to Challenge Government Access Requests

Contractual clause: The data importer undertakes to challenge any government access request that: (a) is disproportionate to the stated legal objective; (b) exceeds the scope authorised by the applicable legislation; (c) is incompatible with the protections afforded by the SCCs. The importer shall exhaust all available legal remedies before disclosing any data in response to a government request.

Implementation at Athena Global Logistics: Included as Clause 3.1 of the SCC Supplementary Measures Addendum executed with TransPacific Freight Solutions Ltd on 15 March 2025.

Measure C2: Transparency Obligation for Government Access

Contractual clause: The data importer shall notify the data exporter within 48 hours of receiving any government access request relating to transferred personal data. Where local law prohibits notification, the importer shall use best efforts to obtain a waiver of the prohibition and shall, at minimum, provide aggregated statistical information about government requests received on an annual basis.

Implementation: Included as Clause 3.2 of the SCC Supplementary Measures Addendum. Additionally, TransPacific Freight Solutions publishes an annual transparency report covering all government data access requests by jurisdiction and legal basis.

Measure C3: Audit Rights

Contractual clause: The data exporter or its designated independent auditor has the right to conduct on-site or remote audits of the data importer's data processing facilities, systems, and records at least once during each 12-month period, with 30 days' prior written notice. The importer shall cooperate fully with the audit and provide access to all relevant personnel, systems, and documentation.

Implementation: Included in SCC Clause 8.9 and supplemented by Clause 3.3 of the Addendum specifying the audit scope, methodology, and reporting requirements.

Measure C4: Warrant Canary

Contractual clause: The data importer shall publish a monthly statement confirming that, during the preceding month, it has not received any government order that would require the disclosure of transferred personal data under circumstances that would prevent notification to the data exporter. The absence of such a statement shall serve as notice to the exporter.

Implementation: TransPacific Freight Solutions publishes the warrant canary statement on the 5th business day of each month on a dedicated page of its corporate website accessible to Athena Global Logistics.

Measure C5: Data Localisation Commitment

Contractual clause: The data importer shall not transfer, store, or process the transferred personal data in any jurisdiction other than the agreed destination country (Hong Kong SAR) without the prior written consent of the data exporter. Sub-processor processing in other jurisdictions requires execution of separate SCCs or equivalent safeguards.

Implementation: Included as Clause 3.5 of the Addendum; enforced through technical controls restricting data replication to the Hong Kong data centre only.

Organisational Supplementary Measures

Measure O1: Internal Access Policies

Description: The data importer implements strict role-based access controls limiting data access to the minimum number of named personnel with a documented business need.

Implementation at TransPacific Freight Solutions:

  • 12 named employees authorised to access transferred personal data
  • Access justified by individual role description and approved by the Privacy Officer
  • Quarterly access reviews conducted; access revoked within 24 hours upon role change
  • Access logs retained for 24 months and available to the exporter upon request

Measure O2: Transparency Reports

Description: The data importer publishes periodic transparency reports detailing the number and nature of government data access requests received, to the extent permitted by local law.

Implementation: Annual transparency report published in Q1 covering the preceding calendar year. Report includes: number of requests by jurisdiction, legal basis cited, data categories requested, and outcome (full disclosure, partial disclosure, challenge, withdrawal).

Measure O3: ISO 27001/27701 Certification

Description: The data importer obtains and maintains independent certification against ISO 27001:2022 (information security) and ISO 27701:2019 (privacy information management), providing third-party verification that technical and organisational measures meet international standards.

Implementation: TransPacific Freight Solutions certified to ISO 27001:2022 (certificate valid to 31 December 2026) and ISO 27701:2019 (certificate valid to 31 December 2026). Surveillance audits conducted annually by TUV Rheinland.

Measure O4: Incident Escalation Protocol

Description: Documented procedure for the importer to escalate data protection incidents, including government access events, to the exporter within defined timeframes.

Implementation:

  • Government access request received: Notify exporter within 48 hours (or immediately if disclosure is imminent)
  • Data breach involving transferred data: Notify exporter within 24 hours per SCC Clause 8.6
  • Employee misconduct involving data access: Notify exporter within 72 hours
  • Escalation chain: Importer Privacy Officer → Exporter DPO → Exporter Legal Counsel → Exporter Board (if material)

Effectiveness Assessment Matrix

MeasureTechnical Risk AddressedEffectiveness Against Compelled DisclosureEffectiveness Against Bulk SurveillanceResidual Risk
T1 — E2E encryption with EU keysData at rest and in transitHighHighNone if keys remain in EU
T2 — PseudonymisationRe-identificationHighHighLow — sophisticated attacks may enable re-identification through auxiliary data
T3 — Split processingComplete dataset exposureHighHighLow — requires careful architecture to prevent fragment recombination
T4 — TLS 1.3Transit interceptionHigh (transit only)MediumMedium — does not protect at rest
T5 — AnonymisationAll — data is no longer personalCompleteCompleteNone — but utility is reduced
C1 — Challenge obligationDisproportionate requestsMediumLowMedium — effectiveness depends on importer's legal standing and judiciary
C2 — TransparencyVisibilityMediumLowMedium — may be blocked by gag orders
C3 — Audit rightsCompliance verificationMediumLowMedium — retrospective, not preventive
C4 — Warrant canaryGag order detectionLow-MediumLowHigh — indirect signal only
O1 — Access policiesInsider riskMediumLowMedium — does not prevent compelled disclosure
O2 — Transparency reportsAccountabilityMediumLowMedium — aggregate data only
O3 — ISO certificationControl assuranceMediumLowMedium — certification is point-in-time

Selection Methodology

  1. Identify the specific EEG gaps from the TIA (Step 3 output).
  2. For each gap, identify which supplementary measure category addresses it.
  3. Prioritise technical measures as the first line of defence — they provide the strongest protection.
  4. Layer contractual measures to create legal obligations that reinforce technical protections.
  5. Add organisational measures to provide governance and verification.
  6. Assess whether the combined package of measures effectively bridges all identified gaps.
  7. If gaps remain unbridgeable, the transfer must not proceed.
  8. Document the selection rationale in the TIA record.

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 Supplementary Measures AI skill do?

Guides implementation of technical, contractual, and organisational supplementary measures for international data transfers per EDPB Recommendations 01/2020. Covers encryption, pseudonymisation, split processing, audit rights, transparency obligations, and internal policies. Keywords: supplementary measures, encryption, pseudonymisation, EDPB recommendations, transfer safeguards.

Why use Supplementary Measures on TypingMind?

Because you install it once and use it with any model. Supplementary Measures 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 Supplementary Measures in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/mukul975/Privacy-Data-Protection-Skills/tree/main/plugins/cross-border-transfers-skills/skills/supplementary-measures. 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 Supplementary Measures?

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 Supplementary Measures?

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

Is the Supplementary Measures 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 👇