agentsclimarketplace

Contribute broker

Skill danieljustus/symaira-eraseme/skills/contribute-broker

Automated data broker removal tool ⌫ close your accounts, erase your data.

Install
npx -y skills add danieljustus/symaira-eraseme --skill contribute-broker

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.7 KB, as published. Nobody here has run it

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

4. Validate the file

# Install dependencies if needed
pip install pyyaml jsonschema

# Validate
python scripts/registry_sync.py --validate-all

5. Create a Pull Request

# Create a feature branch
git checkout -b add-broker-<broker-id>

# Stage and commit
git add registry/brokers/<jurisdiction>/<broker-id>.yaml
git commit -m "registry: add <Broker Name> data broker

- Source: <where you found it>
- Jurisdiction: <country>
- Opt-out: <email|web_form>"

# Push and create PR
git push -u origin add-broker-<broker-id>
gh pr create --fill --title "registry: add <Broker Name>" --body "..."

6. Update existing broker (if information changed)

If the broker exists but information is outdated:

# Edit the existing file
# Update only the changed fields
# Add a note about what changed

# Validate
python scripts/registry_sync.py --validate-all

# Commit with descriptive message
git add registry/brokers/<jurisdiction>/<existing-id>.yaml
git commit -m "registry: update <Broker Name> opt-out email

Old: [email protected]
New: [email protected]
Source: <where you verified this>"

Important rules

  1. Never fabricate data: Only add brokers you have verified from a reliable source
  2. Always include source: The source field must reference where you found the broker
  3. Validate before PR: Run --validate-all to ensure schema compliance
  4. One broker per PR: Keep PRs focused on a single broker addition or update
  5. Respect existing format: Match the style of existing broker YAML files
  6. Privacy first: Never include personal data in broker definitions

Example: Adding a new broker

# User mentions: "I found this broker called DataMax LLC"
# 1. Check if it exists
grep -ri "datamax" registry/brokers/
# Result: Not found

# 2. Research
curl -s "https://datamax.example.com/privacy" | grep -i "opt.out\|delete\|remove"
# Found: [email protected]

# 3. Create YAML
cat > registry/brokers/us/datamax-us.yaml << 'EOF'
id: datamax-us
name: DataMax LLC
website: https://www.datamax.example.com
category: marketing
jurisdictions:
  - US
laws:
  - CCPA
data_sensitivity: 3
priority: medium
added_date: '2025-05-21'
status: active
source: 'Company privacy page'

opt_out:
  - type: email
    endpoint: [email protected]
    template: ccpa-deletion
    locale: en
    required_fields:
      - full_name
      - email
    supports_suppression: true
    expected_response_days: 45

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

# 4. Validate
python scripts/registry_sync.py --validate-all

# 5. Create PR
git checkout -b add-broker-datamax
git add registry/brokers/us/datamax-us.yaml
git commit -m "registry: add DataMax LLC data broker"
git push -u origin add-broker-datamax
gh pr create --fill

Quick reference: Broker categories

CategoryDescription
people-searchSites that aggregate personal info (Spokeo, Whitepages)
marketingEmail/phone list brokers, ad tech
creditCredit bureaus, financial data
analyticsData analytics, market research
background-checkEmployment/criminal background checks
social-mediaSocial media platforms
otherEverything else

Quick reference: Jurisdiction codes

CodeRegion
USUnited States
DEGermany
EUEuropean Union
UKUnited Kingdom
CACanada
BRBrazil

Quick reference: Laws

LawRegion
GDPREU/EEA
CCPACalifornia
CPRACalifornia (updated)
LGPDBrazil
PIPEDACanada

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.