cratis-chronicle-compliance

cratis-chronicle-compliance is a skill for Claude Code, Codex from Cratis/AI. It costs 97 tokens per session (2,687 once invoked), scanned A, original, MIT.

A guide for marking personal data in Chronicle events and removing it later by destroying the encryption key for the person it belongs to. Chronicle is an event store, meaning it keeps a history of changes rather than replacing old records.

In plain words
What is it for?
Use it when designing events that contain personal data, handling a right-to-erasure request, or redacting stored events in Chronicle.
Why use it?
It addresses privacy requirements when personal data cannot simply be deleted from an event history. It explains how to identify the person linked to the data and carry out erasure or redaction.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when designing events that contain personal data, handling a right-to-erasure request, or redacting stored events in Chronicle.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cratis/ai/cratis-chronicle-compliance
View source ↗ Cratis/AI
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 Cratis/AI --skill cratis-chronicle-compliance
Clone the repo
git clone --depth 1 https://github.com/Cratis/AI

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 cratis-chronicle-compliance

README.md
[![agentmods](https://agentmods.dev/badge/skills/cratis/ai/cratis-chronicle-compliance/github.svg)](https://agentmods.dev/skills/cratis/ai/cratis-chronicle-compliance)
Your own site
<a href="https://agentmods.dev/skills/cratis/ai/cratis-chronicle-compliance"><img src="https://agentmods.dev/badge/skills/cratis/ai/cratis-chronicle-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 cratis-chronicle-compliance

Your own site · 80×15
<a href="https://agentmods.dev/skills/cratis/ai/cratis-chronicle-compliance"><img src="https://agentmods.dev/badge/skills/cratis/ai/cratis-chronicle-compliance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,687 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.00097 $0.02687
Opus 5 $0.00048 $0.01344
Sonnet 5 $0.00019 $0.00537
Haiku 4.5 $0.00010 $0.00269

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

Security

Grade A, and why

cratis-chronicle-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 2d ago.

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.

skills/cratis-chronicle-compliance/SKILL.md · 247 lines

How it starts

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

Chronicle compliance and personal data

Chronicle keeps events forever, so personal data cannot be deleted from the log. Chronicle protects it by encrypting each marked value under a key owned by the subject, and erases it by destroying that key. Decide the subject before you decide the event shape — the subject is what erasure operates on.

Verified product sources

This skill is verified against this exact public release:

Package Version Purpose
Cratis.Chronicle 16.45.3 Cratis.Chronicle.Compliance.GDPR, Cratis.Chronicle.SubjectAttribute, IEventSequence.Redact, IReadModels.Release
Cratis.Chronicle.CodeAnalysis 16.45.3 CHR0026, CHR0034, CHR0035, CHR0043, CHR0046

Reverify product sources before claiming support for another version.

Mark personal data with [PII]

Cratis.Chronicle.Compliance.GDPR.PIIAttribute marks a value as personal data. It targets a class, a property, or a constructor parameter, and it is not repeatable.

using Cratis.Chronicle.Compliance;
using Cratis.Chronicle.Compliance.GDPR;

[EventType]
public record <PersonEventName>(
    [property: PII] string <PersonalPropertyName>,
    <NonPersonalType> <BusinessPropertyName>);

On a positional record the attribute must be written as [property: PII] or placed on the constructor parameter; Chronicle looks for it on the property, the property's declaring type, the property's own type, and the matching primary constructor parameter.

Marking the concept type itself makes the value personal everywhere it appears, which is usually what you want for an email, a phone number, or a personal name:

[PII]
[ComplianceDetails("<why this value is collected and under what basis>")]
public record <ConceptName>(string Value) : ConceptAs<string>(Value);

PIIAttribute accepts an optional details string, but Chronicle never reads it. The rationale that actually reaches the event schema comes from Cratis.Chronicle.Compliance.ComplianceDetailsAttribute. Write [PII] for the marker and [ComplianceDetails("...")] for the reason; do not write [PII("reason")] and expect the reason to be recorded.

Read the full file on GitHub · 247 lines

Files

What ships with it

1 file 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. 2d ago First seen · 247 lines · 97 tokens per session scan A 9bf9b6c51fb8

Subscribe to this mod's changes

cratis-chronicle-compliance is a skill published in the GitHub repository Cratis/AI (2 stars, last pushed today), licensed MIT. It adds 97 tokens to every session and 2,687 once invoked, about $0.0005 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-09-06.

Related

Other skills, from other repositories

architecture-paradigm-cqrs-es

Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.

athola/claude-night-market · 39 tokens

orchardcore-dnc-registry

Skill for configuring national and local do-not-call registry checks in CrestApps Orchard Core including Azure Blob Storage for uploaded local lists. Covers import suppression, provider settings, E.164 normalization, CSV processing, registry extensions, and tenant-aware Azure storage. Use this skill when requests…

CrestApps/CrestApps.AgentSkills · 135 tokens

orchardcore-audit-trail

Skill for configuring audit trail in Orchard Core. Covers audit event recording, AuditTrailPart for content tracking, event filtering and sorting, audit settings configuration, custom audit event providers, and audit trail feature setup. Use this skill when requests mention Orchard Core Audit Trail, Configure Audit…

CrestApps/CrestApps.AgentSkills · 189 tokens

event-driven-architecture

Event-driven architecture patterns with event sourcing, CQRS, and message-driven communication. Use when designing distributed systems, microservices communication, or systems requiring eventual consistency and scalability.

NickCrew/Claude-Cortex · 39 tokens

enterprise-architecture-patterns

Complete guide for enterprise architecture patterns including domain-driven design, event sourcing, CQRS, saga patterns, API gateway, service mesh, and scalability.

manutej/luxor-claude-marketplace · 34 tokens

dotnet-analyzer-security-deps

Scan .NET projects for security vulnerabilities (OWASP Top 10), NuGet dependency health, CVE exploits, license compliance, and version conflicts using Roslyn and NuGet.org API. Use when the user asks to scan for security vulnerabilities, check for CVE, analyze dependency health, check license compliance, scan NuGet…

CartapenaBark/DotNetAnalyzer · 227 tokens