Compliance Check logo

Compliance Check

Community
686f6c61
compliance-check

Usar para verificar cumplimiento RGPD, NIS2 y CRA. También: verificar RGPD, cumplimiento normativo, NIS2, CRA, Cyber Resilience Act, protección de datos, regulación europea.

Overview

Publisher686f6c61
Repositoryalfred-dev
Skill namecompliance-check
Stars
115
Forks
7
Bundled files
Instructions only
LicenseMIT
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.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

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

Installation

Install the Compliance Check 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/686f6c61/alfred-dev.git /tmp/alfred-dev
mkdir -p .claude/skills
cp -r /tmp/alfred-dev/skills/compliance-check .claude/skills/compliance-check
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Compliance Check 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 Compliance Check 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 Compliance Check 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.

Verificación de cumplimiento normativo

Resumen

Este skill evalúa el proyecto contra tres marcos regulatorios europeos fundamentales: RGPD (protección de datos), NIS2 (ciberseguridad de infraestructuras) y CRA (Cyber Resilience Act, seguridad de productos con elementos digitales). El resultado es un informe de conformidad con el estado actual del proyecto frente a cada requisito y las acciones necesarias para alcanzar el cumplimiento.

No se trata de un dictamen jurídico, sino de una evaluación técnica que identifica las lagunas y orienta las acciones de desarrollo necesarias.

Proceso

  1. Determinar qué normativas aplican. No todos los proyectos están sujetos a las tres:

    • RGPD: aplica si el software trata datos personales de personas en la UE.
    • NIS2: aplica si la organización opera en sectores críticos o es proveedor de servicios digitales.
    • CRA: aplica a productos con elementos digitales comercializados en la UE (incluyendo software open source con uso comercial).
  2. Checklist RGPD:

    • Base jurídica para el tratamiento de datos (consentimiento, interés legítimo, contrato, etc.).
    • Minimización de datos: solo se recogen los datos estrictamente necesarios.
    • Evaluación de impacto (DPIA) para tratamientos de alto riesgo.
    • Registro de actividades de tratamiento documentado.
    • Derecho de acceso: el usuario puede consultar sus datos.
    • Derecho de rectificación: el usuario puede corregir sus datos.
    • Derecho al olvido: el usuario puede solicitar la eliminación de sus datos.
    • Portabilidad: el usuario puede exportar sus datos en formato estándar.
    • Notificación de brechas en 72 horas.
    • Cifrado de datos personales en tránsito y en reposo.
    • Delegado de Protección de Datos (DPO) designado si aplica.
  3. Checklist NIS2:

    • Gestión de riesgos de ciberseguridad documentada.
    • Política de seguridad de la información aprobada por la dirección.
    • Notificación de incidentes: alerta temprana en 24h, informe completo en 72h.
    • Seguridad de la cadena de suministro: evaluación de proveedores.
    • Gobernanza: responsabilidades de ciberseguridad asignadas.
    • Plan de continuidad de negocio y recuperación ante desastres.
    • Formación en ciberseguridad para el personal.
    • Gestión de vulnerabilidades y actualizaciones.
    • Autenticación multifactor para accesos críticos.
  4. Checklist CRA (Cyber Resilience Act):

    • SBOM (Software Bill of Materials) generado y mantenido.
    • Actualizaciones de seguridad disponibles durante todo el ciclo de vida.
    • Diseño seguro por defecto (secure by default).
    • Documentación técnica del producto disponible.
    • Gestión de vulnerabilidades con proceso de reporte.
    • Notificación de vulnerabilidades activamente explotadas en 24h a ENISA.
    • Evaluación de conformidad (autoevaluación o certificación según categoría).
    • Marcado CE para productos conformes.
  5. Escribir el registro vivo. No dejes el resultado solo en el chat. El destino canónico es docs/project/compliance.md. Si no existe, créalo antes con python3 .claude/alfred-continuity.py sync-project-docs "$PWD". Usa templates/compliance.md como forma. Para cada control: estado, evidencia (ruta de código, test o config) y acciones. Sin evidencia no marques cumple. Sustituye <!-- alfred-doc:scaffold --> por <!-- alfred-doc:filled -->.

Criterios de éxito

  • Se han identificado las normativas aplicables al proyecto.
  • Cada checklist se ha revisado punto por punto con estado documentado.
  • Las acciones necesarias están priorizadas por riesgo e impacto.
  • El informe es accionable: un desarrollador puede tomar cada acción y ejecutarla.
  • El registro vive en docs/project/compliance.md con marcador filled.
  • El estado de cumplimiento se ha registrado en la memoria del proyecto.

Paso final: registro en memoria

Registrar el estado de cumplimiento en la memoria del proyecto con memory_log_decision para seguimiento entre sesiones. Esto permite comparar la evolución del cumplimiento a lo largo del tiempo y detectar regresiones normativas.

Nota de versión

Este skill se basa en RGPD (Reglamento 2016/679), NIS2 (Directiva 2022/2555) y CRA (Reglamento 2024/2847). Verificar si han entrado en vigor actualizaciones posteriores a estas referencias antes de dar por válida la evaluación.

Qué NO hacer

  • No tratar esta evaluación como sustituto de asesoría legal. Es una evaluación técnica que identifica lagunas, pero las decisiones jurídicas requieren un profesional cualificado.
  • No marcar un requisito como cumplido sin evidencia técnica que lo respalde (código, configuración, documentación verificable).
  • No ignorar el CRA por tratarse de software open source. El CRA aplica a OSS con uso comercial; la exención solo cubre al software libre sin ánimo de lucro ni actividad comercial.
  • No dar por cerrada la evaluación sin documentar los requisitos que no aplican y la justificación de por qué no aplican.

Frequently asked questions

What does the Compliance Check AI skill do?

Usar para verificar cumplimiento RGPD, NIS2 y CRA. También: verificar RGPD, cumplimiento normativo, NIS2, CRA, Cyber Resilience Act, protección de datos, regulación europea.

Why use Compliance Check on TypingMind?

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

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/686f6c61/alfred-dev/tree/main/skills/compliance-check. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Compliance Check?

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 Compliance Check?

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

Is the Compliance Check AI skill free?

Yes. It is published on GitHub by 686f6c61 under the MIT 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 👇