eu-ai-act-compliance

eu-ai-act-compliance is a skill for Claude Code, Codex from d-o-hub/github-template-ai-agents. It costs 72 tokens per session (925 once invoked), scanned A, original, MIT.

A skill for recording AI-system operations and applying transparency, human-review, data-governance, and retention requirements from the European Union AI Act. The EU AI Act is an EU regulation governing certain uses and development of artificial intelligence.

In plain words
What is it for?
Use it to log AI operations, disclose AI interactions, record human decisions, document data governance, classify risk, and manage retention records.
Why use it?
It provides a defined way to document AI activity and human oversight when a project needs compliance records.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to log AI operations, disclose AI interactions, record human decisions, document data governance, classify risk, and manage retention records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add d-o-hub/github-template-ai-agents --skill eu-ai-act-compliance
Clone the repo
git clone --depth 1 https://github.com/d-o-hub/github-template-ai-agents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for eu-ai-act-compliance

README.md
[![agentmods](https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance/github.svg)](https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance)
Your own site
<a href="https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance"><img src="https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for eu-ai-act-compliance

Your own site · 80×15
<a href="https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance"><img src="https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/eu-ai-act-compliance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 925 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.00925
Opus 5 $0.00036 $0.00463
Sonnet 5 $0.00014 $0.00185
Haiku 4.5 $0.00007 $0.00093

Measured 11d ago against content hash 9c8b50117b2e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

eu-ai-act-compliance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (eu-ai-act-compliance.ts, tests/test_logger.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/eu-ai-act-compliance/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

EU AI Act Compliance

When to Use

  • User asks to ensure EU AI Act compliance for logging or transparency
  • Need to implement human oversight or record-keeping per Regulation (EU) 2024/1689
  • Even if they just say "add compliance logging" or "make sure this is EU AI Act compliant"

Quick Start

import { AIActLogger } from "./eu-ai-act-compliance";

const logger = new AIActLogger({
  systemId: "<PROJECT_ID>",
  providerName: "<ORG_NAME>",
  riskClassification: "limited_risk",
});

await logger.logOperation({
  operation: "ai_inference",
  inputData: { source: "user_request", hash: "sha256:abc123..." },
  outputData: { result: "example_result", confidence: 0.85 },
  humanOversight: { reviewerId: "user_123", decision: "approved", timestamp: new Date().toISOString() },
});

Core Concepts

Concept Article Description
Automatic Logging Art. 12 Record events over system lifetime
Transparency Art. 50 Disclose AI interaction to users
Human Oversight Art. 14 Enable human intervention
Data Governance Art. 10 Document training/validation data
Retention Art. 19 Keep logs minimum 6 months

Risk Classification

Limited Risk (Article 50)

Systems interacting with natural persons must:

  • Disclose AI interaction at first contact (Art. 50.1).
  • Mark synthetic content as AI-generated (Art. 50.2).

High Risk (Chapter III, Articles 8-17)

Systems in Annex III (recruitment, credit scoring, etc.) require:

  • Risk management (Art. 9) & Data governance (Art. 10).
  • Technical documentation (Art. 11) & Automatic logging (Art. 12).
  • Human oversight design (Art. 14) & CE marking (Art. 48).

Logging Requirements (Article 12)

interface AIActLogEntry {
  timestamp: string; // ISO 8601
  systemId: string;
  operation: string;
  inputData: { source: string; hash: string; description: string };
  outputData: { result: string; confidence?: number; explanation?: string };
  humanOversight?: { reviewerId: string; decision: "approved" | "rejected" | "modified"; timestamp: string };
  retentionUntil: string; // Min 6 months
}

Read the full file on GitHub · 113 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 113 lines · 72 tokens per session scan A 9c8b50117b2e

Subscribe to this mod's changes

eu-ai-act-compliance is a skill published in the GitHub repository d-o-hub/github-template-ai-agents (2 stars, last pushed yesterday), licensed MIT. It adds 72 tokens to every session and 925 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

performing-soc2-type2-audit-preparation

Automates SOC 2 Type II audit preparation including gap assessment against AICPA Trust Services Criteria (CC1-CC9), evidence collection from cloud providers and identity systems, control testing validation, remediation tracking, and continuous compliance monitoring. Covers all five TSC categories (Security…

adriannoes/awesome-agentic-ai · 112 tokens

implementing-gdpr-data-protection-controls

The General Data Protection Regulation (EU) 2016/679 (GDPR) is the EU's comprehensive data protection law governing the collection, processing, storage, and transfer of personal data. This skill cover.

adriannoes/awesome-agentic-ai · 52 tokens

akf-trust-metadata

The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing.

sickn33/agentic-awesome-skills · 60 tokens

achieving-cmmc-level-2-compliance

Prepare a defense-contractor environment for CMMC Level 2 certification: scope CUI and FCI, implement the 110 NIST SP 800-171 Rev 2 security requirements across 14 families, compute the SPRS score with the DoD Assessment Methodology, manage a compliant POA&M, and ready the organization for a C3PAO assessment. Use when…

mukul975/Anthropic-Cybersecurity-Skills · 255 tokens

omh-legal-compliance-review

This is a Hermes-native legal-compliance-review workflow skill.

rlaope/oh-my-hermes · 64 tokens

fedramp

Expert guidance for FedRAMP certification and compliance under CR26 (FedRAMP Consolidated Rules for 2026). Use this skill whenever a user asks about FedRAMP authorization, ATO (Authority to Operate), cloud security for federal government, NIST SP 800-53 controls, CSP compliance, or any of the core FedRAMP document…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 236 tokens