[PR #139] [MERGED] feat: add EU AI Act compliance starter collection #139

Closed
opened 2026-08-22 07:31:55 +02:00 by zaph0d · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/niels-emmer/myace/pull/139
Author: @niels-emmer
Created: 8/21/2026
Status: Merged
Merged: 8/21/2026
Merged by: @niels-emmer

Base: mainHead: feat/eu-ai-act-compliance-collection


📝 Commits (1)

  • b89db9b feat: add EU AI Act compliance starter collection

📊 Changes

11 files changed (+458 additions, -8 deletions)

View changed files

📝 README.md (+9 -8)
📝 backend/app/services/seed_collections.py (+10 -0)
collections/additional/eu-ai-act/AGENTS.md (+62 -0)
collections/additional/eu-ai-act/agents/eu-ai-act-classifier.md (+26 -0)
collections/additional/eu-ai-act/agents/eu-ai-act-compliance-reviewer.md (+27 -0)
collections/additional/eu-ai-act/agents/eu-ai-act-documentation-writer.md (+26 -0)
collections/additional/eu-ai-act/skills/eu-ai-act-documentation/SKILL.md (+53 -0)
collections/additional/eu-ai-act/skills/eu-ai-act-gpai/SKILL.md (+55 -0)
collections/additional/eu-ai-act/skills/eu-ai-act-high-risk-obligations/SKILL.md (+73 -0)
collections/additional/eu-ai-act/skills/eu-ai-act-risk-classification/SKILL.md (+66 -0)
collections/additional/eu-ai-act/skills/eu-ai-act-transparency/SKILL.md (+51 -0)

📄 Description

Summary

Adds a new additional starter collection (eu-ai-act) that helps AI coding agents build systems compliant with the EU AI Act (Regulation (EU) 2024/1689), as in force in 2026. It covers risk-tier classification, high-risk/transparency/GPAI obligation reviews, and compliance documentation drafts.

15 artifacts: 7 rules (AGENTS.md), 3 agents, 5 skills — all namespaced eu-ai-act-* to avoid collisions with the auditor and ai-engineering sibling collections (AGENTS.md rule 29).

Type of change

  • feat (new feature)

What's included

  • collections/additional/eu-ai-act/ — the collection content
    • Agents: eu-ai-act-classifier, eu-ai-act-compliance-reviewer, eu-ai-act-documentation-writer
    • Skills: risk-classification, high-risk-obligations, transparency, gpai, documentation
    • Rules: 7 collection-level rules in AGENTS.md
  • backend/app/services/seed_collections.py — registered in STARTER_COLLECTIONS (category "Governance & Security")
  • README.md — updated collection/artifact counts (20 collections, 225 artifacts)

Testing

  • Backend suite: 351 passed (incl. test_seed_collections.py — seeds, idempotency, JSON-column validity)
  • Both backend and CLI scanners parse the collection identically (15 artifacts)
  • No name collisions across all collections
  • ruff clean on the changed Python file

Checklist

  • Self-review completed
  • No new warnings
  • Tests pass
  • Documentation updated (README counts)
  • Breaking changes called out in commit footer (none)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/niels-emmer/myace/pull/139 **Author:** [@niels-emmer](https://github.com/niels-emmer) **Created:** 8/21/2026 **Status:** ✅ Merged **Merged:** 8/21/2026 **Merged by:** [@niels-emmer](https://github.com/niels-emmer) **Base:** `main` ← **Head:** `feat/eu-ai-act-compliance-collection` --- ### 📝 Commits (1) - [`b89db9b`](https://github.com/niels-emmer/myace/commit/b89db9b542aa631b5449f02745bef958a79e1b5d) feat: add EU AI Act compliance starter collection ### 📊 Changes **11 files changed** (+458 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+9 -8) 📝 `backend/app/services/seed_collections.py` (+10 -0) ➕ `collections/additional/eu-ai-act/AGENTS.md` (+62 -0) ➕ `collections/additional/eu-ai-act/agents/eu-ai-act-classifier.md` (+26 -0) ➕ `collections/additional/eu-ai-act/agents/eu-ai-act-compliance-reviewer.md` (+27 -0) ➕ `collections/additional/eu-ai-act/agents/eu-ai-act-documentation-writer.md` (+26 -0) ➕ `collections/additional/eu-ai-act/skills/eu-ai-act-documentation/SKILL.md` (+53 -0) ➕ `collections/additional/eu-ai-act/skills/eu-ai-act-gpai/SKILL.md` (+55 -0) ➕ `collections/additional/eu-ai-act/skills/eu-ai-act-high-risk-obligations/SKILL.md` (+73 -0) ➕ `collections/additional/eu-ai-act/skills/eu-ai-act-risk-classification/SKILL.md` (+66 -0) ➕ `collections/additional/eu-ai-act/skills/eu-ai-act-transparency/SKILL.md` (+51 -0) </details> ### 📄 Description ## Summary Adds a new **additional** starter collection (`eu-ai-act`) that helps AI coding agents build systems compliant with the EU AI Act (Regulation (EU) 2024/1689), as in force in 2026. It covers risk-tier classification, high-risk/transparency/GPAI obligation reviews, and compliance documentation drafts. 15 artifacts: 7 rules (`AGENTS.md`), 3 agents, 5 skills — all namespaced `eu-ai-act-*` to avoid collisions with the `auditor` and `ai-engineering` sibling collections (AGENTS.md rule 29). ## Type of change - [x] feat (new feature) ## What's included - `collections/additional/eu-ai-act/` — the collection content - **Agents**: `eu-ai-act-classifier`, `eu-ai-act-compliance-reviewer`, `eu-ai-act-documentation-writer` - **Skills**: `risk-classification`, `high-risk-obligations`, `transparency`, `gpai`, `documentation` - **Rules**: 7 collection-level rules in `AGENTS.md` - `backend/app/services/seed_collections.py` — registered in `STARTER_COLLECTIONS` (category "Governance & Security") - `README.md` — updated collection/artifact counts (20 collections, 225 artifacts) ## Testing - Backend suite: 351 passed (incl. `test_seed_collections.py` — seeds, idempotency, JSON-column validity) - Both backend and CLI scanners parse the collection identically (15 artifacts) - No name collisions across all collections - `ruff` clean on the changed Python file ## Checklist - [x] Self-review completed - [x] No new warnings - [x] Tests pass - [x] Documentation updated (README counts) - [x] Breaking changes called out in commit footer (none) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
zaph0d 2026-08-22 07:31:55 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
github-mirrors/myace#139
No description provided.