collibra-atlas: Skill for Claude Code

.agents/skills/skill-compliance/SKILL.md

skill-compliance is a skill for Claude Code from sagar-shirwalkar/collibra-atlas. It costs 62 tokens per session (992 once invoked), scanned A, original, Apache-2.0.

A set of scripted checks for reviewing whether a project's coding-agent skills meet defined requirements.

In plain words
What is it for?
Use it to run every compliance check, run one named check, or automatically fix a failing check.
Why use it?
It replaces a manual, inconsistent review with repeatable pass-or-fail checks and keeps track of results that may become outdated.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is sagar-shirwalkar/collibra-atlas's own configuration. It tells Claude Code how to work on collibra-atlas itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything collibra-atlas configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sagar-shirwalkar/collibra-atlas. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sagar-shirwalkar/collibra-atlas/main/.agents/skills/skill-compliance/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sagar-shirwalkar/collibra-atlas

Made for: Claude Code.

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 skill-compliance

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/sagar-shirwalkar/collibra-atlas/skill-compliance"><img src="https://agentmods.dev/badge/skills/sagar-shirwalkar/collibra-atlas/skill-compliance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 992 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.00062 $0.00992
Opus 5 $0.00031 $0.00496
Sonnet 5 $0.00012 $0.00198
Haiku 4.5 $0.00006 $0.00099

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

Security

Grade A, and why

skill-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 6 executable files (scripts/check_completion_criteria.py, scripts/check_description.py, scripts/check_handoff_compliance.py, …), 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/skill-compliance/SKILL.md · 96 lines

How it starts

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

Audit the project's skills against a set of compliance checks. Each check is a standalone Python script in scripts/ that follows a plugin pattern.

Leading words

  • Audit — A scripted compliance check with a binary outcome (pass/fail) and evidence. Each audit is independent, composable, and cacheable.
  • Plugin — A script in scripts/ that can be dropped in or removed without changing anything else. Adding a new check means adding one file and one entry in references/checks.md.
  • Staleness — The risk that cached results no longer reflect reality. Managed by per-check TTLs and the agent always printing results after running.

Branches

audit-all

Run every check in order, reading from cache for non-stale checks.

Completion criterion: every check has a pass/fail result and the summary has been printed to chat.

  1. Resolve paths. Determine the skills directory (.agents/skills/), the cache file (assets/cache.json), and the project root.

  2. Read cache. Load assets/cache.json. If it doesn't exist or is empty, start fresh.

  3. Determine stale checks. For each check in the registry (references/checks.md), compare the cached timestamp against the check's TTL. A check is stale if:

    • It has no cache entry, OR
    • now - cached_timestamp > ttl
  4. Run stale checks. For each stale check, execute its script:

    python scripts/check_<name>.py \
        --skills-dir <path> \
        --cache <cache_path> \
        --update-cache
    

    The script writes its result into the cache and returns JSON to stdout.

  5. Print summary. After all checks complete, print a concise summary to the chat with one line per check:

    ✓ handoff-compliance   — agent-handoff exists, AGENTS.md has protocol + compaction
    ✗ structure            — untracked skill: skill-compliance not in AGENTS.md catalog
    ✓ invocation           — all frontmatter/AGENTS.md consistent
    ...
    

    Lead with failures (✗) so the user sees problems first.

  6. Offer to fix. For any failing check, ask if the user wants automatic remediation before ending.

Read the full file on GitHub · 96 lines

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 · 96 lines · 62 tokens per session scan A f424a16cb9cc

Subscribe to this mod's changes

skill-compliance is a skill published in the GitHub repository sagar-shirwalkar/collibra-atlas (0 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 62 tokens to every session and 992 once invoked, about $0.0003 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.