contribute-broker

contribute-broker is a skill for Claude Code, Codex from danieljustus/symaira-eraseme. It costs 0 tokens per session (1,512 once invoked), scanned A, original, Apache-2.0.

A workflow for adding a newly discovered data broker to the Symaira EraseMe registry through a pull request. A registry is a maintained list of broker details, such as its website, category, countries, and applicable privacy laws.

In plain words
What is it for?
Use it after finding an unlisted broker or new broker details during research, browsing, or a user’s privacy request.
Why use it?
It provides a consistent way to check whether a broker is already listed and document missing or changed opt-out information. This keeps future removal workflows up to date.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions Claude Code; built for openclaw.

Good fit Use it after finding an unlisted broker or new broker details during research, browsing, or a user’s privacy request.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/danieljustus/symaira-eraseme/contribute-broker
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 danieljustus/symaira-eraseme --skill contribute-broker
Clone the repo
git clone --depth 1 https://github.com/danieljustus/symaira-eraseme

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 contribute-broker

README.md
[![agentmods](https://agentmods.dev/badge/skills/danieljustus/symaira-eraseme/contribute-broker/github.svg)](https://agentmods.dev/skills/danieljustus/symaira-eraseme/contribute-broker)
Your own site
<a href="https://agentmods.dev/skills/danieljustus/symaira-eraseme/contribute-broker"><img src="https://agentmods.dev/badge/skills/danieljustus/symaira-eraseme/contribute-broker/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 contribute-broker

Your own site · 80×15
<a href="https://agentmods.dev/skills/danieljustus/symaira-eraseme/contribute-broker"><img src="https://agentmods.dev/badge/skills/danieljustus/symaira-eraseme/contribute-broker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,512 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.01512
Opus 5 $0.00000 $0.00756
Sonnet 5 $0.00000 $0.00302
Haiku 4.5 $0.00000 $0.00151

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

Security

Grade A, and why

contribute-broker scanned grade A with 1 finding 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://datamax.example.com/privacy" | grep -i "opt.out\|delete\|remove"
skills/contribute-broker/SKILL.md · 231 lines

How it starts

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

Contribute Broker to Symaira EraseMe Registry

Skill for AI agents (Claude Code, OpenClaw, Cursor, etc.)

When you discover a data broker that is not in the Symaira EraseMe registry, use this workflow to contribute it back via a Pull Request.

When to use this skill

Use this skill when:

  • You discover a new data broker during research or web browsing
  • A user mentions a broker that does not exist in the registry
  • You find updated information about an existing broker (new opt-out URL, changed email, etc.)
  • The user explicitly asks you to add or update a broker entry

Workflow

1. Check if broker already exists

# Search by name
grep -ri "<broker_name>" registry/brokers/

# Or use the broker ID pattern
ls registry/brokers/us/ | grep -i "<partial_name>"

If the broker exists, skip to step 5 (Update existing).

2. Gather broker information

Collect the following REQUIRED fields:

  • Name: Legal company name
  • Website: Homepage URL (with https://)
  • Category: One of: people-search, marketing, credit, analytics, background-check, social-media, other
  • Jurisdictions: ISO country codes (e.g., US, DE, EU)
  • Laws: Applicable privacy laws (GDPR, CCPA, CPRA, LGPD, PIPEDA)
  • Opt-out method: Email address or web form URL
  • Source: Which registry/website verified this information

3. Create the YAML file

Create a new file at registry/brokers/<jurisdiction>/<broker-id>.yaml:

id: <broker-id>
name: <Full Legal Name>
website: https://<website>
category: <category>
jurisdictions:
  - <country_code>
laws:
  - <law>
data_sensitivity: 3
priority: medium
added_date: '<YYYY-MM-DD>'
status: active
source: '<Where you found this broker>'

opt_out:
  - type: email
    endpoint: <[email protected]>
    template: <ccpa-deletion|gdpr-art17>
    locale: <en|de|...>
    required_fields:
      - full_name
      - email
    supports_suppression: true
    expected_response_days: <45|30>

verification:
  ack_keywords:
    - received
    - request
  rejection_keywords:
    - cannot
    - denied
  human_required_keywords:
    - verify
    - identification

Read the full file on GitHub · 231 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. 7d ago Changed · -3 lines a1ae8e2e4fd5
  2. 11d ago First seen · 234 lines · 0 tokens per session scan A 68dd83646c12

Subscribe to this mod's changes

contribute-broker is a skill published in the GitHub repository danieljustus/symaira-eraseme (6 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,512 tokens. A static security scan graded it A with 1 finding (makes network calls). 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

privacy-compliance

Use this skill when implementing GDPR or CCPA compliance, designing consent management, conducting DPIAs, or managing data processing agreements. Triggers on GDPR, CCPA, data privacy, consent management, DPIA, data subject rights, privacy policy, cookie consent, and any task requiring privacy regulation compliance or…

ThomasMoreAI/legal-skills-open · 68 tokens

regulatory-compliance-oimiragieo

Validate systems and processes against GDPR/CCPA privacy regulations, privacy-by-design principles, ADA/WCAG accessibility standards, data processing agreements (DPAs), and provide compliance checklists with regulatory change monitoring guidance.

ThomasMoreAI/legal-skills-open · 52 tokens

compliance-testing

Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, PCI-DSS and industry-specific regulations. Use when ensuring legal compliance, preparing for audits, or handling sensitive data.

summarybotng/summarybot-ng · 43 tokens

privacy-compliance

Comprehensive global privacy compliance agent skill covering GDPR, CCPA/CPRA, HIPAA Privacy Rule, EU AI Act, LGPD, cross-border data transfer mechanisms (SCCs, BCRs, EU-US DPF), PII identification and classification, data minimization, consent management, privacy-by-design patterns, DPIA workflows, data subject access…

JPeetz/agent-skills · 132 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

tt-sidebar

Open a live Token Tracker sidebar for only the current Codex session in a right-side terminal split at one-third width. Use when the user explicitly invokes $tt-sidebar or asks to monitor the current Codex session beside its terminal pane.

stormzhang/token-tracker · 50 tokens